/* ============================================================
   EL BATÁN DEL TAYTA — tokens y estilos base
   ============================================================ */

:root{
  /* paleta extraída directamente de la carta física (comida + bebidas) */
  --cream:        #EAD9BC;   /* pergamino cálido — fondo principal, del papel de la carta */
  --cream-deep:   #DEC7A8;   /* pergamino más tostado — secciones alternas */
  --paper:        #F5EAD3;   /* superficie de cards, más clara que el fondo */
  --ink:          #17130F;   /* negro tinta cálido — franjas de categoría, texto fuerte */
  --ink-soft:     #362A1F;
  --stone:        #6E5F52;
  --stone-light:  #A8998A;
  --terracotta:       #C76E29;  /* naranja fuego — acento primario, tal cual la carta */
  --terracotta-deep:  #8D5835;  /* acento oscuro / hover */
  --terracotta-pale:  #E8C79A;  /* acento claro sobre fondos oscuros */
  --olive:            #7C8557;  /* verde salvia — de las ilustraciones de hoja de la carta de bebidas */
  --olive-deep:       #565D3C;
  --line:         rgba(23,19,15,0.14);
  --line-strong:  rgba(23,19,15,0.28);

  --font-display: "Fraunces", "Georgia", serif;
  --font-impact:  "Anton", "Arial Narrow", sans-serif;
  --font-body:    "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mark:    "Space Mono", "Courier New", monospace;

  --container: 1180px;
  --radius-sm: 3px;
  --radius-md: 6px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(199,110,41,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 15%, rgba(23,19,15,0.10) 0%, transparent 55%),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* grano sutil tipo piedra, superpuesto a todo el sitio */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--font-impact);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:16px; height:16px;
  flex-shrink:0;
  background: var(--terracotta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2Zm0 5.4c1.5 0 2.7 1.2 2.7 2.7 0 1-.5 1.8-1.3 2.3.6.4 1 1.1 1 1.9 0 1.3-1.1 2.4-2.4 2.4s-2.4-1.1-2.4-2.4c0-.8.4-1.5 1-1.9-.8-.5-1.3-1.3-1.3-2.3 0-1.5 1.2-2.7 2.7-2.7ZM4 9l4.2 1.8M20 9l-4.2 1.8M4 15.5l4.6-1.3M20 15.5l-4.6-1.3M12 19.5V22' stroke='%23000' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2Zm0 5.4c1.5 0 2.7 1.2 2.7 2.7 0 1-.5 1.8-1.3 2.3.6.4 1 1.1 1 1.9 0 1.3-1.1 2.4-2.4 2.4s-2.4-1.1-2.4-2.4c0-.8.4-1.5 1-1.9-.8-.5-1.3-1.3-1.3-2.3 0-1.5 1.2-2.7 2.7-2.7ZM4 9l4.2 1.8M20 9l-4.2 1.8M4 15.5l4.6-1.3M20 15.5l-4.6-1.3M12 19.5V22' stroke='%23000' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin:0;
  color: var(--ink);
}
h2{ font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; }
h3{ font-size: 20px; font-weight: 600; }

.section{ padding: 96px 0; }
.section--tight{ padding: 72px 0; }
.section-head{
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head p{
  margin: 14px 0 0;
  color: var(--stone);
  font-size: 16px;
}

.section-head-row{
  display:flex;
  align-items:center;
  gap: 24px;
  margin-bottom: 48px;
}
.vert-label{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-impact);
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 18px 8px;
  border-radius: var(--radius-sm);
  flex-shrink:0;
}
@media (max-width: 680px){
  .vert-label{ display:none; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn--primary{
  background: var(--terracotta);
  color: var(--paper);
}
.btn--primary:hover{ background: var(--terracotta-deep); }
.btn--ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover{ background: var(--ink); color: var(--cream); }
.btn--ghost-light{
  background: transparent;
  border-color: rgba(234,217,188,0.4);
  color: var(--cream);
}
.btn--ghost-light:hover{ background: rgba(234,217,188,0.12); border-color: var(--cream); }
.btn--block{ width:100%; }
.btn[disabled]{ opacity:.4; cursor:not-allowed; }

/* la piedra — forma insignia, usada como marco de fotos y divisores */
.stone-frame{
  clip-path: url(#batanClip);
  -webkit-clip-path: url(#batanClip);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* ============================== HEADER ============================== */
.site-header{
  position: sticky;
  top:0;
  z-index: 40;
  background: transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(234,217,188,0.94);
  backdrop-filter: blur(6px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
}
.brand span{ color: var(--terracotta); }
.brand-logo{
  height: 64px;
  width: auto;
  transition: height .25s ease;
}
.site-header.is-scrolled .brand-logo{ height: 46px; }

.footer-brand .brand-logo{ height: 56px; }
.brand--chip{
  background: var(--cream);
  display: inline-flex;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
}

.nav-links{
  display:flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a{
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--terracotta);
  transition: width .2s ease;
}
.nav-links a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:14px; }
.lang-toggle{
  font-family: var(--font-mark);
  font-size: 12px;
  color: var(--stone);
  display:flex; gap:4px; align-items:center;
}
.lang-toggle button{
  background:none; border:none; color: var(--stone-light); font-family:inherit; font-size:12px;
}
.lang-toggle button.is-active{ color: var(--ink); text-decoration: underline; text-underline-offset:3px; }

.nav-toggle{ display:none; background:none; border:none; padding:4px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; }

/* ============================== HERO ============================== */
.hero{
  position:relative;
  padding: 90px 0 70px;
  overflow:hidden;
  background: var(--ink);
}
.hero::before{
  content:"";
  position:absolute;
  top:-120px; right:-140px;
  width:520px; height:520px;
  background: radial-gradient(circle, rgba(199,110,41,0.35) 0%, transparent 70%);
  opacity:.8;
  pointer-events:none;
}
.hero .wrap{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items:center;
}
.hero-copy .eyebrow{ margin-bottom: 22px; color: var(--terracotta-pale); }
.hero-copy .eyebrow::before{ background: var(--terracotta-pale); }
.hero-copy h1{
  font-size: clamp(38px, 5.4vw, 64px);
  max-width: 620px;
  color: var(--cream);
}
.hero-heading{
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-heading-logo{
  height: 1em;
  width: auto;
  flex-shrink: 0;
}
.hero-copy h1 em{
  font-style: italic;
  color: var(--terracotta-pale);
}
.hero-copy p{
  margin: 24px 0 34px;
  font-size: 17px;
  color: rgba(234,217,188,.72);
  max-width: 460px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-ctas .btn--ghost{
  border-color: rgba(234,217,188,.4);
  color: var(--cream);
}
.hero-ctas .btn--ghost:hover{ background: rgba(234,217,188,.12); border-color: var(--cream); color: var(--cream); }
.hero-stats{
  display:flex;
  gap: 36px;
  margin-top: 48px;
}
.hero-stats div strong{
  display:block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--terracotta-pale);
}
.hero-stats div span{
  font-size: 12px;
  color: rgba(234,217,188,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-visual{ position:relative; aspect-ratio: 1 / 1.08; width:100%; }
.hero-visual .stone-frame{
  position:absolute;
  background: linear-gradient(150deg, var(--terracotta) 0%, var(--terracotta-deep) 65%);
}
.hero-visual .stone-frame.f1{
  width: 62%; height: 62%;
  top: 2%; left: 6%;
}
.hero-visual .stone-frame.f2{
  width: 48%; height: 48%;
  bottom: 0; right: 0;
  background: linear-gradient(150deg, var(--cream-deep), var(--terracotta-deep));
}
.hero-visual .badge{
  position:absolute;
  top: 30px; right: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-mark);
  font-size: 12px;
  display:flex; align-items:center; gap:8px;
  box-shadow: 0 10px 30px rgba(33,30,26,0.08);
}
.hero-visual .badge .dot{ width:7px; height:7px; border-radius:50%; background:#7A9A5A; }

/* stone content inside frames (icons as placeholder for photography) */
.stone-frame .stone-icon{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color: rgba(253,251,245,0.9);
}
.stone-frame .stone-icon svg{ width:34%; height:34%; }

/* ============================== MARQUEE STRIP ============================== */
.strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow:hidden;
  background: var(--cream-deep);
}
.strip-track{
  display:flex;
  width: max-content;
  animation: scroll-strip 28s linear infinite;
}
.strip-track span{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
  padding: 16px 40px;
  white-space:nowrap;
}
.strip-track span::after{ content:"—"; margin-left:40px; color: var(--terracotta); font-style:normal; }
@keyframes scroll-strip{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .strip-track{ animation: none; }
}

/* ---- carrusel de imágenes (placeholder de fotografía real) ---- */
.gallery-strip{
  overflow:hidden;
  background: var(--cream);
  padding: 6px 0;
}
.gallery-track{
  display:flex;
  gap: 18px;
  width: max-content;
  animation: scroll-strip 38s linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .gallery-track{ animation: none; }
}
.gallery-item{
  position: relative;
  width: 230px;
  height: 150px;
  border-radius: 10px;
  flex-shrink: 0;
  display:flex;
  align-items:flex-end;
  padding: 14px;
  color: var(--paper);
  overflow:hidden;
}
.gallery-item.tone-a{ background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep)); }
.gallery-item.tone-b{ background: linear-gradient(150deg, var(--ink-soft), var(--ink)); }
.gallery-item svg{
  position:absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  opacity:.55;
}
.gallery-item span{
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* ============================== MENU ============================== */
.menu-filters{
  display:flex;
  flex-wrap:wrap;
  gap: 24px 32px;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter-group{ display:flex; flex-direction:column; gap:10px; }
.filter-group label{
  font-family: var(--font-mark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
}
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  border:1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all .15s ease;
}
.chip:hover{ border-color: var(--terracotta); }
.chip.is-active{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.chip.is-active.tag-cat{ background: var(--terracotta); border-color: var(--terracotta); }

.price-select{
  border:1px solid var(--line-strong);
  background: var(--paper);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-soft);
}

.menu-count{
  font-family: var(--font-mark);
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 20px;
}

.dish-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.dish-card{
  cursor:pointer;
  transition: transform .18s ease;
}
.dish-card:hover{ transform: translateY(-4px); }
.dish-photo-wrap{
  position:relative;
  height: 200px;
  margin-bottom: 18px;
}
.dish-photo{
  position:relative;
  height: 100%;
  overflow:hidden;
}
.dish-photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.dish-photo .stone-icon svg{ width:30%; height:30%; }
.dish-top{ display:flex; justify-content:space-between; gap:12px; margin-bottom:6px; }
.dish-top h3{ font-size:18px; }
.dish-price{ font-family: var(--font-mark); font-size:15px; color: var(--terracotta-deep); white-space:nowrap; }
.dish-price small{ font-weight:400; color: var(--stone); font-size:12px; }
.dish-half-price{ font-family: var(--font-mark); font-size:12px; color: var(--stone); margin: -2px 0 8px; }
.dish-desc{ font-size:14px; color: var(--stone); margin: 0 0 10px; line-height:1.55; }
.dish-tags{ display:flex; gap:6px; flex-wrap:wrap; }
.dish-tags span{
  font-size: 11px;
  color: var(--stone);
  border:1px solid var(--line);
  padding: 3px 9px;
  border-radius: 999px;
}
.empty-state{
  text-align:center;
  padding: 60px 20px;
  color: var(--stone);
  display:none;
}
.empty-state.is-visible{ display:block; }
.empty-state button{ margin-top:14px; }

/* ---- modal ---- */
.modal-overlay{
  position: fixed; inset:0;
  background: rgba(33,30,26,0.55);
  display:none;
  align-items:center; justify-content:center;
  padding: 24px;
  z-index: 100;
}
.modal-overlay.is-open{ display:flex; }
.modal{
  background: var(--paper);
  max-width: 760px;
  width:100%;
  max-height: 88vh;
  overflow:auto;
  border-radius: var(--radius-md);
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.modal-visual{
  background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep));
  min-height: 260px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.modal-visual img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.modal-visual svg{ width:80px; height:80px; color: rgba(253,251,245,.9); }
.modal-body{ padding: 32px; position:relative; }
.modal-close{
  position:absolute; top:16px; right:16px;
  background:none; border:none; font-size:20px; color: var(--stone);
  width:32px; height:32px;
}
.modal-body .eyebrow{ margin-bottom:14px; }
.modal-body h3{ font-size:24px; margin-bottom:8px; }
.modal-price{ font-family: var(--font-mark); color: var(--terracotta-deep); font-size:18px; margin-bottom:16px; }
.modal-body p{ color: var(--ink-soft); font-size:14px; line-height:1.7; margin-bottom:18px; }
.modal-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:22px; }
.modal-meta span{ font-size:12px; border:1px solid var(--line); padding:4px 10px; border-radius:999px; color:var(--stone); }

.modal-pedido-controls{ display:flex; align-items:center; gap:14px; }
.modal-pedido-controls .btn{ flex:1; }
.modal-pedido-controls.is-added .btn{ background: var(--ok, #4F6B3A); }
.modal-pedido-nota{ font-size:12px; color: var(--stone); margin: 10px 0 0; line-height:1.5; }

/* ============================== RESERVAS ============================== */
.reservas{
  background: var(--ink);
  color: var(--cream);
}
.reservas .eyebrow{ color: var(--terracotta-pale); }
.reservas .eyebrow::before{ background: var(--terracotta-pale); }
.reservas .section-head p{ color: rgba(234,217,188,0.65); }
.reservas .section-head h2{ color: var(--cream); }

.reservas-grid{
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.reservas-action{
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-md);
  display:flex;
  flex-direction:column;
}
.reservas-side blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height:1.5;
  border-left: 2px solid var(--terracotta);
  padding-left: 22px;
  margin: 32px 0;
  color: var(--cream);
}
.reservas-side cite{
  display:block;
  font-style:normal;
  font-family: var(--font-mark);
  font-size:12px;
  color: rgba(234,217,188,0.55);
  margin-top:10px;
}
.reservas-facts{ display:flex; flex-direction:column; gap:16px; margin-top: 36px; }
.reservas-facts div{ display:flex; gap:12px; align-items:flex-start; font-size:14px; color: rgba(234,217,188,0.75); }
.reservas-facts svg{ width:18px; height:18px; flex-shrink:0; color: var(--terracotta-pale); margin-top:2px; }

.pedido-card{
  padding: 30px 32px 26px;
  border-bottom: 1px solid var(--line);
}
.pedido-card h3{ font-size: 19px; margin-bottom: 8px; }
.pedido-card > p{ color: var(--stone); font-size: 13.5px; line-height:1.55; margin: 0 0 22px; }

.pedido-form{ margin-bottom: 4px; }
.pedido-form .form-field{ margin-bottom: 14px; }
.pedido-form-row{ display:flex; align-items:flex-end; gap:14px; }
.pedido-form-row .btn{ margin-bottom: 1px; white-space:nowrap; }

.stepper{ display:flex; align-items:center; gap:14px; }
.stepper button{
  width:34px; height:34px;
  border:1px solid var(--line-strong);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-size:16px;
  color: var(--ink);
}
.stepper button:hover{ border-color: var(--terracotta); }
.stepper span{ font-family: var(--font-mark); font-size:16px; min-width:16px; text-align:center; }

.pedido-lista{ margin: 18px 0 4px; display:flex; flex-direction:column; gap:8px; }
.pedido-lista:empty{ margin:0; }
.pedido-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13.5px;
}
.pedido-item-name{ display:flex; gap:8px; align-items:baseline; }
.pedido-item-qty{ font-family: var(--font-mark); color: var(--terracotta-deep); }
.pedido-item-remove{
  background:none; border:none; color: var(--stone);
  font-size: 16px; line-height:1; cursor:pointer; padding: 2px 4px;
}
.pedido-item-remove:hover{ color: var(--danger, #B3432F); }

.pedido-vacio{ font-size:13px; color: var(--stone); margin: 14px 0 0; }
.pedido-vacio.is-hidden{ display:none; }
.pedido-vaciar{
  background:none; border:none; padding:0;
  font-size: 12px; color: var(--stone);
  text-decoration: underline; text-underline-offset: 3px;
  cursor:pointer; margin-top: 10px;
  display:none;
}
.pedido-vaciar.is-visible{ display:inline-block; }

.pedido-personas{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pedido-personas .stepper{ margin-top:6px; }
#personasHint{ margin-left: 14px; }

.whatsapp-card{
  padding: 34px 36px 40px;
  text-align: center;
  display:flex;
  flex-direction: column;
  align-items: center;
}
.whatsapp-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.whatsapp-icon svg{ width: 28px; height: 28px; }
.whatsapp-card h3{ font-size: 22px; margin-bottom: 12px; }
.whatsapp-card p{ color: var(--stone); font-size: 14px; line-height: 1.6; max-width: 340px; margin: 0 0 26px; }
.whatsapp-phone{
  display:block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.whatsapp-phone:hover{ color: var(--ink); }

/* ============================== HISTORIA ============================== */
.historia .wrap{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items:center;
}
.historia-visual{ position:relative; aspect-ratio: 1 / 0.92; width:100%; }
.historia-visual .stone-frame{
  position:absolute;
}
.historia-visual .f1{ width:78%; height:78%; top:0; left:0; background: linear-gradient(160deg, var(--cream-deep), var(--stone-light)); }
.historia-visual .f2{ width:46%; height:46%; bottom:-10px; right:-10px; background: linear-gradient(160deg, var(--terracotta), var(--terracotta-deep)); }
.historia-copy p{ color: var(--ink-soft); margin: 20px 0; font-size:16px; line-height:1.75; }
.historia-copy blockquote{
  font-family: var(--font-display);
  font-style:italic;
  font-size:20px;
  color: var(--terracotta-deep);
  margin: 26px 0;
  padding-left:20px;
  border-left:2px solid var(--terracotta);
}
.historia-values{ display:flex; gap:28px; margin-top: 30px; flex-wrap:wrap; }
.historia-values div{ max-width:150px; }
.historia-values strong{ display:block; font-family:var(--font-display); font-size:15px; margin-bottom:4px; }
.historia-values span{ font-size:13px; color: var(--stone); }

/* ============================== RESEÑAS ============================== */
.resenas{ background: var(--cream-deep); }
.resenas-top{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.rating-badge{ display:flex; align-items:center; gap:14px; }
.rating-badge strong{ font-family: var(--font-display); font-size:34px; color: var(--terracotta-deep); }
.rating-badge .stars{ display:flex; gap:3px; color: var(--terracotta); }
.rating-badge .stars svg{ width:16px; height:16px; }
.rating-badge span{ font-size:12px; color: var(--stone); display:block; margin-top:2px; }

.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.review-card .stars{ display:flex; gap:3px; color: var(--terracotta); margin-bottom:14px; }
.review-card .stars svg{ width:14px; height:14px; }
.review-card p{ font-size:14px; color: var(--ink-soft); line-height:1.7; margin-bottom:18px; }
.review-who{ display:flex; align-items:center; gap:12px; }
.review-avatar{
  width:36px; height:36px; border-radius:50%;
  background: var(--terracotta-pale);
  color: var(--terracotta-deep);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mark); font-size:12px;
}
.review-who strong{ display:block; font-size:13px; }
.review-who span{ font-size:12px; color: var(--stone); }
.google-attribution{
  margin-top: 28px;
  font-size: 12px;
  color: var(--stone-light);
  text-align: right;
}

/* ============================== FOOTER ============================== */
.site-footer{
  background: var(--ink);
  color: rgba(234,217,188,0.8);
  padding: 72px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(234,217,188,0.12);
}
.footer-brand .brand{ color: var(--cream); }
.footer-brand p{ font-size:14px; margin: 16px 0 20px; max-width:260px; color: rgba(234,217,188,0.6); }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:34px; height:34px;
  border:1px solid rgba(234,217,188,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ border-color: var(--terracotta-pale); color: var(--terracotta-pale); }
.social-row svg{ width:15px; height:15px; }

.footer-col h4{
  font-family: var(--font-mark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terracotta-pale);
  margin: 0 0 18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; font-size:14px; }
.footer-col address{ font-style:normal; font-size:14px; line-height:1.7; color: rgba(234,217,188,0.7); }

.footer-map{
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(234,217,188,0.15);
  margin-bottom:16px;
}
.footer-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(35%) contrast(1.05);
}

.newsletter{ display:flex; gap:8px; margin-top:6px; }
.newsletter input{
  flex:1;
  background: rgba(234,217,188,0.08);
  border: 1px solid rgba(234,217,188,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--cream);
  font-size:13px;
}
.newsletter input::placeholder{ color: rgba(234,217,188,0.4); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(234,217,188,0.45);
}
.footer-bottom a{ color: rgba(234,217,188,0.6); }
.footer-legal{ display:flex; gap:20px; flex-wrap:wrap; }

/* botón flotante de reserva */
.float-reserve{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  box-shadow: 0 14px 30px rgba(33,30,26,0.28);
}

/* scroll reveal */
[data-reveal]{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; }
  .dish-grid{ grid-template-columns: repeat(2, 1fr); }
  .reservas-grid{ grid-template-columns: 1fr; }
  .historia .wrap{ grid-template-columns: 1fr; }
  .historia-visual{ order:-1; }
  .review-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px){
  .wrap{ padding: 0 20px; }
  .nav-links{ display:none; }
  .lang-toggle{ font-size: 11px; }
  .nav-toggle{ display:block; }
  .hero-heading{ flex-direction:column; align-items:flex-start; gap:10px; }
  .hero-heading-logo{ height: 34px; }
  .section{ padding: 64px 0; }
  .dish-grid{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .modal{ grid-template-columns: 1fr; }
  .modal-visual{ min-height:160px; }
  .menu-filters{ flex-direction:column; align-items:stretch; }
  .float-reserve{ padding: 12px 18px; font-size:13px; }
}
