:root{
  --green:#1f3a2f;
  --green-2:#2c4a3d;
  --green-dark:#10261d;
  --cream:#f7f2e8;
  --cream-2:#eee2d1;
  --ink:#20201c;
  --muted:#66675f;
  --gold:#b9894d;
  --gold-soft:#c49a6c;
  --white:#fff;
  --border:rgba(31,58,47,.15);
  --shadow:0 20px 55px rgba(18,33,26,.11);
  --radius:18px;
  --max:1180px;
  --serif:Georgia,"Times New Roman",serif;
  --sans:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* =========================
   BASE
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.65;
}

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

a{
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

address{
  font-style:normal;
}

.container{
  width:min(calc(100% - 36px),var(--max));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  top:0;
  left:-9999px;
}

.skip-link:focus{
  left:16px;
  top:16px;
  z-index:999;
  padding:10px 14px;
  background:var(--white);
}

/* =========================
   HEADER / NAVEGACIÓN
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,242,232,.95);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:150px;
  max-height:68px;
  object-fit:contain;
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:22px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:20px;
}

.main-nav a{
  text-decoration:none;
  font-size:.96rem;
  font-weight:650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"]{
  color:var(--gold);
}

.lang-switch{
  display:flex;
  gap:7px;
  font-size:.86rem;
  font-weight:800;
}

.lang-switch a{
  padding:5px 7px;
  border-radius:7px;
  text-decoration:none;
}

.lang-switch a[aria-current="true"]{
  background:var(--green);
  color:var(--white);
}

.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  font-size:1.45rem;
}

/* =========================
   BOTONES
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border:1px solid transparent;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease,background-color .2s ease,border-color .2s ease;
}

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

.btn-primary{
  background:var(--green);
  color:var(--white);
  box-shadow:0 10px 24px rgba(16,38,29,.14);
}

.btn-primary:hover{
  background:var(--green-2);
}

.btn-secondary{
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.08);
  color:var(--white);
}

.btn-outline{
  border-color:var(--green);
  color:var(--green);
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

/* =========================
   HERO DE INICIO
========================= */

.hero{
  position:relative;
  z-index:0;
  min-height:860px;
  display:grid;
  place-items:center;
  overflow:hidden;
  color:var(--white);
}

.hero::before{
  content:"";
  position:absolute;
  inset:-8%;
  z-index:-1;
  background:
    linear-gradient(
      90deg,
      rgba(12,24,18,.88) 0%,
      rgba(12,24,18,.62) 45%,
      rgba(12,24,18,.30) 100%
    ),
    url("../images/hero-parrilla.jpg") center/cover no-repeat;
  transform:translate3d(0,var(--hero-offset,0),0) scale(1.08);
  will-change:transform;
}

.hero-inner{
  max-width:770px;
  margin-right:auto;
  padding:110px 0;
}

.eyebrow{
  color:var(--gold);
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero h1,
.page-hero h1,
.history-intro h1{
  margin:.2em 0;
  font-family:var(--serif);
  font-size:clamp(3rem,7vw,6rem);
  line-height:.98;
}

.hero p{
  max-width:660px;
  color:#f0eadf;
  font-size:1.18rem;
}

/* =========================
   SECCIONES GENERALES
========================= */

.section{
  padding:92px 0;
}

.section-alt{
  background:var(--cream-2);
}

.section + .section{
  border-top:1px solid rgba(31,58,47,.06);
}

.section-dark{
  background:
    linear-gradient(
      135deg,
      var(--green-2) 0%,
      var(--green) 100%
    );
  color:var(--white);
}

.section-head{
  max-width:760px;
  margin-bottom:40px;
}

.section-head h2,
.content h2{
  margin:.15em 0 .3em;
  font-family:var(--serif);
  font-size:clamp(2.2rem,4.7vw,4rem);
  line-height:1.05;
}

.section-head p,
.card p{
  color:var(--muted);
}

.section-dark p,
.section-dark .section-head p{
  color:#e4ebe6;
}

.grid{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:62px;
}

.split img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.quote{
  padding-left:22px;
  border-left:4px solid var(--gold);
  font-family:var(--serif);
  font-size:1.8rem;
  line-height:1.35;
}

/* =========================
   TARJETAS
========================= */

.card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.54);
  box-shadow:var(--shadow);
}

.card-body{
  padding:24px;
}

.card h3{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:1.65rem;
}

.media-card img{
  aspect-ratio:3/2;
  object-fit:cover;
}

/* =========================
   HERO DE PÁGINAS INTERIORES
========================= */

.page-hero{
  position:relative;
  z-index:0;
  min-height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:105px 0 70px;
  background-color:var(--green);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  color:var(--white);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(
    90deg,
    rgba(12,24,18,.88) 0%,
    rgba(12,24,18,.62) 45%,
    rgba(12,24,18,.30) 100%
  );
}

.page-hero .container{
  position:relative;
  z-index:1;
}

.page-hero h1{
  max-width:820px;
}

.page-hero p{
  max-width:700px;
  color:#dce5df;
}

.page-hero--carta{
  background-image:url("../images/Carta-Ponchos-Restaurante.jpg");
}

.page-hero--vinos{
  background-image:url("../images/restaurante-ponchos-vinos-2-1920w.jpg");
}

.page-hero--galeria{
  background-image:url("../images/hero-galeria.jpg");
}

/* ==========================================================
   CONTACTO · HERO PARALLAX
========================================================== */

.page-hero--contacto{
  position:relative;
  z-index:0;

  min-height:520px;

  display:flex;
  align-items:center;

  overflow:hidden;

  padding:110px 0 90px;

  background-image:
    linear-gradient(
      90deg,
      rgba(10,27,20,.82) 0%,
      rgba(10,27,20,.60) 48%,
      rgba(10,27,20,.28) 100%
    ),
    url("../images/hero-contacto.webp");

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;

  color:var(--white);
}

/* Evita que se sume el overlay genérico de .page-hero */
.page-hero--contacto::before{
  display:none;
}

.page-hero--contacto .container{
  position:relative;
  z-index:2;
}

.page-hero--contacto h1{
  max-width:680px;

  margin:.18em 0 .28em;

  font-family:var(--serif);
  font-size:clamp(3.5rem,6vw,5.7rem);
  line-height:.96;
}

.page-hero--contacto p{
  max-width:620px;

  margin:0;

  color:rgba(255,255,255,.88);
  font-size:1.05rem;
}
@media(max-width:900px){

  .page-hero--contacto{
    min-height:440px;
    padding:90px 0 70px;

    background-attachment:scroll;
    background-position:center;
  }

}

@media(max-width:620px){

  .page-hero--contacto{
    min-height:390px;
    padding:76px 0 60px;
  }

  .page-hero--contacto h1{
    font-size:clamp(3rem,14vw,4rem);
  }

}

/* ======================================
   HISTORIA: INTRODUCCIÓN
====================================== */

.history-intro{
  padding:70px 0 58px;
  background:var(--cream);
}

.history-intro .breadcrumbs{
  margin-bottom:28px;
  color:var(--muted);
}

.history-intro .breadcrumbs a:hover{
  color:var(--green);
}

.history-intro h1{
  max-width:900px;
  margin:.12em 0 .24em;
  color:var(--green);
  font-family:var(--serif);
  font-size:clamp(3.6rem,7vw,6.5rem);
  line-height:.95;
}

.history-intro__lead{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:1.18rem;
  line-height:1.7;
}

/* ======================================
   HISTORIA: IMAGEN PARALLAX
====================================== */

.history-banner{
  width:100%;
  min-height:580px;

  background-image:
    linear-gradient(
      rgba(12,24,18,.12),
      rgba(12,24,18,.12)
    ),
    url("../images/Nuestra-historia.jpg");

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* Contenido posterior */

.history-content{
  padding-top:100px;
}

/* =========================
   BREADCRUMBS
========================= */

.breadcrumbs{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:18px;
  color:#c8d2cc;
  font-size:.9rem;
}

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

.breadcrumbs a:hover{
  color:var(--white);
}

/* =========================
   CONTENIDO
========================= */

.content{
  max-width:820px;
}

.content h2{
  margin-top:1.6em;
  font-size:2.4rem;
}

.content h3{
  font-family:var(--serif);
  font-size:1.7rem;
}

/* =========================
   CARTA
========================= */

/* Navegación gastronómica premium */
.menu-nav{
  position:sticky;
  top:86px;
  z-index:40;
  margin:0 0 36px;
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.menu-nav__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  min-height:60px;
  border-bottom:1px solid rgba(185,137,77,.22);
}

.menu-nav__primary,
.menu-nav__utility{
  display:flex;
  align-items:center;
  min-width:0;
}

.menu-nav__primary{
  gap:30px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  scroll-snap-type:x proximity;
}

.menu-nav__primary::-webkit-scrollbar{
  display:none;
}

.menu-nav__utility{
  position:relative;
  flex:0 0 auto;
  gap:10px;
  padding-left:26px;
}

.menu-nav__utility::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:1px;
  height:26px;
  background:rgba(185,137,77,.20);
  transform:translateY(-50%);
}

.menu-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  min-height:42px;
  color:var(--green);
  font-size:.92rem;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;
  transition:
    color .22s ease,
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.menu-nav__primary a{
  padding:10px 0 14px;
}

.menu-nav__primary a::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:2px;
  border-radius:999px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .24s ease;
}

.menu-nav__primary a:hover{
  color:var(--gold);
  transform:translateY(-1px);
}

.menu-nav__primary a:hover::after{
  transform:scaleX(.45);
}

.menu-nav__primary a.is-active,
.menu-nav__primary a[aria-current="true"]{
  color:var(--gold);
}

.menu-nav__primary a.is-active::after,
.menu-nav__primary a[aria-current="true"]::after{
  transform:scaleX(1);
}

.menu-nav a:focus-visible{
  outline:3px solid rgba(185,137,77,.28);
  outline-offset:4px;
  border-radius:4px;
}

.menu-nav__utility a{
  gap:7px;
  min-height:36px;
  padding:8px 13px;
  border:1px solid rgba(185,137,77,.28);
  border-radius:999px;
  background:rgba(255,255,255,.54);
  font-size:.82rem;
}

.menu-nav__utility a::after{
  display:none;
}

.menu-nav__utility a span{
  color:var(--gold);
  font-size:.55rem;
}

.menu-nav__utility a:hover,
.menu-nav__utility a.is-active,
.menu-nav__utility a[aria-current="true"]{
  transform:none;
  border-color:var(--green);
  background:var(--green);
  color:var(--white);
}

.menu-nav__utility a.is-active span,
.menu-nav__utility a[aria-current="true"] span{
  color:var(--gold-soft);
}

@media(max-width:620px){
  .menu-nav{
    top:86px;
    margin-bottom:28px;
  }

  .menu-nav__inner{
    min-height:auto;
    padding:6px 0 9px;
  }

  .menu-nav__primary{
    gap:20px;
  }

  .menu-nav__primary a{
    padding:9px 0 12px;
    font-size:.88rem;
  }

  .menu-nav__utility{
    overflow-x:auto;
    scrollbar-width:none;
  }

  .menu-nav__utility::-webkit-scrollbar{
    display:none;
  }


  .menu-nav__utility a{
    min-height:34px;
    padding:7px 10px;
    font-size:.8rem;
  }
}

/* Estructura de las secciones de carta */
.menu-section{
  padding:78px 0 10px;
  scroll-margin-top:165px;
}

.menu-section__heading{
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid var(--border);
}

.menu-section__heading h2{
  margin:.12em 0 0;
  padding:0;
  border:0;
  font-family:var(--serif);
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1.05;
}

.menu-section__subheading{
  margin:42px 0 14px;
}

.menu-section__subheading h3{
  margin:0;
  font-family:var(--serif);
  font-size:1.75rem;
}

.menu-items{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
  gap:18px 34px;
}

.menu-item{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:18px 0;
  border-bottom:1px dashed rgba(31,58,47,.22);
}

.menu-item-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  width:100%;
}

.menu-item h3{
  margin:0;
  font-family:var(--serif);
  font-size:1.28rem;
}

.menu-item p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:.95rem;
}

.price{
  color:var(--green);
  font-weight:850;
  white-space:nowrap;
}

.menu-items--compact{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.menu-cut{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  padding:24px 0;
  border-bottom:1px solid var(--border);
}

.menu-cut h3{
  margin:0 0 6px;
  font-family:var(--serif);
  font-size:1.55rem;
}

.menu-cut h3 small{
  color:var(--muted);
  font-family:var(--sans);
  font-size:.85rem;
  font-weight:650;
}

.menu-cut p,
.menu-cut ul{
  margin:0;
  color:var(--muted);
}

.menu-section__note,
.menu-guide__note{
  margin-top:28px;
  color:var(--muted);
  font-size:.92rem;
}

.menu-guide,
.allergen-guide{
  padding:78px 0 10px;
  scroll-margin-top:165px;
}

.cooking-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 34px;
}

.cooking-grid article{
  padding:20px 0;
  border-bottom:1px dashed rgba(31,58,47,.22);
}

.cooking-grid h3{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:1.25rem;
}

.cooking-grid p{
  margin:0;
  color:var(--muted);
}

.notice{
  padding:18px 20px;
  border:1px solid #d9bd85;
  border-radius:14px;
  background:#fff7e8;
}

@media(max-width:1100px){
  .menu-nav__inner{
    grid-template-columns:1fr;
    gap:0;
    padding:8px 0 10px;
  }

  .menu-nav__primary{
    gap:22px;
    padding-bottom:2px;
  }

  .menu-nav__utility{
    gap:12px;
    padding:2px 0 0;
  }

  .menu-nav__utility::before{
    display:none;
  }
}

@media(max-width:900px){
  .menu-items,
  .menu-items--compact,
  .cooking-grid,
  .menu-cut{
    grid-template-columns:1fr;
  }
}


@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  .hero::before{
    transform:scale(1.08);
  }

  .btn,
  .contact-links a,
  .menu-nav a{
    transition:none;
  }

  .menu-section:target,
  .menu-guide:target,
  .allergen-guide:target{
    animation:none;
  }
}
/* CARTA: INTRODUCCIÓN EDITORIAL */
.menu-intro{padding:70px 0 58px;background:var(--cream)}
.menu-intro .breadcrumbs{margin-bottom:28px;color:var(--muted)}
.menu-intro .breadcrumbs a:hover{color:var(--green)}
.menu-intro h1{max-width:900px;margin:.12em 0 .24em;color:var(--green);font-family:var(--serif);font-size:clamp(3.6rem,7vw,6.5rem);line-height:.95}
.menu-intro__lead{max-width:760px;margin:0;color:var(--muted);font-size:1.18rem;line-height:1.7}

/* CARTA: BANNER PARALLAX */
.menu-banner{width:100%;min-height:580px;background-image:linear-gradient(rgba(12,24,18,.14),rgba(12,24,18,.14)),url("../images/Carta-Ponchos-Restaurante.jpg");background-position:center;background-size:cover;background-repeat:no-repeat;background-attachment:fixed}

/* CARTA: CONTENIDO */
.menu-content{padding:96px 0 110px}
.menu-content__heading{display:grid;grid-template-columns:1.05fr .95fr;gap:62px;align-items:end;margin-bottom:34px}
.menu-content__heading h2{margin:.12em 0 0;font-family:var(--serif);font-size:clamp(2.6rem,5vw,4.5rem);line-height:1}
.menu-content__heading>p{margin:0;color:var(--muted)}

.menu-section--featured{position:relative;margin-top:70px;padding:72px 38px 42px;border:1px solid var(--border);border-radius:var(--radius);background:var(--cream-2)}
.menu-section--featured .menu-section__heading{border-bottom-color:rgba(23,49,38,.24)}
.menu-notice{margin-top:70px;padding:20px 22px;border:1px solid #d9bd85;border-radius:14px;background:#fff7e8}
.menu-notice p{margin:0}
.menu-cta .actions{justify-content:flex-end}

@media(max-width:900px){
  .menu-banner{min-height:460px;background-attachment:scroll}
  .menu-content__heading{grid-template-columns:1fr;gap:20px}
  .menu-section--featured{margin-top:54px;padding:54px 24px 34px}
  .menu-cta .actions{justify-content:flex-start}
}

@media(max-width:620px){
  .menu-intro{padding:52px 0 42px}
  .menu-intro h1{font-size:3rem}
  .menu-banner{min-height:360px;background-position:center}
  .menu-content{padding:68px 0 80px}
  .menu-section{padding-top:58px}
  .menu-section--featured{margin-inline:-10px;padding:48px 20px 28px}
}
/* ======================================
   CARTA: IMÁGENES OPCIONALES
====================================== */

.menu-section__media{
  margin:0 0 42px;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.menu-section__media img{
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
}

.menu-featured-dish{
  margin:0 0 38px;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.menu-featured-dish img{
  width:100%;
  aspect-ratio:16/8;
  object-fit:cover;
}

/* ==========================================================
   CARTA · ALÉRGENOS CORREGIDOS
   Añadir al final de /assets/css/styles.css
========================================================== */

.dish-allergens{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
}

.dish-allergens li{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:6px 10px;
  border:1px solid rgba(31,58,47,.14);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--muted);
  font-size:.78rem;
  line-height:1;
}

.dish-allergens img{
  display:block;
  width:21px;
  height:21px;
  flex:0 0 21px;
  object-fit:contain;
}

@media(max-width:620px){
  .dish-allergens{
    gap:6px;
  }

  .dish-allergens li{
    padding:6px 9px;
  }
}

/* ==========================================================
   CARTA · SECCIÓN PREMIUM DE ALÉRGENOS
========================================================== */

.allergen-guide{
  padding:86px 0 24px;
  scroll-margin-top:165px;
}

.allergen-guide__header{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(300px,1.1fr);
  align-items:end;
  gap:56px;
  margin-bottom:38px;
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
}

.allergen-guide__header h2{
  margin:.12em 0 0;
  font-family:var(--serif);
  font-size:clamp(2.5rem,5vw,4rem);
  line-height:1;
}

.allergen-guide__intro{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.75;
}

.allergen-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.allergen-grid li{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:92px;
  padding:16px 18px;
  border:1px solid rgba(31,58,47,.13);
  border-radius:16px;
  background:rgba(255,255,255,.66);
  box-shadow:0 8px 22px rgba(16,38,29,.045);
  color:var(--green-dark);
  font-weight:750;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.allergen-grid li:hover{
  transform:translateY(-2px);
  border-color:rgba(185,137,77,.55);
  background:rgba(255,255,255,.94);
  box-shadow:0 12px 28px rgba(16,38,29,.08);
}

.allergen-grid__icon{
  display:grid;
  place-items:center;
  flex:0 0 54px;
  width:54px;
  height:54px;
  border:1px solid rgba(31,58,47,.11);
  border-radius:50%;
  background:var(--cream);
}

.allergen-grid__icon img{
  display:block;
  width:34px;
  height:34px;
  object-fit:contain;
}

.allergen-advice{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:start;
  gap:18px;
  margin-top:32px;
  padding:24px 26px;
  border:1px solid rgba(185,137,77,.34);
  border-radius:18px;
  background:
    linear-gradient(
      135deg,
      rgba(238,226,209,.82),
      rgba(255,255,255,.72)
    );
}

.allergen-advice__mark{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--green);
  color:var(--white);
  font-family:var(--serif);
  font-size:1.3rem;
  font-weight:700;
}

.allergen-advice h3{
  margin:0 0 6px;
  font-family:var(--serif);
  font-size:1.35rem;
}

.allergen-advice p{
  max-width:820px;
  margin:0;
  color:var(--muted);
}

@media(max-width:1000px){
  .allergen-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .allergen-guide__header{
    grid-template-columns:1fr;
    gap:18px;
  }

  .allergen-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:500px){
  .allergen-guide{
    padding-top:68px;
  }

  .allergen-grid{
    grid-template-columns:1fr;
  }

  .allergen-grid li{
    min-height:76px;
  }

  .allergen-advice{
    grid-template-columns:1fr;
  }
}

@media(prefers-reduced-motion:reduce){
  .allergen-grid li{
    transition:none;
  }
}


/* ==========================================================
   CARTA · SEPARADORES CON LOGO PONCHO'S · MARCA DE AGUA
========================================================== */

/*
  Separador editorial entre categorías.
  Conserva una línea fina y desplaza el logo hacia la derecha
  como marca de agua más grande y discreta.
*/

.menu-section + .menu-section,
.menu-section + .menu-guide,
.menu-guide + .allergen-guide{
  padding-top:42px;
}

.menu-section + .menu-section::before,
.menu-section + .menu-guide::before,
.menu-guide + .allergen-guide::before{
  content:"";
  display:block;
  width:100%;
  height:120px;
  margin:0 0 26px;

  background-image:
    url("../images/logo-restaurante-ponchos.png"),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(185,137,77,.10) 8%,
      rgba(185,137,77,.30) 48%,
      rgba(185,137,77,.18) 74%,
      transparent 100%
    );

  background-repeat:no-repeat;
  background-position:
    88% center,
    center;

  background-size:
    112px auto,
    100% 1px;

  opacity:.12;
  pointer-events:none;
}

/* El bloque destacado de carnes conserva su propia caja */
.menu-section + .menu-section--featured{
  margin-top:54px;
  padding-top:54px;
}

.menu-section + .menu-section--featured::before{
  margin-top:-24px;
  margin-bottom:24px;
}

/* En alérgenos el separador queda aún más discreto */
.menu-guide + .allergen-guide::before{
  opacity:.09;
}

/* El primer bloque no lleva separador */
.menu-content > .container > .menu-section:first-of-type{
  padding-top:68px;
}

@media(max-width:760px){
  .menu-section + .menu-section,
  .menu-section + .menu-guide,
  .menu-guide + .allergen-guide{
    padding-top:32px;
  }

  .menu-section + .menu-section::before,
  .menu-section + .menu-guide::before,
  .menu-guide + .allergen-guide::before{
    height:92px;
    margin-bottom:20px;

    background-position:
      92% center,
      center;

    background-size:
      84px auto,
      100% 1px;

    opacity:.11;
  }

  .menu-section + .menu-section--featured{
    margin-top:42px;
    padding-top:44px;
  }
}

@media(max-width:500px){
  .menu-section + .menu-section::before,
  .menu-section + .menu-guide::before,
  .menu-guide + .allergen-guide::before{
    height:78px;

    background-position:
      94% center,
      center;

    background-size:
      68px auto,
      100% 1px;
  }
}

/* ==========================================================
   CARTA · AJUSTE FINAL DE NAVEGACIÓN
========================================================== */

.menu-nav{
  background:transparent !important;
  border-top:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

.menu-nav__inner{
  background:var(--cream);
}

.menu-nav__primary,
.menu-nav__utility{
  background:transparent;
}


/* ==========================================================
   VINOS · DISEÑO PREMIUM CON BOTELLAS TRANSPARENTES
========================================================== */

.wine-intro{
  padding:74px 0 62px;
  background:var(--cream);
}

.wine-intro .breadcrumbs{
  margin-bottom:30px;
  color:var(--muted);
}

.wine-intro .breadcrumbs a:hover{
  color:var(--green);
}

.wine-intro__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:end;
  gap:62px;
}

.wine-intro h1{
  max-width:820px;
  margin:.1em 0 0;
  color:var(--green);
  font-family:var(--serif);
  font-size:clamp(3.6rem,7vw,6.5rem);
  line-height:.95;
}

.wine-intro__lead{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:1.14rem;
  line-height:1.75;
}

.wine-banner{
  width:100%;
  min-height:480px;
  background-image:
    linear-gradient(rgba(12,24,18,.10),rgba(12,24,18,.10)),
    url("../images/vinos-argentinos-ponchos.webp");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* Navegación anclada */

.wine-nav{
  position:sticky;
  top:86px;
  z-index:38;
  background:rgba(247,242,232,.965);
  border-bottom:1px solid rgba(185,137,77,.20);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.wine-nav__inner{
  display:flex;
  align-items:center;
  gap:30px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  scroll-snap-type:x proximity;
}

.wine-nav__inner::-webkit-scrollbar{
  display:none;
}

.wine-nav a{
  position:relative;
  flex:0 0 auto;
  padding:18px 0 16px;
  color:var(--green);
  font-size:.92rem;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;
  transition:color .22s ease,transform .22s ease;
}

.wine-nav a::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:2px;
  border-radius:999px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .24s ease;
}

.wine-nav a:hover{
  color:var(--gold);
  transform:translateY(-1px);
}

.wine-nav a:hover::after,
.wine-nav a.is-active::after,
.wine-nav a[aria-current="true"]::after{
  transform:scaleX(1);
}

.wine-nav a.is-active,
.wine-nav a[aria-current="true"]{
  color:var(--gold);
}

.wine-nav a:focus-visible{
  outline:3px solid rgba(185,137,77,.28);
  outline-offset:4px;
  border-radius:4px;
}

/* Secciones */

.wine-section{
  padding:96px 0;
  scroll-margin-top:160px;
}

.wine-section--alt{
  background:var(--cream-2);
}

.wine-section__head{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:end;
  gap:62px;
  margin-bottom:50px;
}

.wine-section__head h2{
  margin:.12em 0 0;
  font-family:var(--serif);
  font-size:clamp(2.7rem,5vw,4.6rem);
  line-height:1;
}

.wine-section__head > p{
  margin:0;
  color:var(--muted);
}

/* Tarjeta premium */

.wine-premium-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
}

.wine-premium-card{
  overflow:hidden;
  border:1px solid rgba(31,58,47,.12);
  border-radius:28px;
  background:
    linear-gradient(
      180deg,
      #eadcc8 0,
      #eadcc8 22%,
      #fffdf8 22%,
      #fffdf8 100%
    );
  box-shadow:0 24px 68px rgba(18,33,26,.12);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.wine-premium-card:hover{
  transform:translateY(-4px);
  border-color:rgba(185,137,77,.40);
  box-shadow:0 30px 78px rgba(18,33,26,.16);
}

.wine-premium-card__header{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:170px;
  padding:24px 24px 18px;
  text-align:center;
}

.wine-premium-card__header img{
  width:78px;
  height:auto;
  opacity:.92;
}

.wine-premium-card__header p{
  margin:8px 0 0;
  color:var(--gold);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.20em;
  text-transform:uppercase;
}

.wine-premium-card__grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  align-items:end;
  gap:18px;
  padding:0 28px 34px;
}

.wine-premium-card__bottle{
  display:flex;
  align-items:flex-end;
  justify-content:center;

  height:520px;
  margin:-90px 0 0;
  overflow:visible;
}

.wine-premium-card__bottle img{
  display:block;

  width:auto;
  height:100%;
  max-width:100%;

  object-fit:contain;
  object-position:center bottom;

  filter:drop-shadow(0 22px 18px rgba(0,0,0,.16));
}

.wine-premium-card__content{
  padding:30px 0 14px;
}

.wine-premium-card__content h3{
  margin:.12em 0 .42em;
  color:var(--green);
  font-family:var(--serif);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1;
}

.wine-premium-card__ornament{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  margin:24px 0;
}

.wine-premium-card__ornament span{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(185,137,77,.52));
}

.wine-premium-card__ornament span:last-child{
  background:linear-gradient(90deg,rgba(185,137,77,.52),transparent);
}

.wine-premium-card__ornament i{
  width:8px;
  height:8px;
  background:var(--gold);
  transform:rotate(45deg);
}

.wine-premium-card__description{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.7;
}

.wine-premium-card__details{
  display:grid;
  gap:0;
  margin:0;
}

.wine-premium-card__details > div{
  display:grid;
  grid-template-columns:50px 1fr;
  align-items:center;
  gap:14px;
  padding:15px 0;
  border-top:1px solid rgba(31,58,47,.10);
}

.wine-premium-card__detail-icon{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#efe3d2;
  color:var(--gold);
  font-size:1.2rem;
}

.wine-premium-card__details dt{
  margin-bottom:2px;
  color:var(--green);
  font-size:.82rem;
  font-weight:850;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.wine-premium-card__details dd{
  margin:0;
  color:var(--muted);
  font-size:.94rem;
}

/* Secciones visuales por estilo */

.wine-style-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}

.wine-style-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:22px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.wine-style-card__media > img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.wine-style-card__body{
  padding:25px 24px 28px;
}

.wine-style-card h3{
  margin:.12em 0 .5em;
  font-family:var(--serif);
  font-size:1.8rem;
  line-height:1.15;
}

.wine-style-card p:last-child{
  margin-bottom:0;
  color:var(--muted);
}

/* Maridajes */

.wine-pairing{
  padding:96px 0;
  scroll-margin-top:160px;
  background:
    linear-gradient(135deg,var(--green-2) 0%,var(--green) 100%);
  color:var(--white);
}

.wine-pairing__grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:60px;
}

.wine-pairing__grid figure{
  margin:0;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.wine-pairing__grid img{
  width:100%;
  min-height:560px;
  object-fit:cover;
}

.wine-pairing h2{
  margin:.12em 0 .35em;
  font-family:var(--serif);
  font-size:clamp(2.7rem,5vw,4.6rem);
  line-height:1;
}

.wine-pairing p{
  color:#dfe7e2;
}

.wine-pairing-list{
  display:grid;
  gap:13px;
  margin:28px 0 0;
}

.wine-pairing-list div{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:15px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.wine-pairing-list span{
  color:#dfe7e2;
}

.wine-pairing .btn-outline{
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}

/* Aviso */

.wine-notice{
  padding:24px 0;
  background:var(--cream-2);
  border-top:1px solid var(--border);
}

.wine-notice p{
  margin:0;
  text-align:center;
  color:var(--muted);
}

/* Responsive */

@media(max-width:1000px){
  .wine-premium-grid{
    grid-template-columns:1fr;
  }

  .wine-premium-card__grid{
    grid-template-columns:.72fr 1.28fr;
  }
}

@media(max-width:900px){
  .wine-banner{
    min-height:460px;
    background-attachment:scroll;
  }

  .wine-intro__grid,
  .wine-section__head,
  .wine-pairing__grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .wine-style-grid{
    grid-template-columns:1fr;
  }

  .wine-pairing__grid img{
    min-height:420px;
  }
}

@media(max-width:620px){
  .wine-intro{
    padding:52px 0 44px;
  }

  .wine-intro h1{
    font-size:3rem;
  }

  .wine-banner{
    min-height:340px;
    background-position:center;
  }

  .wine-nav{
    top:76px;
  }

  .wine-nav__inner{
    gap:22px;
  }

  .wine-nav a{
    padding:15px 0 13px;
    font-size:.88rem;
  }

  .wine-section,
  .wine-pairing{
    padding:68px 0;
  }

  .wine-premium-card{
    border-radius:22px;
  }

  .wine-premium-card__header{
    min-height:150px;
  }

  .wine-premium-card__grid{
    grid-template-columns:1fr;
    padding:0 22px 30px;
  }

  .wine-premium-card__bottle{
    margin:-72px 0 0;
    text-align:center;
  }

  .wine-premium-card__bottle img{
    max-height:420px;
  }

  .wine-premium-card__content{
    padding-top:0;
  }

  .wine-premium-card__content h3{
    font-size:2.35rem;
  }

  .wine-pairing-list div{
    grid-template-columns:1fr;
    gap:4px;
  }
}

@media(prefers-reduced-motion:reduce){
  .wine-premium-card,
  .wine-nav a{
    transition:none;
  }
}

/* ==========================================================
   VINOS · CORRECCIÓN FINAL DE ALTURAS Y ALINEACIÓN
========================================================== */

.wine-premium-grid{
  align-items:stretch;
}

.wine-premium-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.wine-premium-card__header{
  flex:0 0 170px;
}

.wine-premium-card__grid{
  flex:1;
  align-items:stretch;
  min-height:590px;
}

.wine-premium-card__bottle{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height:560px;
  height:100%;
  margin:0;
  padding:38px 0 0;
}

.wine-premium-card__bottle img{
  display:block;
  width:auto;
  height:500px;
  max-width:100%;
  object-fit:contain;
  object-position:center bottom;
}

.wine-premium-card__content{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:48px 0 14px;
}

.wine-premium-card__content h3{
  min-height:3em;
}

.wine-premium-card__description{
  min-height:5.1em;
}

.wine-premium-card__details{
  margin-top:auto;
}

@media(max-width:620px){
  .wine-premium-card__header{
    flex-basis:150px;
  }

  .wine-premium-card__grid{
    min-height:0;
  }

  .wine-premium-card__bottle{
    min-height:420px;
    padding-top:24px;
  }

  .wine-premium-card__bottle img{
    height:400px;
  }

  .wine-premium-card__content{
    padding-top:10px;
  }

  .wine-premium-card__content h3,
  .wine-premium-card__description{
    min-height:0;
  }
}


/* ==========================================================
   VINOS ESPAÑOLES · ENTORNO PONCHO'S
========================================================== */

.wine-section--spain{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 10%,rgba(185,137,77,.10),transparent 30%),
    var(--cream-2);
}

.wine-section--spain::before{
  content:"";
  position:absolute;
  top:54px;
  right:4%;
  width:360px;
  height:360px;
  background:url("../images/logo-restaurante-ponchos.png") center/contain no-repeat;
  opacity:.025;
  pointer-events:none;
}

.wine-section--spain .container{
  position:relative;
  z-index:1;
}

.wine-section__brand{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  margin-bottom:28px;
  color:var(--gold);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.wine-section__brand img{
  width:46px;
  height:46px;
  object-fit:contain;
  opacity:.88;
}

.wine-section__head--spain{
  padding-bottom:26px;
  border-bottom:1px solid rgba(185,137,77,.20);
}

.wine-style-grid--spain{
  align-items:stretch;
}

.wine-style-card--spain{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  height:100%;
  overflow:hidden;
  border:1px solid rgba(31,58,47,.13);
  background:rgba(255,255,255,.78);
  box-shadow:0 20px 50px rgba(18,33,26,.10);
  transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

.wine-style-card--spain:hover{
  transform:translateY(-4px);
  border-color:rgba(185,137,77,.42);
  box-shadow:0 27px 65px rgba(18,33,26,.15);
}

.wine-style-card__media{
  margin:0;
  overflow:hidden;
  background:#d8c6ad;
}

.wine-style-card--spain .wine-style-card__media img{
  width:100%;
  aspect-ratio:1.42/1;
  object-fit:cover;
  object-position:center;
  transition:transform .4s ease;
}

.wine-style-card--spain:hover .wine-style-card__media img{
  transform:scale(1.025);
}

.wine-style-card__body{
  position:relative;
  display:flex;
  flex:1;
  flex-direction:column;
  min-height:210px;
  padding:34px 32px;
}

.wine-style-card--spain h3{
  margin:.12em 0 .45em;
  padding-right:40px;
  color:var(--green-dark);
  font-size:clamp(1.7rem,2.3vw,2.15rem);
}

.wine-style-card--spain .wine-style-card__body > p:last-of-type{
  margin-bottom:0;
  color:var(--muted);
}

@media(max-width:768px){
  .wine-style-card--spain{
    display:flex;
  }

  .wine-style-card--spain .wine-style-card__media img{
    min-height:0;
    aspect-ratio:1.42/1;
  }

  .wine-style-card--spain .wine-style-card__body{
    min-height:210px;
  }

  .wine-style-card--spain .wine-style-card__mark{
    top:-22px;
    right:22px;
    width:58px;
    height:58px;
  }

  .wine-style-card--spain .wine-style-card__mark img{
    width:34px;
    height:34px;
  }
}

@media(prefers-reduced-motion:reduce){
  .wine-style-card--spain,
  .wine-style-card--spain .wine-style-card__media img{
    transition:none;
  }
}


/* ==========================================================
   VINOS ROSADOS · DISEÑO EDITORIAL PONCHO'S
========================================================== */

.wine-section--roses{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 12%,rgba(206,137,132,.10),transparent 32%),
    var(--cream-2);
}

.wine-section--roses::before{
  content:"";
  position:absolute;
  top:58px;
  right:4%;
  width:340px;
  height:340px;
  background:url("../images/logo-restaurante-ponchos.png") center/contain no-repeat;
  opacity:.022;
  pointer-events:none;
}

.wine-section--roses .container{
  position:relative;
  z-index:1;
}

.wine-section__head--roses{
  margin-bottom:46px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(185,137,77,.18);
}

.wine-style-grid--roses{
  align-items:stretch;
}

.wine-style-card--rose{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  height:100%;
  overflow:hidden;
  border:1px solid rgba(31,58,47,.13);
  border-radius:22px;
  background:rgba(255,255,255,.82);
  box-shadow:0 20px 50px rgba(18,33,26,.10);
  transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

.wine-style-card--rose:hover{
  transform:translateY(-4px);
  border-color:rgba(185,137,77,.42);
  box-shadow:0 27px 65px rgba(18,33,26,.15);
}

.wine-style-card--rose .wine-style-card__media{
  margin:0;
  overflow:hidden;
  background:#dec9c1;
}

.wine-style-card--rose .wine-style-card__media img{
  display:block;
  width:100%;
  aspect-ratio:1.42/1;
  object-fit:cover;
  object-position:center;
  transition:transform .4s ease;
}

.wine-style-card--rose:hover .wine-style-card__media img{
  transform:scale(1.025);
}

.wine-style-card--rose .wine-style-card__body{
  position:relative;
  display:flex;
  flex:1;
  flex-direction:column;
  min-height:220px;
  padding:34px 32px 32px;
}

.wine-style-card--rose h3{
  margin:.12em 0 .45em;
  padding-right:78px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:clamp(1.7rem,2.3vw,2.15rem);
  line-height:1.08;
}

.wine-style-card--rose .wine-style-card__body > p:last-of-type{
  margin-top:auto;
  margin-bottom:0;
  color:var(--muted);
}

.wine-style-card--rose .wine-style-card__mark{
  position:absolute;
  top:-28px;
  right:28px;
  z-index:5;
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  border:1px solid rgba(185,137,77,.20);
  border-radius:50%;
  background:#faf7f1;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.wine-style-card--rose .wine-style-card__mark img{
  width:42px;
  height:42px;
  object-fit:contain;
  opacity:.34;
  transition:opacity .24s ease,transform .24s ease;
}

.wine-style-card--rose:hover .wine-style-card__mark img{
  opacity:.62;
  transform:rotate(-5deg) scale(1.04);
}

@media(max-width:900px){
  .wine-style-grid--roses{
    grid-template-columns:1fr;
  }

  .wine-style-card--rose{
    display:grid;
    grid-template-columns:minmax(260px,.9fr) minmax(0,1.1fr);
  }

  .wine-style-card--rose .wine-style-card__media img{
    height:100%;
    min-height:310px;
    aspect-ratio:auto;
  }

  .wine-style-card--rose .wine-style-card__mark{
    top:24px;
    right:auto;
    left:-34px;
  }

  .wine-style-card--rose h3{
    padding-right:0;
  }
}

@media(max-width:620px){
  .wine-style-card--rose{
    display:flex;
  }

  .wine-style-card--rose .wine-style-card__media img{
    min-height:0;
    aspect-ratio:1.42/1;
  }

  .wine-style-card--rose .wine-style-card__body{
    min-height:200px;
    padding:32px 24px 28px;
  }

  .wine-style-card--rose .wine-style-card__mark{
    top:-25px;
    right:22px;
    left:auto;
    width:58px;
    height:58px;
  }

  .wine-style-card--rose .wine-style-card__mark img{
    width:34px;
    height:34px;
  }

  .wine-style-card--rose h3{
    padding-right:68px;
  }
}

@media(prefers-reduced-motion:reduce){
  .wine-style-card--rose,
  .wine-style-card--rose .wine-style-card__media img,
  .wine-style-card--rose .wine-style-card__mark img{
    transition:none;
  }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer{
  width:100%;
  margin:0;
  border:0;
  background:var(--green);
  color:rgba(255,255,255,.78);
}

.footer-main{
  display:grid;
  grid-template-columns:minmax(280px,1.45fr) repeat(3,minmax(150px,.75fr));
  gap:clamp(40px,6vw,90px);
  padding-top:clamp(64px,8vw,105px);
  padding-bottom:clamp(55px,7vw,90px);
}

.footer-brand{
  max-width:390px;
}

.footer-logo{
  display:inline-block;
  margin-bottom:24px;
}

.footer-logo img{
  display:block;
  width:145px;
  height:auto;
  filter:brightness(0) invert(1);
  opacity:.95;
}

.footer-brand h2,
.footer-column h3{
  margin:0;
  color:var(--white);
}

.footer-brand h2{
  margin-bottom:16px;
  font-family:var(--serif);
  font-size:clamp(1.55rem,2vw,2rem);
  font-weight:500;
  line-height:1.2;
}

.footer-brand p{
  max-width:360px;
  margin:0;
  font-size:.96rem;
  line-height:1.8;
}

.footer-column h3{
  position:relative;
  margin-bottom:24px;
  padding-bottom:13px;
  font-family:var(--serif);
  font-size:1.15rem;
  font-weight:500;
}

.footer-column h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:38px;
  height:1px;
  background:var(--gold);
}

.footer-column ul{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.footer-column a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  transition:
    color .25s ease,
    transform .25s ease;
}

.footer-column li a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.footer-column li a::before{
  content:"";
  width:0;
  height:1px;
  background:var(--gold);
  transition:width .25s ease;
}

.footer-column li a:hover{
  color:var(--white);
}

.footer-column li a:hover::before{
  width:14px;
}

.footer-column address{
  margin:0;
  font-style:normal;
}

.footer-column address p{
  margin:0 0 14px;
  line-height:1.7;
}

.footer-column address a:hover{
  color:var(--gold);
}

.footer-reservation{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  margin-top:14px;
  padding:12px 22px;
  border:1px solid var(--gold);
  border-radius:999px;
  color:var(--white) !important;
  font-weight:700;
  line-height:1;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.footer-reservation:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--green) !important;
  transform:translateY(-2px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.12);
}

.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:76px;
  padding-top:18px;
  padding-bottom:18px;
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.58);
  font-size:.84rem;
}

@media(max-width:980px){
  .footer-main{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-brand{
    max-width:440px;
  }
}

@media(max-width:640px){
  .footer-main{
    grid-template-columns:1fr;
    gap:42px;
    padding-top:58px;
    padding-bottom:55px;
  }

  .footer-brand{
    max-width:none;
  }

  .footer-logo img{
    width:125px;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:5px;
    min-height:90px;
  }
}
/* ==========================================================
   INICIO · CONTACTO / UBICACIÓN
========================================================== */

.home-contact{
  padding:96px 0 110px;
  background:var(--cream-2);
}

.home-contact__heading{
  max-width:760px;
  margin-bottom:46px;
}

.home-contact__heading h2{
  margin:.12em 0 .3em;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:clamp(2.6rem,5vw,4.4rem);
  line-height:1;
}

.home-contact__heading > p:last-child{
  max-width:680px;
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.75;
}

.home-contact__grid{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);
  gap:56px;
  align-items:stretch;
}

.home-contact__info{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:42px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.58);
  box-shadow:var(--shadow);
}

.contact-details{
  display:grid;
  gap:0;
  margin:0;
}

.contact-detail{
  padding:18px 0;
  border-bottom:1px solid rgba(31,58,47,.12);
}

.contact-detail:first-child{
  padding-top:0;
}

.contact-detail:last-child{
  border-bottom:0;
}

.contact-detail__label{
  display:block;
  margin-bottom:6px;
  color:var(--gold);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.contact-detail p{
  margin:0;
  color:var(--ink);
  line-height:1.65;
}

.contact-detail a{
  display:inline-block;
  color:var(--green);
  font-weight:700;
  text-decoration:none;
  transition:color .2s ease;
}

.contact-detail a:hover{
  color:var(--gold);
}

.home-contact__info .actions{
  margin-top:30px;
}

.home-contact__map{
  min-height:480px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--cream);
  box-shadow:var(--shadow);
}

.home-contact__map iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:480px;
  border:0;
}

@media(max-width:900px){
  .home-contact__grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .home-contact__map,
  .home-contact__map iframe{
    min-height:420px;
  }
}

@media(max-width:620px){
  .home-contact{
    padding:68px 0 78px;
  }

  .home-contact__heading{
    margin-bottom:32px;
  }

  .home-contact__heading h2{
    font-size:clamp(2.4rem,11vw,3.2rem);
  }

  .home-contact__info{
    padding:28px 24px;
  }

  .home-contact__info .actions{
    margin-top:24px;
  }

  .home-contact__map,
  .home-contact__map iframe{
    min-height:340px;
  }
}
/* ==========================================================
   CONTACTO · PONCHO'S
========================================================== */

.contact-grid{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);
  gap:clamp(30px,5vw,58px);
  align-items:stretch;
}

/* Tarjetas */
.contact-card{
  min-width:0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.58);
  box-shadow:var(--shadow);
}

/* ==========================================================
   INFORMACIÓN DE CONTACTO
========================================================== */

.contact-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(30px,4vw,48px);
}

.contact-info .eyebrow{
  margin-bottom:10px;
}

.contact-info h2{
  margin:0 0 30px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:500;
  line-height:1.08;
}

/* Dirección */
.contact-address{
  display:flex;
  flex-direction:column;
  gap:3px;
  margin:0 0 25px;
  padding:0 0 24px;
  border-bottom:1px solid rgba(31,58,47,.12);
  color:var(--ink);
  font-style:normal;
  line-height:1.7;
}

/* Teléfono / WhatsApp / Email */
.contact-links{
  display:grid;
}

.contact-links > a{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:17px 0;
  border-bottom:1px solid rgba(31,58,47,.12);
  color:var(--green);
  text-decoration:none;
  transition:
    color .2s ease,
    padding-left .2s ease;
}

.contact-links > a:first-child{
  padding-top:0;
}

.contact-links > a:last-child{
  border-bottom:0;
}

.contact-links strong{
  color:var(--gold);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.contact-links span{
  color:var(--green);
  font-size:1rem;
  font-weight:700;
  line-height:1.45;
}

.contact-links > a:hover{
  padding-left:5px;
}

.contact-links > a:hover span{
  color:var(--gold);
}

/* Botones */
.contact-info .actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

/* ==========================================================
   MAPA
========================================================== */

.map-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:0;
}

.map-card > h2{
  margin:0;
  padding:28px 32px 22px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:clamp(1.6rem,2.5vw,2.15rem);
  font-weight:500;
}

.map-wrapper{
  position:relative;
  flex:1;
  min-height:500px;
  overflow:hidden;
  background:var(--cream);
}

.map-wrapper iframe{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  border:0;
}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:900px){

  .contact-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .contact-info{
    padding:38px;
  }

  .map-wrapper{
    min-height:430px;
  }
}

/* ==========================================================
   MÓVIL
========================================================== */

@media(max-width:620px){

  .contact-grid{
    gap:22px;
  }

  .contact-info{
    padding:28px 24px;
  }

  .contact-info h2{
    margin-bottom:24px;
  }

  .contact-info .actions{
    flex-direction:column;
    align-items:stretch;
    margin-top:25px;
  }

  .contact-info .actions .btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .map-card > h2{
    padding:24px 24px 18px;
  }

  .map-wrapper{
    min-height:350px;
  }
}
/* ==========================================================
   VINOS · PROTECCIÓN DE IMÁGENES
========================================================== */

.wine-style-card__media{
  position:relative;
  overflow:hidden;
  background:#dec9c1;
}

.wine-style-card__media > img{
  display:block;
  width:100%;
  aspect-ratio:1.42 / 1;
  object-fit:cover;
  object-position:center;
}

/* evita mostrar el alt dentro del lienzo si el recurso falla */
.wine-style-card__media > img:not([src]),
.wine-style-card__media > img[src=""]{
  visibility:hidden;
}
.wine-style-card__media {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wine-style-card__media img {
    width: auto;
    height: 90%;
    max-width: 90%;
    object-fit: contain;
}
/* ==========================================================
   VINOS ROSADOS · BOTELLAS TRANSPARENTES SIN RECORTE
========================================================== */

.wine-style-card--rose .wine-style-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
  height:250px;
  padding:12px 20px 10px;
  overflow:hidden;
  background:#dec9c1;
}

.wine-style-card--rose .wine-style-card__media img{
  display:block;
  width:auto;
  height:100%;
  max-width:88%;
  max-height:100%;
  aspect-ratio:auto;
  object-fit:contain;
  object-position:center;
}

/* Anula cualquier regla anterior que fuerce formato 4:3 */
.wine-style-card--rose .wine-style-card__media > img{
  aspect-ratio:auto !important;
}

/* Tablet */
@media(max-width:900px){
  .wine-style-card--rose .wine-style-card__media{
    height:300px;
  }

  .wine-style-card--rose .wine-style-card__media img{
    min-height:0;
    height:92%;
    object-fit:contain;
  }
}

/* Móvil */
@media(max-width:620px){
  .wine-style-card--rose .wine-style-card__media{
    height:240px;
    padding:12px 18px;
  }

  .wine-style-card--rose .wine-style-card__media img{
    width:auto;
    height:100%;
    max-width:90%;
    object-fit:contain;
  }
}
/* ==========================================================
   VINOS · ESPUMOSOS / BOTELLAS COMPLETAS SIN RECORTE
========================================================== */

.wine-style-card--sparkling .wine-style-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
  height:250px;
  padding:14px 20px;
  overflow:hidden;
  background:#dcc9ac;
}

.wine-style-card--sparkling .wine-style-card__media > img{
  display:block;
  width:auto;
  height:92%;
  max-width:88%;
  max-height:100%;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center;
}

/* Tablet */
@media(max-width:900px){
  .wine-style-card--sparkling .wine-style-card__media{
    height:300px;
  }

  .wine-style-card--sparkling .wine-style-card__media > img{
    height:90%;
  }
}

/* Móvil */
@media(max-width:620px){
  .wine-style-card--sparkling .wine-style-card__media{
    height:240px;
    padding:12px 18px;
  }

  .wine-style-card--sparkling .wine-style-card__media > img{
    height:92%;
    max-width:90%;
  }
}
.wine-pairing__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 42%;
  filter:brightness(1.05) contrast(1.04);
}
.wine-pairing__media{
  min-height:560px;
  border-radius:20px;
  overflow:hidden;
}
/* ==========================================================
   CONTACTO · INTRO EDITORIAL
========================================================== */

.contact-intro{
  padding:74px 0 62px;
  background:var(--cream);
}

.contact-intro .breadcrumbs{
  margin-bottom:30px;
  color:var(--muted);
}

.contact-intro .breadcrumbs a:hover{
  color:var(--green);
}

.contact-intro__grid{
  display:grid;

  grid-template-columns:
    minmax(0,1.05fr)
    minmax(0,.95fr);

  align-items:end;

  gap:62px;
}

.contact-intro h1{
  max-width:820px;

  margin:.1em 0 0;

  color:var(--green);

  font-family:var(--serif);

  font-size:
    clamp(3.6rem,7vw,6.5rem);

  line-height:.95;
}

.contact-intro__lead{
  max-width:680px;

  margin:0;

  color:var(--muted);

  font-size:1.14rem;
  line-height:1.75;
}


/* ==========================================================
   CONTACTO · PARALLAX
========================================================== */

.contact-banner{
  position:relative;

  width:100%;
  min-height:480px;

  background-image:
    linear-gradient(
      rgba(12,24,18,.12),
      rgba(12,24,18,.12)
    ),
    url("../images/hero-contacto.webp");

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  background-attachment:fixed;
}


/* pequeña transición hacia el contenido */

.contact-banner + .section{
  padding-top:96px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

  .contact-intro__grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .contact-banner{
    min-height:460px;

    /* fixed da problemas en muchos móviles */
    background-attachment:scroll;
  }

}


@media(max-width:620px){

  .contact-intro{
    padding:52px 0 44px;
  }

  .contact-intro h1{
    font-size:clamp(3rem,14vw,4rem);
  }

  .contact-intro__lead{
    font-size:1rem;
  }

  .contact-banner{
    min-height:340px;
    background-position:center;
  }

  .contact-banner + .section{
    padding-top:68px;
  }

}
/* ==========================================================
   FIX DEFINITIVO · TARJETAS BLOG EN HOME
========================================================== */

#latest-blog-posts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:24px;
}

#latest-blog-posts .blog-card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
  overflow:hidden !important;
}

/* Forzamos EXACTAMENTE la misma altura visual */
#latest-blog-posts .blog-card__image{
  display:block !important;
  width:100% !important;
  height:210px !important;
  min-height:210px !important;
  max-height:210px !important;
  overflow:hidden !important;
  flex:0 0 210px !important;
}

/* La imagen siempre rellena ese marco sin deformarse */
#latest-blog-posts .blog-card__image img{
  display:block !important;
  width:100% !important;
  height:210px !important;
  min-height:210px !important;
  max-height:210px !important;
  object-fit:cover !important;
  object-position:center !important;
}

/* Cuerpo uniforme */
#latest-blog-posts .card-body{
  display:flex !important;
  flex-direction:column !important;
  flex:1 !important;
  min-height:330px !important;
  padding:26px !important;
}

/* Reserva la misma altura para todos los títulos */
#latest-blog-posts .card-body h3{
  min-height:3.4em;
  margin-bottom:16px;
  line-height:1.13;
}

/* Excerpt alineado abajo */
#latest-blog-posts .card-body > p:last-child{
  margin-top:auto;
  min-height:4.8em;
}

@media(max-width:900px){
  #latest-blog-posts{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:620px){
  #latest-blog-posts{
    grid-template-columns:1fr;
  }

  #latest-blog-posts .blog-card__image,
  #latest-blog-posts .blog-card__image img{
    height:220px !important;
    min-height:220px !important;
    max-height:220px !important;
  }

  #latest-blog-posts .blog-card__image{
    flex-basis:220px !important;
  }

  #latest-blog-posts .card-body{
    min-height:auto !important;
  }

  #latest-blog-posts .card-body h3,
  #latest-blog-posts .card-body > p:last-child{
    min-height:auto;
  }
}
/* =========================================================
   CONTACTO · EXTERIOR DE PONCHO'S
========================================================= */

.contact-location{
  padding:80px 0;
  background:var(--cream);
}

.contact-location__image{
  position:relative;
  width:min(1180px,calc(100% - 40px));
  height:clamp(460px,52vw,620px);
  margin:0 auto;
  overflow:hidden;
  border-radius:22px;
  background:var(--green);
  box-shadow:0 24px 60px rgba(23,49,38,.12);
}

/* Foto principal: clase explícita para evitar conflictos con otros <img> */
.contact-location__photo{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Degradado horizontal: legibilidad a la izquierda y foto limpia a la derecha */
.contact-location__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    rgba(12,31,24,.78) 0%,
    rgba(12,31,24,.62) 28%,
    rgba(12,31,24,.30) 52%,
    rgba(12,31,24,.08) 76%,
    rgba(12,31,24,0) 100%
  );
}

/* Contenido centrado verticalmente, sin depender de valores fijos */
.contact-location__content{
  position:absolute;
  z-index:2;
  top:50%;
  left:50%;
  width:min(1100px,calc(100% - 80px));
  padding:0;
  transform:translate(-50%,-50%);
  color:var(--white);
}

.contact-location__content > *{
  max-width:540px;
}

.contact-location__content .eyebrow{
  margin:0 0 14px;
  color:var(--gold);
}

.contact-location__content h2{
  max-width:540px;
  margin:0 0 18px;
  color:var(--white);
  font-family:var(--serif);
  font-size:clamp(2.2rem,4vw,4.4rem);
  font-weight:600;
  line-height:.98;
  letter-spacing:-.025em;
}

.contact-location__content > p:not(.eyebrow){
  max-width:520px;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
  font-size:1.05rem;
  line-height:1.7;
}

.contact-location__content .btn{
  border-color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.10);
  color:var(--white);
}

.contact-location__content .btn:hover{
  border-color:var(--white);
  background:var(--white);
  color:var(--green);
}


/* =========================
   TABLET
========================= */

@media(max-width:900px){
  .contact-location{
    padding:64px 0;
  }

  .contact-location__image{
    width:calc(100% - 32px);
    height:540px;
  }

  .contact-location__content{
    width:calc(100% - 64px);
  }
}


/* =========================
   MÓVIL
========================= */

@media(max-width:700px){
  .contact-location{
    padding:52px 0;
  }

  .contact-location__image{
    width:calc(100% - 28px);
    height:520px;
    border-radius:18px;
  }

  .contact-location__photo{
    object-position:58% center;
  }

  /* En móvil el texto vive abajo, por eso el degradado cambia de dirección */
  .contact-location__overlay{
    background:linear-gradient(
      0deg,
      rgba(12,31,24,.90) 0%,
      rgba(12,31,24,.68) 42%,
      rgba(12,31,24,.25) 72%,
      rgba(12,31,24,.06) 100%
    );
  }

  .contact-location__content{
    top:auto;
    bottom:34px;
    left:50%;
    width:calc(100% - 48px);
    transform:translateX(-50%);
  }

  .contact-location__content > *{
    max-width:500px;
  }

  .contact-location__content h2{
    max-width:500px;
    font-size:clamp(2.35rem,11vw,3.5rem);
    line-height:.96;
    letter-spacing:-.02em;
  }

  .contact-location__content > p:not(.eyebrow){
    max-width:440px;
    margin-bottom:24px;
    font-size:1rem;
  }
}

@media(max-width:420px){
  .contact-location__image{
    height:500px;
  }

  .contact-location__content{
    bottom:28px;
  }

  .contact-location__content h2{
  font-size:clamp(2.15rem,3.7vw,4.1rem);
}
}
/* ==========================================================
   CARTA · GUÍA PREMIUM DE PUNTOS DE COCCIÓN
========================================================== */

.cooking-guide{
  position:relative;
  padding:92px 0 36px;
}


/* Cabecera */

.cooking-guide .menu-section__heading{
  max-width:900px;
  margin-bottom:48px;
}

.cooking-guide__lead{
  max-width:720px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.75;
}


/* Layout principal */

.cooking-guide__layout{
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);
  align-items:start;
  gap:64px;
}


/* ======================================
   IMAGEN
====================================== */

.cooking-guide__media{
  position:sticky;
  top:180px;
  margin:0;
}

.cooking-guide__image{
  position:relative;
  overflow:hidden;

  padding:16px;

  border:1px solid rgba(185,137,77,.28);
  border-radius:22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.82),
      rgba(238,226,209,.70)
    );

  box-shadow:
    0 24px 60px rgba(16,38,29,.12);
}


/* pequeño marco interior */

.cooking-guide__image::before{
  content:"";
  position:absolute;
  inset:8px;

  border:1px solid rgba(185,137,77,.18);
  border-radius:16px;

  pointer-events:none;
}


.cooking-guide__image img{
  display:block;
  width:100%;
  height:auto;

  border-radius:12px;

  filter:
    saturate(.92)
    contrast(.98);
}


.cooking-guide__media figcaption{
  margin-top:14px;

  color:var(--muted);

  font-family:var(--serif);
  font-size:.88rem;
  font-style:italic;

  text-align:center;
}


/* ======================================
   NIVELES DE COCCIÓN
====================================== */

.cooking-guide__content{
  display:grid;
}


.cooking-level{
  display:grid;
  grid-template-columns:58px 1fr;
  align-items:start;
  gap:20px;

  padding:24px 0;

  border-bottom:
    1px solid rgba(31,58,47,.12);
}


.cooking-level:first-child{
  padding-top:4px;
}


/* número editorial */

.cooking-level__number{
  display:grid;
  place-items:center;

  width:48px;
  height:48px;

  border:
    1px solid rgba(185,137,77,.34);

  border-radius:50%;

  color:var(--gold);

  font-family:var(--serif);
  font-size:.85rem;
  font-weight:700;

  background:
    rgba(255,255,255,.42);
}


/* títulos */

.cooking-level h3{
  margin:0 0 6px;

  color:var(--green-dark);

  font-family:var(--serif);
  font-size:1.35rem;
  line-height:1.2;
}


/* descripción */

.cooking-level p{
  margin:0 0 8px;

  color:var(--muted);
  line-height:1.65;
}


/* temperatura + tiempo */

.cooking-level__meta{
  display:inline-block;

  color:var(--gold);

  font-size:.82rem;
  font-weight:800;
  letter-spacing:.025em;
}


/* ======================================
   TABLET
====================================== */

@media(max-width:900px){

  .cooking-guide__layout{
    grid-template-columns:1fr;
    gap:42px;
  }

  .cooking-guide__media{
    position:relative;
    top:auto;

    width:min(100%,560px);

    margin-inline:auto;
  }

}


/* ======================================
   MÓVIL
====================================== */

@media(max-width:620px){

  .cooking-guide{
    padding-top:68px;
  }

  .cooking-guide .menu-section__heading{
    margin-bottom:34px;
  }

  .cooking-guide__layout{
    gap:34px;
  }

  .cooking-guide__image{
    padding:10px;
    border-radius:18px;
  }

  .cooking-level{
    grid-template-columns:42px 1fr;
    gap:14px;

    padding:20px 0;
  }

  .cooking-level__number{
    width:38px;
    height:38px;

    font-size:.72rem;
  }

  .cooking-level h3{
    font-size:1.18rem;
  }

  .cooking-level__meta{
    font-size:.78rem;
  }

}

/* ==========================================================
   PONCHO'S · VOLVER ARRIBA
   Componente único, sin reglas duplicadas
========================================================== */

.ponchos-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;

  display:grid;
  place-items:center;

  width:64px;
  height:64px;

  overflow:visible;

  border:1px solid rgba(185,137,77,.32);
  border-radius:50%;

  background:rgba(247,242,232,.94);

  box-shadow:
    0 12px 30px rgba(16,38,29,.16);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  text-decoration:none;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.ponchos-top img{
  display:block;
  width:46px;
  height:46px;
  object-fit:contain;
  transition:transform .25s ease;
}

/* El span queda por compatibilidad con el HTML,
   pero la flecha definitiva se dibuja con pseudo-elementos. */
.ponchos-top__arrow{
  display:none !important;
}

/* Chevron principal */
.ponchos-top::before{
  content:"";

  position:absolute;
  left:50%;
  top:-24px;

  width:10px;
  height:10px;

  border-top:1.5px solid var(--gold);
  border-left:1.5px solid var(--gold);

  transform:
    translateX(-50%)
    rotate(45deg);

  opacity:.9;

  animation:
    ponchosChevron 2.2s
    ease-in-out infinite;

  pointer-events:none;
}

/* Segundo chevron */
.ponchos-top::after{
  content:"";

  position:absolute;
  left:50%;
  top:-16px;

  width:7px;
  height:7px;

  border-top:1px solid var(--gold);
  border-left:1px solid var(--gold);

  transform:
    translateX(-50%)
    rotate(45deg);

  opacity:.35;

  animation:
    ponchosChevronSmall 2.2s
    ease-in-out infinite;

  pointer-events:none;
}

.ponchos-top:hover{
  transform:
    translateY(-3px)
    scale(1.03);

  background:var(--white);

  box-shadow:
    0 16px 36px rgba(16,38,29,.20);
}

.ponchos-top:hover img{
  transform:scale(1.06);
}

.ponchos-top:focus-visible{
  outline:3px solid rgba(185,137,77,.38);
  outline-offset:4px;
}

@keyframes ponchosChevron{
  0%,
  100%{
    transform:
      translateX(-50%)
      translateY(2px)
      rotate(45deg);
    opacity:.55;
  }

  50%{
    transform:
      translateX(-50%)
      translateY(-3px)
      rotate(45deg);
    opacity:1;
  }
}

@keyframes ponchosChevronSmall{
  0%,
  100%{
    transform:
      translateX(-50%)
      translateY(2px)
      rotate(45deg);
    opacity:.18;
  }

  50%{
    transform:
      translateX(-50%)
      translateY(-2px)
      rotate(45deg);
    opacity:.55;
  }
}

@media(max-width:620px){
  .ponchos-top{
    right:16px;
    bottom:18px;
    width:54px;
    height:54px;
  }

  .ponchos-top img{
    width:40px;
    height:40px;
  }

  .ponchos-top::before{
    top:-21px;
  }

  .ponchos-top::after{
    top:-14px;
  }
}


/* ==========================================================
   CONTACTO · MAPA + STREET VIEW
   Estructura:
   .contact-grid
     ├─ .contact-info
     └─ .contact-visit
          ├─ mapa
          └─ Street View
========================================================== */

/*
  El CSS original de Contacto ya define .contact-grid y
  .contact-card. Estas reglas son la única ampliación necesaria
  para las dos tarjetas visuales.
*/

.contact-grid{
  grid-template-columns:
    minmax(300px,.72fr)
    minmax(0,1.28fr);

  gap:32px;
  align-items:stretch;
}

/* La columna visual contiene dos tarjetas del mismo ancho. */
.contact-visit{
  display:grid !important;

  grid-template-columns:
    repeat(2,minmax(0,1fr)) !important;

  gap:24px !important;
  align-items:stretch !important;

  min-width:0;
  height:100%;
}

/* Mapa y Street View usan exactamente la misma estructura. */
.contact-visit__card{
  display:grid !important;
  grid-template-rows:138px minmax(390px,1fr) !important;

  min-width:0;
  height:100% !important;
  min-height:528px;

  padding:0 !important;
  overflow:hidden;

  border:1px solid rgba(185,137,77,.22);
  border-radius:22px;

  background:rgba(255,255,255,.72);

  box-shadow:
    0 18px 44px rgba(16,38,29,.09);
}

/* Cabeceras idénticas aunque un título ocupe dos líneas. */
.contact-visit__heading{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;

  gap:16px;

  width:100%;
  min-width:0;
  height:138px !important;
  min-height:138px !important;

  padding:22px 24px !important;

  overflow:hidden;

  border-bottom:1px solid rgba(185,137,77,.14);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.96),
      rgba(247,242,232,.88)
    );
}

.contact-visit__heading > div{
  min-width:0;
}

.contact-visit__heading .eyebrow{
  margin:0 0 5px;
}

.contact-visit__heading h2{
  margin:0 !important;

  color:var(--green);

  font-family:var(--serif);
  font-size:clamp(1.25rem,1.55vw,1.55rem);
  line-height:1.22 !important;
}

.contact-visit__badge{
  flex:0 0 auto;

  padding:7px 11px;

  border:1px solid rgba(185,137,77,.25);
  border-radius:999px;

  background:rgba(247,242,232,.82);
  color:var(--green);

  font-size:.75rem;
  font-weight:800;
  white-space:nowrap;
}

/*
  Anula el min-height:500px de .map-wrapper original.
  Ambos iframes quedan exactamente a la misma altura.
*/
.contact-visit__frame,
.map-wrapper.contact-visit__frame{
  position:relative !important;

  width:100% !important;
  height:100% !important;

  min-height:390px !important;
  max-height:none !important;

  overflow:hidden;
  background:#e9e2d6;
}

.contact-visit__frame iframe,
.map-wrapper.contact-visit__frame iframe{
  position:absolute !important;
  inset:0 !important;

  display:block;

  width:100% !important;
  height:100% !important;

  min-height:0 !important;

  border:0;
}

/* Marca de agua discreta solo sobre Street View. */
.contact-visit__card--streetview{
  position:relative;
}

.contact-visit__card--streetview::after{
  content:"";

  position:absolute;
  right:18px;
  bottom:16px;

  width:62px;
  height:62px;

  background:
    url("../images/logo-restaurante-ponchos.png")
    center/contain no-repeat;

  opacity:.07;
  pointer-events:none;
}


/* Tablet: datos arriba; mapa y visita virtual aún en dos columnas. */
@media(max-width:980px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .contact-info{
    height:auto;
  }

  .contact-visit{
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;
  }

  .contact-visit__card{
    grid-template-rows:120px 390px !important;
    min-height:510px;
  }

  .contact-visit__heading{
    height:120px !important;
    min-height:120px !important;
  }
}


/* Móvil: las tres piezas se apilan. */
@media(max-width:700px){
  .contact-visit{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .contact-visit__card{
    grid-template-rows:auto 350px !important;
    min-height:0;
    height:auto !important;

    border-radius:16px;
  }

  .contact-visit__heading{
    height:auto !important;
    min-height:104px !important;

    padding:18px !important;
  }

  .contact-visit__badge{
    display:none;
  }

  .contact-visit__frame,
  .map-wrapper.contact-visit__frame{
    height:350px !important;
    min-height:350px !important;
  }
}


/* ==========================================================
   ACCESIBILIDAD · MOVIMIENTO REDUCIDO
========================================================== */

@media(prefers-reduced-motion:reduce){
  .ponchos-top,
  .ponchos-top img{
    transition:none;
  }

  .ponchos-top::before,
  .ponchos-top::after{
    animation:none;
  }
}

/* ==========================================================
   RESERVAS · INTRO EDITORIAL
   Misma lógica visual que la página de vinos
========================================================== */

.reservation-intro{
  padding:74px 0 62px;
  background:var(--cream);
}

.reservation-intro .breadcrumbs{
  margin-bottom:30px;
  color:var(--muted);
}

.reservation-intro .breadcrumbs a{
  color:inherit;
  text-decoration:none;
}

.reservation-intro .breadcrumbs a:hover{
  color:var(--green);
}

.reservation-intro__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  align-items:end;
  gap:62px;
}

.reservation-intro h1{
  max-width:820px;
  margin:.1em 0 0;
  color:var(--green);
  font-family:var(--serif);
  font-size:clamp(3.6rem,7vw,6.5rem);
  line-height:.95;
}

.reservation-intro__lead{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:1.14rem;
  line-height:1.75;
}


/* ==========================================================
   RESERVAS · BANNER PARALLAX 480PX
   Replica el patrón de .wine-banner
========================================================== */

.reservation-banner{
  width:100%;
  min-height:480px;

  background-image:
    linear-gradient(
      rgba(12,24,18,.14),
      rgba(12,24,18,.14)
    ),
    url("../images/reserva-ponchos.webp");

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}


/* ==========================================================
   RESERVAS · RESPONSIVE
========================================================== */

@media(max-width:900px){

  .reservation-intro__grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .reservation-banner{
    min-height:460px;
    background-attachment:scroll;
    background-position:center;
  }
}

@media(max-width:620px){

  .reservation-intro{
    padding:52px 0 44px;
  }

  .reservation-intro h1{
    font-size:3rem;
  }

  .reservation-banner{
    min-height:340px;
    background-position:58% center;
  }
}
/* ==========================================================
   RESERVAS · ICONOS DE CONTACTO
========================================================== */

.reservation-contact a{
  position:relative;
}


/* Teléfono */

.reservation-contact a[href^="tel:"] strong::before{
  content:"";

  display:inline-block;

  width:17px;
  height:17px;

  margin-right:8px;

  vertical-align:-3px;

  background-color:var(--green);

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.61 21 3 13.39 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.61 21 3 13.39 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}


/* WhatsApp */

.reservation-contact a[href*="wa.me"] strong::before{
  content:"";

  display:inline-block;

  width:18px;
  height:18px;

  margin-right:8px;

  vertical-align:-4px;

  background-color:#25d366;

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a9.84 9.84 0 00-9.84 9.84c0 1.73.45 3.42 1.3 4.91L2 22l5.39-1.41A9.82 9.82 0 1012 2zm0 17.86a8 8 0 01-4.09-1.12l-.29-.17-3.2.84.85-3.12-.19-.32A8.02 8.02 0 1112 19.86zm4.4-6.01c-.24-.12-1.43-.71-1.65-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.69 2.58 4.1 3.62.57.25 1.02.39 1.37.5.58.18 1.1.16 1.51.1.46-.07 1.43-.59 1.63-1.15.2-.56.2-1.04.14-1.14-.06-.1-.22-.16-.46-.28z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a9.84 9.84 0 00-9.84 9.84c0 1.73.45 3.42 1.3 4.91L2 22l5.39-1.41A9.82 9.82 0 1012 2zm0 17.86a8 8 0 01-4.09-1.12l-.29-.17-3.2.84.85-3.12-.19-.32A8.02 8.02 0 1112 19.86zm4.4-6.01c-.24-.12-1.43-.71-1.65-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.69 2.58 4.1 3.62.57.25 1.02.39 1.37.5.58.18 1.1.16 1.51.1.46-.07 1.43-.59 1.63-1.15.2-.56.2-1.04.14-1.14-.06-.1-.22-.16-.46-.28z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* ==========================================================
   INICIO · UBICACIÓN + VISITA VIRTUAL
========================================================== */

.home-contact__experience{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}

.location-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(185,137,77,.22);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 44px rgba(16,38,29,.10);
}

.location-card__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px 18px;
  border-bottom:1px solid rgba(185,137,77,.14);
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(247,242,232,.88));
}

.location-card__eyebrow{
  margin:0 0 4px;
  color:var(--gold);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.location-card__head h3{
  margin:0;
  color:var(--green);
  font-family:var(--serif);
  font-size:1.35rem;
  line-height:1.15;
}

.location-card__badge{
  flex:0 0 auto;
  padding:7px 11px;
  border:1px solid rgba(185,137,77,.24);
  border-radius:999px;
  color:var(--green);
  background:rgba(247,242,232,.78);
  font-size:.75rem;
  font-weight:800;
  white-space:nowrap;
}

.location-card__frame{
  position:relative;
  min-height:300px;
  background:#e9e2d6;
}

.location-card--streetview .location-card__frame{
  min-height:360px;
}

.location-card iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:inherit;
  border:0;
}

.location-card--streetview::after{
  content:"";
  position:absolute;
  right:20px;
  bottom:18px;
  width:64px;
  height:64px;
  background:url("/assets/images/logo-restaurante-ponchos.png") center/contain no-repeat;
  opacity:.08;
  pointer-events:none;
}

@media(min-width:1050px){
  .home-contact__grid{
    grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);
    align-items:start;
    gap:54px;
  }

  .home-contact__experience{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

  .location-card__frame,
  .location-card--streetview .location-card__frame{
    min-height:390px;
  }
}

@media(max-width:760px){
  .location-card{
    border-radius:16px;
  }

  .location-card__head{
    padding:18px 18px 15px;
  }

  .location-card__head h3{
    font-size:1.18rem;
  }

  .location-card__badge{
    display:none;
  }

  .location-card__frame{
    min-height:320px;
  }

  .location-card--streetview .location-card__frame{
    min-height:360px;
  }
}

/* ==========================================================
   INICIO · ICONOS TELÉFONO / WHATSAPP
   Se aplica al bloque .home-contact sin tocar el HTML
========================================================== */

/* Teléfono */
.home-contact .contact-detail a[href^="tel:"]::before{
  content:"";
  display:inline-block;
  width:17px;
  height:17px;
  margin-right:8px;
  vertical-align:-3px;
  background-color:var(--green);

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.61 21 3 13.39 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.61 21 3 13.39 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* WhatsApp */
.home-contact .contact-detail a[href*="wa.me"]::before{
  content:"";
  display:inline-block;
  width:18px;
  height:18px;
  margin-right:8px;
  vertical-align:-4px;
  background-color:#25d366;

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a9.84 9.84 0 00-9.84 9.84c0 1.73.45 3.42 1.3 4.91L2 22l5.39-1.41A9.82 9.82 0 1012 2zm0 17.86a8 8 0 01-4.09-1.12l-.29-.17-3.2.84.85-3.12-.19-.32A8.02 8.02 0 1112 19.86zm4.4-6.01c-.24-.12-1.43-.71-1.65-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.69 2.58 4.1 3.62.57.25 1.02.39 1.37.5.58.18 1.1.16 1.51.1.46-.07 1.43-.59 1.63-1.15.2-.56.2-1.04.14-1.14-.06-.1-.22-.16-.46-.28z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a9.84 9.84 0 00-9.84 9.84c0 1.73.45 3.42 1.3 4.91L2 22l5.39-1.41A9.82 9.82 0 1012 2zm0 17.86a8 8 0 01-4.09-1.12l-.29-.17-3.2.84.85-3.12-.19-.32A8.02 8.02 0 1112 19.86zm4.4-6.01c-.24-.12-1.43-.71-1.65-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.69 2.58 4.1 3.62.57.25 1.02.39 1.37.5.58.18 1.1.16 1.51.1.46-.07 1.43-.59 1.63-1.15.2-.56.2-1.04.14-1.14-.06-.1-.22-.16-.46-.28z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* Mantiene icono y número alineados */
.home-contact .contact-detail a[href^="tel:"],
.home-contact .contact-detail a[href*="wa.me"]{
  display:inline-flex;
  align-items:center;
}
