/* ═══════════════════════════════════════════════
   CAFÉ 7 — La Laguna
   Paleta tomada del logo: blanco, teja, naranja, oliva
   ═══════════════════════════════════════════════ */

:root{
  /* superficies */
  --paper:   #ffffff;   /* el blanco del logo */
  --sand:    #f6f1e8;
  --sand-2:  #ece4d6;
  --line:    rgba(26,21,18,.14);

  /* tinta */
  --ink:     #1a1512;
  --ink-2:   #5f554c;

  /* marca */
  --red:     #a32117;
  --red-d:   #7d1810;
  --orange:  #ee7a21;
  --olive:   #807f56;
  --olive-d: #6a6947;
  --green:   #5f8f3c;

  --ff-display:'Anton', 'Impact', sans-serif;
  --ff-body:'Space Grotesk', system-ui, -apple-system, sans-serif;
  --ff-hand:'Caveat', cursive;

  --wrap: 1200px;
  --pad: clamp(1.1rem, 4vw, 3rem);
  --r: 4px;
}

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

html{
  scroll-behavior:smooth; scroll-padding-top:80px;
  overflow-x:hidden; overflow-x:clip;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--ff-body);
  font-size:clamp(1rem, .96rem + .25vw, 1.125rem);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden; overflow-x:clip;
}

img,video{ max-width:100%; display:block; }
a{ color:inherit; }
::selection{ background:var(--orange); color:var(--ink); }

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

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--orange); color:var(--ink); padding:.75rem 1.25rem; font-weight:700;
}
.skip:focus{ left:0; }

/* Grano de papel */
.grain{
  position:fixed; inset:-50%; z-index:9999; pointer-events:none;
  opacity:.07; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='.5'/></svg>");
  animation:grain 8s steps(6) infinite;
}
@keyframes grain{
  0%,100%{ transform:translate(0,0) }
  10%{ transform:translate(-4%,-4%) }
  30%{ transform:translate(3%,-2%) }
  50%{ transform:translate(-2%,3%) }
  70%{ transform:translate(4%,2%) }
  90%{ transform:translate(-3%,1%) }
}

/* ── Iconos SVG ─────────────────────────────── */
.sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.ico{ width:1.1em; height:1.1em; flex:none; fill:currentColor; vertical-align:-.18em; }
.ico--lg{ width:1.7rem; height:1.7rem; }
.ico--xl{ width:2.1rem; height:2.1rem; }

/* ── Tipografía compartida ──────────────────── */
.h2{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(2.6rem, 8vw, 5.2rem);
  line-height:.94; letter-spacing:-.01em; text-transform:uppercase;
  color:var(--ink); margin:.2em 0 .5em; padding-top:.1em;
}
.h2--big{ font-size:clamp(3rem, 9.5vw, 6.4rem); }
.h3{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(1.8rem, 4.5vw, 3rem); line-height:.98; margin:0 0 .6rem;
}
.outline, .outline-light{ -webkit-text-stroke:2px var(--red); color:transparent; }
.outline-light{ -webkit-text-stroke-color:var(--orange); }

.eyebrow{
  font-size:.78rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--red); margin:0;
}
.eyebrow--light{ color:var(--orange); }

.lead{ font-size:clamp(1.05rem, .95rem + .45vw, 1.3rem); line-height:1.55; }
.lead--light{ color:var(--ink-2); }
.small{ font-size:.85rem; color:var(--ink-2); }
.small--light{ font-size:.85rem; color:var(--ink-2); }

.scribble{
  font-family:var(--ff-hand); font-size:clamp(1.4rem, 3vw, 1.9rem);
  color:var(--red); transform:rotate(-1.6deg); margin-top:1.6rem;
}

.btn{
  display:inline-block; font-weight:700; font-size:.95rem;
  letter-spacing:.04em; text-transform:uppercase; text-decoration:none;
  padding:.9rem 1.5rem; border-radius:var(--r);
  border:2px solid currentColor;
  transition:transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn--fill{
  background:var(--red); border-color:var(--red); color:var(--paper);
  box-shadow:5px 5px 0 var(--ink);
}
.btn--fill:hover{
  background:var(--orange); border-color:var(--orange); color:var(--ink);
  transform:translate(-2px,-2px); box-shadow:7px 7px 0 var(--ink);
}
.btn--ghost{ color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--paper); }

a:focus-visible, button:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }

/* ── Separador de secciones ─────────────────── */
.rule{
  height:9px; width:100%;
  background:linear-gradient(90deg,
    var(--red) 0 42%, var(--orange) 42% 71%, var(--olive) 71% 100%);
}

/* ── NAV ────────────────────────────────────── */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.7rem var(--pad);
  transition:background .3s ease, box-shadow .3s ease;
}
.nav.is-stuck{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 var(--line);
}
.nav__brand{
  position:relative; z-index:3;
  display:flex; align-items:center; gap:.6rem;
  font-family:var(--ff-display); font-size:1.35rem; letter-spacing:.02em;
  text-transform:uppercase; text-decoration:none; color:var(--ink);
}
.nav__brand img{ width:40px; height:auto; }
.nav__links{ display:flex; align-items:center; gap:1.6rem; }
.nav__links a{
  text-decoration:none; font-size:.9rem; font-weight:500; letter-spacing:.06em;
  text-transform:uppercase; color:var(--ink); opacity:.8; position:relative; padding:.2rem 0;
}
.nav__links a::after{
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background:var(--orange); transition:width .25s ease;
}
.nav__links a:hover{ opacity:1; }
.nav__links a:hover::after{ width:100%; }
.nav__links a.is-hot{ color:var(--red); opacity:1; font-weight:700; }
.nav__ig{
  border:2px solid var(--red); border-radius:var(--r);
  padding:.4rem .8rem !important; color:var(--red) !important; opacity:1 !important;
}
.nav__ig::after{ display:none; }
.nav__ig:hover{ background:var(--red); color:var(--paper) !important; }

.nav__burger{
  position:relative; z-index:3;
  display:none; flex-direction:column; gap:5px;
  background:none; border:0; cursor:pointer; padding:.5rem;
}
.nav__burger span{
  display:block; width:26px; height:2px; background:var(--ink);
  transition:transform .25s, opacity .25s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:960px){
  .nav__burger{ display:flex; }
  .nav__links{
    position:fixed; inset:0 0 auto; top:0; z-index:1;
    padding:6rem var(--pad) 2.5rem;
    flex-direction:column; align-items:flex-start; gap:1.4rem;
    background:var(--paper); border-bottom:3px solid var(--red);
    transform:translateY(-102%); transition:transform .35s cubic-bezier(.6,0,.2,1);
  }
  .nav__links.is-open{ transform:translateY(0); }
  .nav__links a{ font-size:1.5rem; font-family:var(--ff-display); }
}

/* ── HERO ───────────────────────────────────── */
.hero{
  position:relative; overflow:hidden;
  padding:clamp(6rem,10vw,7.5rem) 0 clamp(2.5rem,5vw,3.5rem);
  background:
    radial-gradient(70% 55% at 88% 18%, rgba(238,122,33,.12), transparent 62%),
    radial-gradient(60% 50% at 4% 88%, rgba(128,127,86,.12), transparent 60%),
    var(--paper);
}
.hero__grid{
  display:grid; grid-template-columns:1.06fr .94fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:center;
}

.hero__kicker{
  display:flex; flex-wrap:wrap; align-items:center; gap:.7rem;
  font-size:.75rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase;
  color:var(--ink-2); margin:0 0 1.5rem;
}
.hero__kicker .dot{ color:var(--orange); }

.hero__title{
  font-family:var(--ff-display); font-weight:400; margin:0;
  text-transform:uppercase; letter-spacing:-.015em;
  font-size:clamp(2.9rem, 6.4vw, 5.4rem);
  line-height:1.02;                /* deja aire para la tilde de CAFÉ */
  white-space:nowrap;
}
.hero__title .l1{ color:var(--ink); }
.hero__title .l2{
  color:transparent;
  -webkit-text-stroke:clamp(1.5px,.22vw,3px) var(--red);
}
.hero__sub{
  max-width:44ch; margin:1.2rem 0 1.6rem;
  font-size:clamp(1.05rem, .95rem + .5vw, 1.3rem); line-height:1.5;
  color:var(--ink-2);
}
.hero__sub b{ color:var(--red); }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.9rem; }

.hero__badges{
  list-style:none; margin:1.4rem 0 0; padding:0;
  display:flex; flex-wrap:wrap; gap:.5rem .6rem;
}
.hero__badges li{
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.82rem; font-weight:500; color:var(--ink);
  border:1px solid var(--line); border-radius:100px;
  padding:.35rem .85rem; background:var(--sand);
}
.hero__badges .ico{ width:.95rem; height:.95rem; color:var(--red); }

/* Tarjeta de vídeo del hero */
.hero__figwrap{ position:relative; width:100%; max-width:430px; justify-self:end; }
.hero__media{
  position:relative; margin:0;
  border:3px solid var(--ink); border-radius:var(--r);
  box-shadow:14px 14px 0 var(--red);
  overflow:hidden; background:var(--ink);
  transform:rotate(-1.2deg);
}
.hero__media video{
  width:100%; aspect-ratio:3/4; object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}
.hero__media figcaption{
  position:absolute; left:.8rem; bottom:.8rem;
  background:var(--paper); color:var(--ink);
  font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:.35rem .7rem; border-radius:2px;
}
.hero__sticker{
  position:absolute; right:-1.4rem; top:-1.4rem; z-index:2;
  width:clamp(5rem,9vw,6.6rem); aspect-ratio:1; border-radius:50%;
  display:grid; place-items:center; text-align:center;
  background:var(--orange); color:var(--ink);
  border:3px solid var(--ink);
  font-family:var(--ff-display); font-size:.72rem; letter-spacing:.06em;
  text-transform:uppercase; line-height:1.15; padding:.4rem;
  transform:rotate(9deg);
}

/* ── BARRA DE HORARIO ───────────────────────── */
.hours-bar{
  background:var(--sand);
  border-block:1px solid var(--line);
  padding:1.15rem 0;
}
.hours-bar__in{
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:1.2rem 2rem;
}
.hours-bar__today{ display:flex; align-items:center; gap:.85rem; margin:0; }
.hours-bar__today .ico{ color:var(--red); }
.hours-bar__state{
  display:block; font-size:.68rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:var(--ink-2);
}
.hours-bar__state.is-open{ color:var(--green); }
.hours-bar__state.is-closed{ color:var(--red); }
.hours-bar__state.is-open::before,
.hours-bar__state.is-closed::before{
  content:''; display:inline-block; width:.5rem; height:.5rem; border-radius:50%;
  background:currentColor; margin-right:.45rem; vertical-align:.05em;
}
.hours-bar__today b{
  display:block; font-size:1.15rem; line-height:1.25; margin-top:.15rem;
  font-variant-numeric:tabular-nums; color:var(--ink);
}

.hours-bar__week{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:.35rem; }
.hours-bar__week li{
  display:flex; align-items:baseline; gap:.45rem;
  border:1px solid var(--line); border-radius:var(--r);
  padding:.3rem .6rem; background:var(--paper);
  font-size:.78rem; color:var(--ink-2); font-variant-numeric:tabular-nums;
}
.hours-bar__week li span{
  font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:.68rem;
}
.hours-bar__week li.is-today{
  border-color:var(--red); color:var(--red); background:rgba(163,33,23,.06);
}

/* ── LA CASA ────────────────────────────────── */
.casa{
  background:var(--paper);
  padding:clamp(4.5rem,10vw,8rem) 0 clamp(4rem,9vw,7rem);
}
.casa__grid{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:center;
}
.casa__text p{ max-width:52ch; color:var(--ink-2); }
.casa__text .lead{ color:var(--ink); }
.casa__text b{ color:var(--ink); }
.casa__photo{ margin:0; }
.casa__photo img{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--r);
  border:3px solid var(--ink); box-shadow:14px 14px 0 var(--olive);
  transform:rotate(1.4deg);
}
.casa__photo figcaption{
  font-family:var(--ff-hand); font-size:1.25rem; color:var(--red);
  margin-top:1.6rem; transform:rotate(-1deg);
}

.cards{
  list-style:none; margin:clamp(3.5rem,8vw,6rem) 0 0; padding:0;
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem;
}
.card{
  padding:2rem 1.7rem 2.2rem; border-radius:var(--r); border:3px solid var(--ink);
  color:var(--paper); box-shadow:8px 8px 0 var(--ink);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translate(-3px,-3px); box-shadow:11px 11px 0 var(--ink); }
.card--red{ background:var(--red); }
.card--olive{ background:var(--olive); }
.card--orange{ background:var(--orange); color:var(--ink); }
.card .ico--xl{ margin-bottom:.7rem; }
.card h3{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:1.6rem; line-height:1; margin:0 0 .7rem;
}
.card p{ margin:0; font-size:.98rem; line-height:1.55; }
.card__link{
  display:inline-block; margin-top:1.1rem;
  font-size:.82rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  text-decoration:none; border-bottom:2px solid currentColor; padding-bottom:.15rem;
}
.card__link:hover{ opacity:.75; }

/* ── EVENTOS ────────────────────────────────── */
.eventos{
  background:var(--sand);
  padding:clamp(4.5rem,10vw,8rem) 0 clamp(4rem,9vw,7rem);
}
.eventos__top{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,5vw,4rem); align-items:center;
  margin-bottom:clamp(3.5rem,8vw,6rem);
}
.eventos__intro .lead{ max-width:52ch; }

.sala-note{
  display:inline-flex; align-items:center; gap:.6rem;
  margin:1.8rem 0 2rem; padding:.65rem 1.1rem;
  border:2px dashed var(--olive); border-radius:var(--r);
  font-size:.95rem; color:var(--ink);
}
.sala-note .ico{ color:var(--red); }
.sala-note b{ color:var(--red); }

.eventos__videos{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:1fr 1fr; gap:1.1rem;
}
.eventos__videos .vcard:nth-child(2){ transform:translateY(2.2rem); }

.vcard{ position:relative; }
.vcard__btn{
  display:block; position:relative; width:100%; padding:0; cursor:pointer;
  background:var(--ink); border:3px solid var(--ink); border-radius:var(--r);
  overflow:hidden; box-shadow:7px 7px 0 var(--red);
  transition:transform .2s ease, box-shadow .2s ease;
}
.vcard__btn:hover{ transform:translate(-3px,-3px); box-shadow:10px 10px 0 var(--orange); }
.vcard__btn video{ width:100%; aspect-ratio:3/4; object-fit:cover; background:var(--ink); }
.vcard__tag{
  position:absolute; top:.7rem; left:.7rem;
  background:var(--paper); color:var(--ink);
  font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:.3rem .6rem; border-radius:2px;
}
.vcard__play{
  position:absolute; left:.7rem; bottom:.7rem;
  display:inline-flex; align-items:center; gap:.35rem;
  background:var(--red); color:var(--paper);
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.4rem .7rem; border-radius:2px;
}
.vcard__btn[data-sound="on"] .vcard__play{ background:var(--orange); color:var(--ink); }

/* Qué te vas a encontrar */
.feats__title{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(1.1rem,2.2vw,1.35rem); letter-spacing:.14em;
  color:var(--olive-d); margin:0 0 1.5rem;
}
.feats{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line); border-radius:var(--r);
  overflow:hidden; background:var(--paper);
}
.feats li{
  display:flex; align-items:center; gap:.75rem;
  padding:1.15rem 1.2rem;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  font-size:.92rem; font-weight:500;
}
.feats li:nth-child(4n){ border-right:0; }
.feats li:nth-last-child(-n+4){ border-bottom:0; }
.feats .ico{ width:1.4rem; height:1.4rem; color:var(--red); }
.feats li:nth-child(2n) .ico{ color:var(--olive); }

/* Carteles */
.carteles{
  margin-top:clamp(4rem,9vw,7rem);
  display:grid; grid-template-columns:1fr .8fr .8fr;
  gap:clamp(1.5rem,4vw,3rem); align-items:center;
}
.carteles__text p{ max-width:38ch; color:var(--ink-2); }
.carteles__text a{ color:var(--red); }
.poster{ margin:0; }
.poster img, .poster video{
  width:100%; border:3px solid var(--ink); border-radius:var(--r);
  box-shadow:9px 9px 0 var(--olive);
}
.poster--a img{ transform:rotate(-2.2deg); }
.poster--b video{ transform:rotate(2deg); aspect-ratio:9/16; object-fit:cover; background:var(--ink); }
.poster figcaption{
  font-family:var(--ff-hand); font-size:1.15rem; color:var(--red);
  margin-top:1.4rem; text-align:center;
}


/* ── PRÓXIMO EVENTO ─────────────────────────── */
.next{
  display:grid; grid-template-columns:minmax(0,clamp(180px,26vw,300px)) minmax(0,1fr);
  gap:clamp(1.5rem,4vw,3.2rem); align-items:center;
  background:var(--paper);
  border:3px solid var(--ink); border-radius:var(--r);
  box-shadow:10px 10px 0 var(--olive);
  padding:clamp(1.4rem,3vw,2.2rem);
  margin-bottom:clamp(3.5rem,8vw,6rem);
}
.next__poster{ margin:0; }
.next__poster img{
  width:100%; height:auto; border:2px solid var(--ink); border-radius:2px;
  transform:rotate(-1.4deg);
}
.next__tag{
  display:inline-flex; align-items:center; gap:.45rem; margin:0 0 1rem;
  background:var(--red); color:var(--paper);
  font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  padding:.35rem .8rem; border-radius:100px;
}
.next__tag::before{
  content:''; width:.45rem; height:.45rem; border-radius:50%;
  background:currentColor; animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.25 } }
.next__title{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(2rem,4.5vw,3.2rem); line-height:1; margin:0 0 .5rem;
  color:var(--ink);
}
.next__kind{ margin:0 0 1.5rem; color:var(--ink-2); }
.next__kind b{ color:var(--red); }
.next__data{ margin:0 0 1.8rem; display:grid; gap:1rem; }
.next__data dt{
  display:flex; align-items:center; gap:.45rem;
  font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--olive-d); margin-bottom:.2rem;
}
.next__data dt .ico{ width:1rem; height:1rem; color:var(--red); }
.next__data dd{ margin:0; font-size:1.02rem; line-height:1.4; }

@media (max-width:820px){
  .next{ grid-template-columns:1fr; }
  .next__poster{ max-width:340px; margin-inline:auto; }
}

/* ── PET FRIENDLY ───────────────────────────── */
.pet{
  background:var(--paper); position:relative; overflow:hidden;
  padding:clamp(4.5rem,10vw,8rem) 0;
}
.pet::before{
  content:''; position:absolute; right:3%; top:5%;
  width:clamp(7rem,15vw,13rem); aspect-ratio:1; opacity:.08;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23807f56'><ellipse cx='5.6' cy='9' rx='2.4' ry='3.1'/><ellipse cx='11' cy='6.4' rx='2.4' ry='3.3'/><ellipse cx='17.4' cy='8.6' rx='2.3' ry='3'/><path d='M12 12.4c3.6 0 6.4 2.6 6.4 5.2 0 2-1.7 3.1-3.6 2.6-1-.3-1.9-.5-2.8-.5s-1.8.2-2.8.5c-1.9.5-3.6-.6-3.6-2.6 0-2.6 2.8-5.2 6.4-5.2z'/></svg>") center/contain no-repeat;
  transform:rotate(-18deg); pointer-events:none;
}
.pet__grid{
  display:grid; grid-template-columns:1fr 1.05fr;
  gap:clamp(2.5rem,6vw,5rem); align-items:center; position:relative;
}
.pet__list{ list-style:none; padding:0; margin:1.8rem 0 0; }
.pet__list li{
  display:flex; align-items:flex-start; gap:.85rem;
  padding:.85rem 0; border-bottom:1px solid var(--line);
  color:var(--ink-2);
}
.pet__list li .ico{ flex:none; width:1.35rem; height:1.35rem; margin-top:.15rem; color:var(--red); }
.pet__list b{ color:var(--ink); }

.pet__photos{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.polaroid{
  margin:0; background:var(--paper); padding:.7rem .7rem 0;
  border:2px solid var(--ink); box-shadow:9px 9px 0 var(--sand-2);
  transition:transform .25s ease, box-shadow .25s ease;
}
.polaroid img{ width:100%; aspect-ratio:3/4; object-fit:cover; }
.polaroid figcaption{
  font-family:var(--ff-hand); font-size:1.2rem; color:var(--ink);
  padding:.5rem 0 .7rem; text-align:center;
}
.polaroid--1{ transform:rotate(-3deg); }
.polaroid--2{ transform:rotate(2.5deg) translateY(1.8rem); }
.polaroid--3{ grid-column:1 / -1; transform:rotate(1deg); justify-self:center; max-width:78%; }
.polaroid--3 img{ aspect-ratio:1/1; }
.polaroid:hover{ transform:rotate(0deg) scale(1.02); box-shadow:12px 12px 0 var(--olive); z-index:2; }

/* ── VISÍTANOS ──────────────────────────────── */
.visita{
  background:var(--sand);
  padding:clamp(4.5rem,10vw,8rem) 0;
}
.visita__grid{
  display:grid; grid-template-columns:1fr 1.1fr;
  gap:clamp(2.5rem,6vw,4.5rem); align-items:center;
}
.info{ margin:2rem 0 2rem; display:grid; gap:1.3rem; }
.info dt{
  font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:var(--red); margin-bottom:.35rem;
}
.info dd{ margin:0; font-size:1.05rem; line-height:1.5; }
.info dd a{ text-decoration:none; border-bottom:1px solid rgba(163,33,23,.4); }
.info dd a:hover{ color:var(--red); }

.visita__map iframe{
  width:100%; height:min(58vh,460px); border:3px solid var(--ink); border-radius:var(--r);
  box-shadow:10px 10px 0 var(--red);
}
.visita__mapbtn{ margin-top:1.6rem; }

/* ── FOOTER ─────────────────────────────────── */
.foot{
  background:var(--paper);
  padding:clamp(3rem,7vw,4.5rem) 0 1.5rem;
}
.foot__grid{
  display:flex; flex-wrap:wrap; gap:2.5rem;
  justify-content:space-between; align-items:flex-start;
}
.foot__brand{ display:flex; gap:1.2rem; align-items:flex-start; max-width:44ch; }
.foot__brand img{ width:64px; height:auto; }
.foot__brand p{ margin:0; font-size:.95rem; line-height:1.6; color:var(--ink-2); }
.foot__brand b{ color:var(--ink); }
.foot__metas{ display:flex; flex-wrap:wrap; gap:.4rem .9rem; margin:.6rem 0 0 !important; }
.foot__meta{ display:inline-flex; align-items:center; gap:.4rem; font-size:.82rem; }
.foot__meta .ico{ width:.95rem; height:.95rem; color:var(--red); }
.foot__nav{ display:flex; flex-direction:column; gap:.6rem; }
.foot__nav a{
  text-decoration:none; font-size:.85rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ink-2);
}
.foot__nav a:hover{ color:var(--red); }

.foot__legal{
  max-width:var(--wrap); margin:3rem auto 0; padding:1.4rem var(--pad) 0;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:.6rem 1.5rem; justify-content:space-between;
  font-size:.78rem; color:var(--ink-2);
}
.foot__credit a{
  color:var(--ink); text-decoration:none;
  border-bottom:1px solid var(--line); font-weight:700;
}
.foot__credit a:hover{ color:var(--red); border-bottom-color:var(--red); }

/* ═══ RESPONSIVE ═══════════════════════════════ */
@media (max-width:1000px){
  .hero__grid{ grid-template-columns:1fr; gap:2.5rem; }
  .hero__figwrap{ max-width:430px; justify-self:start; }
  .hero__media{ transform:none; box-shadow:10px 10px 0 var(--red); }
  .casa__grid{ grid-template-columns:1fr; }
  .casa__photo img{ transform:rotate(1deg); box-shadow:10px 10px 0 var(--olive); }
  .cards{ grid-template-columns:1fr 1fr; }
  .eventos__top{ grid-template-columns:1fr; }
  .eventos__videos{ max-width:520px; }
  .eventos__videos .vcard:nth-child(2){ transform:none; }
  .feats{ grid-template-columns:repeat(2,1fr); }
  .feats li:nth-child(4n){ border-right:1px solid var(--line); }
  .feats li:nth-child(2n){ border-right:0; }
  .feats li:nth-last-child(-n+4){ border-bottom:1px solid var(--line); }
  .feats li:nth-last-child(-n+2){ border-bottom:0; }
  .carteles{ grid-template-columns:1fr 1fr; }
  .carteles__text{ grid-column:1 / -1; }
  .pet__grid{ grid-template-columns:1fr; }
  .visita__grid{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  html{ scroll-padding-top:64px; }
  .hero__kicker{ gap:.15rem .7rem; }
  .hero__kicker .dot{ display:none; }
  .hero__cta .btn{ flex:1 1 100%; text-align:center; }
  .hero__sticker{ right:-.8rem; top:-.8rem; }
  .hours-bar__in{ flex-direction:column; align-items:flex-start; }
  .hours-bar__week{ width:100%; }
  .hours-bar__week li{ flex:1 1 auto; justify-content:space-between; }
  .cards{ grid-template-columns:1fr; }
  .feats{ grid-template-columns:1fr; }
  .feats li{ border-right:0 !important; border-bottom:1px solid var(--line) !important; }
  .feats li:last-child{ border-bottom:0 !important; }
  .carteles{ grid-template-columns:1fr; }
  .poster--a img, .poster--b video{ transform:none; }
  .polaroid--2{ transform:rotate(2deg); }
  .polaroid--3{ max-width:100%; }
  .foot__grid{ flex-direction:column; gap:2rem; }
  .foot__legal{ flex-direction:column; }
  .rule{ height:7px; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .grain{ animation:none; }
}

/* ═══════════════════════════════════════════════
   PÁGINA DE CARTA (carta.html)
   ═══════════════════════════════════════════════ */

.carta-hero{
  padding:clamp(8rem,14vw,11rem) 0 clamp(2.5rem,6vw,4rem);
  background:
    radial-gradient(70% 55% at 85% 10%, rgba(238,122,33,.12), transparent 62%),
    var(--paper);
}
.carta-hero .lead{ max-width:56ch; }
.back{ color:var(--ink-2); text-decoration:none; }
.back:hover{ color:var(--red); }

.carta-note{
  display:inline-flex; align-items:center; gap:.65rem;
  margin:1.8rem 0 0; padding:.65rem 1.1rem;
  border:2px dashed var(--olive); border-radius:var(--r);
  font-size:.9rem; color:var(--ink);
}
.carta-note .ico{ color:var(--red); width:1.15rem; height:1.15rem; }

/* Índice pegajoso */
.carta-jump{
  position:sticky; top:62px; z-index:50;
  background:rgba(255,255,255,.94); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.carta-jump ul{
  list-style:none; margin:0; padding:.7rem 0;
  display:flex; gap:.5rem; overflow-x:auto; scrollbar-width:none;
}
.carta-jump ul::-webkit-scrollbar{ display:none; }
.carta-jump a{
  display:block; white-space:nowrap; text-decoration:none;
  font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-2);
  border:1px solid var(--line); border-radius:100px; padding:.35rem .9rem;
  transition:background .15s, color .15s, border-color .15s;
}
.carta-jump a:hover{ background:var(--red); border-color:var(--red); color:var(--paper); }

.carta{ background:var(--sand); padding:clamp(2.5rem,6vw,4.5rem) 0 clamp(4rem,9vw,7rem); }
.carta__grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:clamp(1.2rem,3vw,2rem); align-items:start;
}
.board--wide{ grid-column:1 / -1; }

.board{
  position:relative; background:var(--paper);
  border:3px solid var(--ink); border-radius:var(--r);
  box-shadow:8px 8px 0 var(--red);
  padding:clamp(1.6rem,3.5vw,2.6rem);
  scroll-margin-top:130px;
}
.board--alert{ background:var(--sand-2); box-shadow:8px 8px 0 var(--olive); }

.board__title{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(1.7rem,4vw,2.6rem); line-height:1;
  margin:0 0 1.4rem; letter-spacing:.02em; color:var(--ink);
}
.board__title::after{
  content:''; display:block; width:3.2rem; height:4px; margin-top:.7rem;
  background:currentColor;
}
.board__title--pink{ color:var(--red); }
.board__title--yellow{ color:var(--orange); }
.board__title--green{ color:var(--olive); }
.board__title--blue{ color:var(--red-d); }
.board__title--white{ color:var(--ink); }

.board__sub{
  font-family:var(--ff-display); font-weight:400; text-transform:uppercase;
  font-size:1.05rem; letter-spacing:.1em; color:var(--olive-d); margin:0 0 .7rem;
}
.board__intro{ margin:-.6rem 0 1.4rem; font-size:.92rem; color:var(--ink-2); }

.menu{ list-style:none; margin:0; padding:0; }
.menu li{ padding:.7rem 0; border-bottom:1px dashed var(--line); }
.menu li:last-child{ border-bottom:0; padding-bottom:0; }
.menu--plain li{ border-bottom:0; padding:.32rem 0; }

.menu__row{ display:flex; align-items:baseline; gap:.5rem; margin:0; font-size:1.02rem; line-height:1.35; }
.menu__name{ font-weight:500; color:var(--ink); }
.menu__dots{
  flex:1 1 auto; min-width:1.5rem; align-self:flex-end;
  border-bottom:1px dotted rgba(26,21,18,.3); transform:translateY(-.28em);
}
.menu__price{ font-weight:700; color:var(--red); font-variant-numeric:tabular-nums; white-space:nowrap; }
.menu__desc{ margin:.25rem 0 0; font-size:.85rem; line-height:1.45; color:var(--ink-2); }

.veg{
  display:inline-block; margin-left:.35rem; vertical-align:.08em;
  font-style:normal; font-size:.6rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--olive-d);
  border:1px solid currentColor; border-radius:100px; padding:.05rem .38rem;
}

.cols{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.2rem,3vw,2.6rem); }
.cols--3{ grid-template-columns:repeat(3,1fr); }

.allerg{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:.55rem; }
.allerg li{
  border:2px solid var(--olive); border-radius:100px;
  padding:.4rem 1rem; font-size:.88rem; color:var(--ink);
}
.scribble--light{ color:var(--red); margin-top:1.4rem; }

.carta__cta{
  margin-top:clamp(3rem,7vw,5rem); padding-top:clamp(2rem,5vw,3rem);
  border-top:1px solid var(--line);
}
.carta__cta .lead{ margin:0 0 1.4rem; }

@media (max-width:960px){ .carta-jump{ top:58px; } }
@media (max-width:820px){
  .carta__grid{ grid-template-columns:1fr; }
  .cols--3{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .cols, .cols--3{ grid-template-columns:1fr; gap:1.6rem; }
  .board{ box-shadow:5px 5px 0 var(--red); }
  .board--alert{ box-shadow:5px 5px 0 var(--olive); }
}
