:root {
  --ink: #f3ead9;
  --ink-soft: #c9b79c;
  --ground: #1a1410;
  --ground-alt: #241b14;
  --card: #2a2018;
  --ember: #c1622c;
  --ember-dark: #954a22;
  --gold: #cf9a4c;
  --line: #3c2f22;
  --radius: 3px;
  --max-width: 1120px;
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ground);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 .75em; color: var(--ink-soft); max-width: 62ch; }
em { font-style: normal; color: var(--ember); }
a { color: var(--ember); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--ground-alt); }
.section-sub { max-width: 46ch; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.btn-call {
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* Hero: momento tipográfico oscuro, sin foto (hasta tener fotos reales) */
.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(193, 98, 44, .22), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
}
.hero h1 em { font-style: italic; }
.hero-sub { font-size: 1.05rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; margin-top: 1.75rem; }

/* Botones */
.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ember); color: var(--ink); }
.btn-primary:hover { background: var(--ember-dark); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* Galería: filmstrip deslizable */
.filmstrip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.filmstrip img, .filmstrip .photo-slot {
  flex: 0 0 auto;
  width: clamp(210px, 58vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  display: block;
}
.photo-slot {
  border: 2px dashed var(--line);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: .85rem;
}
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.filmstrip::-webkit-scrollbar-track { background: transparent; }

/* Grillas genéricas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Plato destacado y menú del día */
.signature-dish, .daily-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.signature-dish {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.signature-dish h3 { color: var(--gold); margin: .2rem 0 .3rem; }
.signature-dish p { margin: 0; }
.daily-menu {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}
.daily-menu h3 { margin-bottom: .3rem; }
.daily-menu p { margin: 0; max-width: 50ch; }
.signature-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ember);
  white-space: nowrap;
}

/* Menú */
.menu-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin: 2rem 0 1rem;
}
@media (min-width: 720px) {
  .menu-groups { grid-template-columns: 1fr 1fr; }
}
.menu-group h3 {
  font-size: 1rem;
  color: var(--ember);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .5rem;
  margin-bottom: .6rem;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  font-size: .92rem;
  border-bottom: 1px dotted var(--line);
}
.menu-row span:first-child { color: var(--ink); }
.menu-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

/* Franja de estadísticas: el golpe de color fuerte */
.band { background: var(--ember); padding: 3rem 0; }
.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 720px) {
  .band-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.band-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ground);
  line-height: 1;
  margin-bottom: .4rem;
}
.band-stat span {
  color: #3a2214;
  font-size: .88rem;
  max-width: 24ch;
  display: inline-block;
}

/* Reseñas: cita editorial */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
}
.review { margin: 0; }
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  position: relative;
  padding-left: 1.1rem;
}
.review p::before {
  content: "“";
  position: absolute;
  left: -.3rem;
  top: -.3rem;
  font-size: 2.2rem;
  color: var(--gold);
  font-style: normal;
}
.review cite {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews-link { margin-top: 2rem; }
.reviews-link a { font-weight: 600; text-decoration: none; }

/* Reserva: abre en pestaña aparte, en vez de embeber el iframe de TidyCal */
.booking-cta {
  margin-top: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.booking-cta p { max-width: 40ch; margin-left: auto; margin-right: auto; }
.booking-cta .btn { margin-top: .5rem; }

/* Iframes */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}
.map-frame iframe { display: block; border: 0; }

.info-block p { margin-bottom: .6rem; }

/* Formulario */
.lead-form {
  max-width: 480px;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.lead-form input, .lead-form textarea {
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--card);
  color: var(--ink);
  resize: vertical;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--ink-soft); }
.lead-form button { margin-top: .25rem; align-self: flex-start; }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: var(--gold); }
.form-status.error { color: #e0776a; }
.form-alt { font-size: .9rem; margin-top: 1rem; }
.form-alt a { font-weight: 600; }

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.footer p { margin: 0 0 .25rem; }
.footer-small { font-size: .8rem; }

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.5);
  z-index: 30;
}
.whatsapp-float svg { width: 26px; height: 26px; }
