:root {
  --ink:      #0f0c07;
  --carbon:   #1c1710;
  --bark:     #2a2118;
  --rust:     #b83a08;
  --ember:    #d4510e;
  --amber:    #c98b1a;
  --gold:     #e4a825;
  --sand:     #e8dcc8;
  --parchment:#f5eed8;
  --mist:     #f9f4e8;
  --ash:      #7a6e5e;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--ink); color: var(--sand); overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--amber); }
nav { position: fixed; top: 0; width: 100%; z-index: 500; padding: 1.6rem 6%; display: flex; justify-content: space-between; align-items: center; transition: all .4s; }
nav.scrolled { padding: 1rem 6%; background: rgba(15,12,7,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(228,168,37,0.1); }
.logo-wrap { text-decoration: none; line-height: 1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.logo-main em { font-style: italic; color: var(--ember); }
.logo-sub { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ash); font-weight: 300; display: block; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); text-decoration: none; opacity: 0.6; transition: opacity .2s, color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--rust) !important; color: var(--mist) !important; opacity: 1 !important; padding: 0.55rem 1.4rem; letter-spacing: 0.14em !important; font-weight: 500 !important; transition: background .25s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ember) !important; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--sand); transition: .3s; }
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; padding: 9rem 6% 6rem 7%; position: relative; z-index: 2; background: linear-gradient(105deg, var(--ink) 55%, transparent 100%); }
.eyebrow-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.eyebrow-line { width: 30px; height: 1px; background: var(--amber); }
.eyebrow-text { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); }
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.8rem, 7vw, 7rem); font-weight: 300; line-height: 0.9; color: var(--parchment); margin-bottom: 2rem; }
h1 strong { display: block; font-weight: 700; font-style: italic; color: var(--gold); }
h1 em { display: block; font-weight: 300; font-style: italic; color: rgba(232,220,200,0.6); font-size: 0.58em; font-family: 'Libre Baskerville', serif; letter-spacing: 0.04em; margin-top: 0.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-fire { display: inline-flex; align-items: center; background: var(--rust); color: var(--mist); padding: 0.9rem 2rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background .25s, transform .15s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); }
.btn-fire:hover { background: var(--ember); transform: translateY(-2px); }
.btn-outline { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(228,168,37,0.4); padding-bottom: 2px; transition: color .25s, border-color .25s; }
.btn-outline:hover { color: var(--parchment); border-color: var(--parchment); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(228,168,37,0.12); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-l { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--ink) 0%, rgba(15,12,7,0.25) 40%, transparent 65%), linear-gradient(180deg, transparent 55%, rgba(15,12,7,0.55) 100%); }
.hero-real-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 8s ease; }
.hero-right:hover .hero-real-img { transform: scale(1.04); }
.hero-photo-tag { position: absolute; z-index: 2; bottom: 2.5rem; right: 2.5rem; background: rgba(15,12,7,0.88); backdrop-filter: blur(8px); border: 1px solid rgba(228,168,37,0.22); padding: 1rem 1.4rem; text-align: right; }
.hero-photo-tag strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.hero-photo-tag span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }
.hero-left > * { opacity: 0; transform: translateY(18px); }
.hero-left .eyebrow-row { animation: up .8s .2s forwards; }
.hero-left h1           { animation: up .9s .35s forwards; }
.hero-left .hero-actions { animation: up .8s .52s forwards; }
.hero-left .hero-stats  { animation: up .8s .68s forwards; }
.hero-right             { animation: fadeIn 1.2s .1s both; }
@keyframes up { to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.ribbon { background: var(--rust); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
.ribbon-track { display: inline-flex; gap: 2.5rem; animation: marquee 22s linear infinite; }
.ribbon-track span { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(249,244,232,0.85); }
.ribbon-dot { color: rgba(249,244,232,0.35); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
section { padding: 8rem 6%; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.05; color: var(--parchment); margin-bottom: 1.8rem; }
h2 em { font-style: italic; font-weight: 700; color: var(--gold); }
#nosotros { background: var(--carbon); }
.nos-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center; }
.nos-img-col { position: relative; }
.nos-img-main { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.nos-img-main::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(15,12,7,0.45); pointer-events: none; }
.nos-img-small { position: absolute; bottom: -2.5rem; right: -2.5rem; width: 50%; aspect-ratio: 4/3; overflow: hidden; border: 4px solid var(--carbon); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.nos-year { position: absolute; top: 2rem; left: -1.5rem; background: var(--rust); writing-mode: vertical-lr; transform: rotate(180deg); padding: 1.5rem 0.7rem; font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mist); font-weight: 500; }
.nos-text-col { padding-top: 1rem; }
.nos-lead { font-family: 'Libre Baskerville', serif; font-size: 1.06rem; line-height: 1.85; color: rgba(232,220,200,0.72); margin-bottom: 1rem; }
.nos-divider { width: 40px; height: 1px; background: linear-gradient(90deg, var(--rust), transparent); margin: 1.5rem 0; }
.nos-p { font-size: 0.88rem; line-height: 1.8; color: rgba(232,220,200,0.5); }
.valores { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 2.5rem; border: 1px solid rgba(228,168,37,0.1); }
.valor { padding: 1.3rem 1.2rem; border-bottom: 1px solid rgba(228,168,37,0.08); border-right: 1px solid rgba(228,168,37,0.08); display: flex; flex-direction: column; gap: 0.3rem; transition: background .2s; }
.valor:hover { background: rgba(228,168,37,0.04); }
.valor:nth-child(even) { border-right: none; }
.valor:nth-child(n+3) { border-bottom: none; }
.valor-ico { font-size: 1rem; }
.valor-t { font-size: 0.8rem; font-weight: 600; color: var(--parchment); }
.valor-d { font-size: 0.74rem; color: var(--ash); line-height: 1.45; }

/* ═══════════════════════════════════════
   MENÚ — sección completa rediseñada
═══════════════════════════════════════ */
#menu { background: var(--ink); }
.menu-head { max-width: 1200px; margin: 0 auto 4rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.menu-note { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.88rem; color: var(--ash); max-width: 250px; line-height: 1.65; }

/* Tabs */
.tabs { display: flex; max-width: 1200px; margin: 0 auto 3rem; border-bottom: 1px solid rgba(228,168,37,0.15); overflow-x: auto; gap: 0; }
.tab { padding: 0.8rem 0; margin-right: 2.5rem; flex-shrink: 0; background: none; border: none; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); cursor: pointer; position: relative; transition: color .25s; }
.tab::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--rust); transition: width .3s; }
.tab.active { color: var(--parchment); }
.tab.active::after, .tab:hover::after { width: 100%; }
.tab:hover { color: var(--sand); }

/* Grid de platos */
.menu-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.dish-card { background: var(--bark); border: 1px solid rgba(228,168,37,0.07); overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.dish-card:hover { transform: translateY(-5px); border-color: rgba(228,168,37,0.22); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.dish-card.w7  { grid-column: span 7; }
.dish-card.w5  { grid-column: span 5; }
.dish-card.w4  { grid-column: span 4; }
.dish-img { overflow: hidden; position: relative; }
.dish-card.w7 .dish-img  { height: 280px; }
.dish-card.w5 .dish-img  { height: 220px; }
.dish-card.w4 .dish-img  { height: 200px; }
.dish-badge { position: absolute; top: 1rem; left: 1rem; background: var(--rust); color: var(--mist); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.28rem 0.7rem; font-weight: 500; z-index: 2; }
.dish-badge.badge-new  { background: #1a6b3a; }
.dish-badge.badge-hot  { background: var(--rust); }
.dish-badge.badge-fam  { background: var(--amber); color: var(--ink); }
.dish-badge.badge-esp  { background: #5a3a8a; }
.dish-body { padding: 1.5rem; }
.dish-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--parchment); margin-bottom: 0.5rem; line-height: 1.15; }
.dish-card.w7 .dish-name { font-size: 1.75rem; }
.dish-desc { font-size: 0.78rem; color: var(--ash); line-height: 1.6; margin-bottom: 1.2rem; }
.dish-foot { display: flex; justify-content: space-between; align-items: center; }
.dish-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.dish-price sub { font-size: 0.68rem; font-family: 'Jost', sans-serif; color: var(--ash); font-weight: 400; vertical-align: baseline; margin-left: 2px; }
.dish-btn { background: none; border: 1px solid rgba(184,58,8,0.4); color: var(--rust); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.dish-btn:hover { background: var(--rust); color: var(--mist); border-color: var(--rust); }

/* Imagen placeholder cuando no existe foto */
.dish-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--bark), rgba(184,58,8,0.12)); }

#especialidades { background: var(--bark); }
.esp-head { max-width: 1200px; margin: 0 auto 3.5rem; }
.bento { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.bento-item { padding: 2.5rem 2rem; border: 1px solid rgba(228,168,37,0.1); position: relative; overflow: hidden; transition: border-color .3s, background .3s; }
.bento-item:hover { border-color: rgba(228,168,37,0.28); background: rgba(228,168,37,0.03); }
.bento-item.feat { grid-column: span 2; background: linear-gradient(135deg, rgba(184,58,8,0.1), rgba(201,139,26,0.05)); border-color: rgba(184,58,8,0.22); }
.bento-n { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(228,168,37,0.06); position: absolute; top: -0.5rem; right: 1rem; line-height: 1; user-select: none; }
.bento-ico { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.bento-t { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--parchment); margin-bottom: 0.8rem; }
.bento-item.feat .bento-t { font-size: 1.9rem; }
.bento-d { font-size: 0.82rem; color: var(--ash); line-height: 1.65; }
#galeria { background: var(--ink); }
.gal-head { max-width: 1200px; margin: 0 auto 3rem; }
.gal-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 180px; gap: 0.8rem; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; }
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-item::after { content: ''; position: absolute; inset: 0; background: rgba(15,12,7,0); transition: background .3s; }
.gal-item:hover::after { background: rgba(15,12,7,0.28); }
#testimonios { background: var(--carbon); }
.testi-head { max-width: 1200px; margin: 0 auto 3.5rem; }
.testi-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(228,168,37,0.08); background: rgba(228,168,37,0.08); }
.testi-c { background: var(--carbon); padding: 2.5rem; transition: background .25s; }
.testi-c:hover { background: var(--bark); }
.testi-q { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: var(--rust); line-height: 1; opacity: 0.55; margin-bottom: -0.5rem; }
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testi-text { font-family: 'Libre Baskerville', serif; font-size: 0.9rem; font-style: italic; line-height: 1.8; color: rgba(232,220,200,0.75); margin-bottom: 1.8rem; }
.testi-who { display: flex; align-items: center; gap: 1rem; }
.testi-av { width: 38px; height: 38px; background: var(--rust); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; color: var(--mist); flex-shrink: 0; }
.testi-name { font-size: 0.82rem; font-weight: 600; color: var(--sand); }
.testi-loc { font-size: 0.7rem; color: var(--ash); margin-top: 1px; }
#contacto { background: var(--ink); padding-bottom: 3rem; }
.contacto-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 5rem; padding-bottom: 5rem; border-bottom: 1px solid rgba(228,168,37,0.1); }
.contacto-lead { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 1rem; color: rgba(232,220,200,0.58); line-height: 1.75; margin-bottom: 2.5rem; max-width: 400px; }
.info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-ico { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid rgba(184,58,8,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--rust); }
.info-lbl { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.2rem; }
.info-v { font-size: 0.88rem; color: var(--sand); line-height: 1.45; }
.wa-cta { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 2.5rem; background: #1a5c32; color: var(--mist); padding: 1rem 2rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background .25s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); }
.wa-cta:hover { background: #25863d; }
.wa-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.horarios-panel { border: 1px solid rgba(228,168,37,0.12); overflow: hidden; }
.hor-header { background: var(--bark); padding: 1.3rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); border-bottom: 1px solid rgba(228,168,37,0.1); }
.hor-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 1.5rem; font-size: 0.82rem; border-bottom: 1px solid rgba(228,168,37,0.06); transition: background .2s; }
.hor-row:last-of-type { border-bottom: none; }
.hor-row:hover { background: rgba(228,168,37,0.03); }
.hor-row .dia { color: rgba(232,220,200,0.5); }
.hor-row .hora { color: var(--sand); font-weight: 500; }
.hor-row.hoy { background: rgba(184,58,8,0.08); }
.hor-row.hoy .dia { color: var(--gold); font-weight: 600; }
.hor-row.hoy .hora { color: var(--gold); }
.hoy-badge { font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--rust); color: var(--mist); padding: 0.15rem 0.5rem; }
.mapa-section { max-width: 1200px; margin: 0 auto; padding-bottom: 4rem; border-bottom: 1px solid rgba(228,168,37,0.1); }
.mapa-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.mapa-wrap { position: relative; width: 100%; height: 400px; border: 1px solid rgba(228,168,37,0.18); overflow: hidden; }
.mapa-wrap::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(228,168,37,0.18); }
.mapa-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(30%) contrast(1.05) brightness(0.88); transition: filter .4s; }
.mapa-wrap:hover iframe { filter: grayscale(0%) contrast(1) brightness(1); }
.mapa-badge { position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 2; background: rgba(15,12,7,0.92); backdrop-filter: blur(8px); border: 1px solid rgba(228,168,37,0.22); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.7rem; }
.mapa-badge-ico { font-size: 1.1rem; }
.mapa-badge-txt { font-size: 0.72rem; color: var(--sand); line-height: 1.45; }
.mapa-badge-txt strong { display: block; color: var(--gold); font-size: 0.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.mapa-dir-btn { position: absolute; bottom: 1.2rem; right: 1.2rem; z-index: 2; background: var(--rust); color: var(--mist); padding: 0.7rem 1.3rem; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background .25s; clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%); }
.mapa-dir-btn:hover { background: var(--ember); }
.footer-bar { max-width: 1200px; margin: 3rem auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.footer-logo em { font-style: italic; color: var(--rust); }
.footer-copy, .footer-made { font-size: 0.7rem; color: var(--ash); letter-spacing: 0.08em; }
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; }
.wa-bubble { background: var(--bark); border: 1px solid rgba(37,211,102,0.25); color: var(--sand); padding: 0.65rem 1rem; font-size: 0.78rem; white-space: nowrap; border-radius: 4px 4px 0 4px; opacity: 0; transform: translateX(8px) scale(0.96); transition: opacity .3s, transform .3s; pointer-events: none; box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.wa-float:hover .wa-bubble { opacity: 1; transform: none; }
.wa-btn { width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,0.35); transition: transform .2s, box-shadow .2s; animation: wap 3s infinite; }
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.5); animation: none; }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes wap { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.35); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.07); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s, transform .75s; }
.reveal.up { opacity: 1; transform: none; }
.cart-overlay { position: fixed; inset: 0; background: rgba(15,12,7,0.8); backdrop-filter: blur(4px); z-index: 9990; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: -400px; width: 100%; max-width: 400px; height: 100vh; background: var(--carbon); z-index: 9999; box-shadow: -10px 0 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; transition: right .4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border-left: 1px solid rgba(228,168,37,0.15); }
.cart-drawer.open { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid rgba(228,168,37,0.15); display: flex; justify-content: space-between; align-items: center; }
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); font-weight: 600; line-height: 1; }
.cart-close { background: none; border: none; color: var(--sand); font-size: 1.5rem; cursor: pointer; transition: color .2s; }
.cart-close:hover { color: var(--rust); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--amber); }
.cart-item { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: var(--bark); border: 1px solid rgba(228,168,37,0.08); }
.cart-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.cart-item-info { flex: 1; overflow: hidden; }
.cart-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--parchment); font-weight: 600; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.8rem; color: var(--gold); }
.cart-qty-ctrl { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.cart-qty-btn { background: none; border: 1px solid rgba(228,168,37,0.3); color: var(--sand); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem; transition: background .2s, color .2s; }
.cart-qty-btn:hover { background: var(--rust); color: var(--mist); border-color: var(--rust); }
.cart-qty { font-size: 0.9rem; color: var(--sand); width: 20px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--ash); cursor: pointer; font-size: 1.2rem; padding: 0.5rem; transition: color .2s; }
.cart-remove:hover { color: var(--rust); }
.cart-empty { text-align: center; color: var(--ash); padding: 2rem 0; font-size: 0.9rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(228,168,37,0.15); background: var(--ink); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-total-lbl { font-size: 1rem; color: var(--sand); text-transform: uppercase; letter-spacing: 0.1em; }
.cart-total-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.checkout-btn { display: block; width: 100%; text-align: center; background: #25d366; color: var(--ink); padding: 1rem; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: background .25s; border: none; cursor: pointer; }
.checkout-btn:hover { background: #1ebc59; }
.cart-float { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 900; width: 56px; height: 56px; background: var(--rust); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(184,58,8,0.35); cursor: pointer; transition: transform .2s, box-shadow .2s; }
.cart-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(184,58,8,0.5); }
.cart-float svg { width: 24px; height: 24px; fill: var(--mist); }
.cart-badge { position: absolute; top: -5px; right: -5px; background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--bark); }
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { min-height: 85vh; background: var(--ink); padding: 8rem 6% 4rem; }
  .hero-right { height: 60vw; min-height: 280px; }
  .hero-right::before { background: linear-gradient(180deg, var(--ink) 0%, transparent 30%, rgba(15,12,7,0.4) 100%); }
  .nos-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .nos-img-col { max-width: 380px; }
  .nos-img-small { display: none; }
  .nos-year { display: none; }
  .dish-card.w7, .dish-card.w5 { grid-column: span 12; }
  .dish-card.w4 { grid-column: span 6; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-item.feat { grid-column: span 2; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item { height: 180px; }
  .gal-item:first-child { grid-column: span 2; grid-row: span 1; height: 260px; }
  .gal-item:nth-child(4) { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .contacto-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(15,12,7,0.97); flex-direction: column; padding: 2rem 6%; gap: 1.5rem; border-bottom: 1px solid rgba(228,168,37,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .mapa-wrap { height: 300px; }
}
@media (max-width: 640px) {
  section { padding: 5rem 5%; }
  .dish-card.w4 { grid-column: span 12; }
  .bento { grid-template-columns: 1fr; }
  .bento-item.feat { grid-column: span 1; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item, .gal-item:first-child { grid-column: span 1 !important; height: 200px !important; }
  h1 { font-size: 3.2rem; }
  .hero-stats { gap: 2rem; }
  .valores { grid-template-columns: 1fr; }
  .valor:nth-child(even) { border-right: 1px solid rgba(228,168,37,0.08); }
  .valor { border-bottom: 1px solid rgba(228,168,37,0.08); }
  .valor:last-child { border-bottom: none; }
  .footer-bar { flex-direction: column; text-align: center; }
  .menu-head { flex-direction: column; align-items: flex-start; }
  .mapa-wrap { height: 260px; }
  .mapa-badge { display: none; }
  .cart-drawer { right: -100%; }
}