:root {
  --red: #740d0d;
  --red-dark: #500707;
  --black: #0a0908;
  --cream: #f4efe4;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ==========================================================
   DON CARLOS — shared multi-page site (Inicio, Reservas,
   Selección, Historia, Don Clan)
   ========================================================== */

body.site { background: var(--white); color: var(--black); }

/* ---------- Site header / nav (shared across pages) ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding-bottom: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 100%);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
}
.site-logo { height: 72px; display: block; }
.site-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-links a:hover { opacity: 0.75; }
.site-links a.active { font-weight: 700; }

/* ---------- Page hero (full-bleed photo + gradient) ---------- */
.page-hero {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0.62) 0%, rgba(10,8,7,0.05) 22%, rgba(10,8,7,0.15) 100%);
}
.home-hero { min-height: 92vh; }
.home-hero::before {
  background: linear-gradient(180deg, rgba(10,8,7,0.58) 0%, rgba(10,8,7,0.05) 22%, rgba(10,8,7,0.8) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 8%;
  max-width: 900px;
}
/* Interior pages (Reservas / Selección / Historia): bold serif title overlaid on the photo */
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.page-hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  color: #f0f0f0;
}
/* Inicio: italic centered tagline instead */
.home-hero .page-hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}
.home-hero .page-hero-content h1 {
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 40px;
}

/* ---------- Generic content sections ---------- */
.section { padding: 90px 5%; }
.section-cream { background: var(--cream); color: var(--black); }
.section-black { background: var(--black); color: var(--white); }
.section-white { background: var(--white); color: var(--black); }

.section-head { max-width: 900px; margin: 0 auto 50px; text-align: left; }
.section-head h2 {
  text-align: left;
  margin-bottom: 18px;
}
.section-head p { font-size: 1.1rem; line-height: 1.7; max-width: 760px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.centered h2, .section-head.centered p { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- "¿Necesitas apoyo con tu reserva?" note (reused .reservas widget) ---------- */
.help { margin-top: 40px; }
.help h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.help p { font-size: 1rem; line-height: 1.6; }
.help a { color: var(--black); }

/* ---------- Selección cards (Entradas / Carnes / Vinos) ---------- */
.seleccion-strip { background: var(--black); color: var(--white); padding: 90px 5%; }
.seleccion-strip .strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 46px;
}
.seleccion-strip .strip-head h2 { text-align: left; margin: 0; }
.seleccion-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1300px;
  margin: 0 auto;
}
.seleccion-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.seleccion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.seleccion-card:hover img { transform: scale(1.06); }
.seleccion-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
}
.seleccion-card span {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 2;
  text-align: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

/* ---------- Historia teaser on homepage ---------- */
.historia-teaser { background: var(--cream); padding: 90px 5%; }
.historia-teaser .teaser-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.teaser-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 26px;
  max-width: 460px;
}
.teaser-photos figure { margin: 0; }
.teaser-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.teaser-photos figcaption {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #555;
  margin-top: 8px;
}
.teaser-photos figcaption.above { margin-top: 0; margin-bottom: 6px; }
.teaser-photos .photo-1 { grid-column: 1; grid-row: 1; }
.teaser-photos .photo-2 { grid-column: 2; grid-row: 1; align-self: end; }
.teaser-photos .photo-2 img { aspect-ratio: 4/5; }
.teaser-photos .photo-3 { grid-column: 1; grid-row: 2; }
.teaser-text h2 { text-align: left; margin-bottom: 22px; }
.teaser-text p { font-size: 1.08rem; line-height: 1.75; margin-bottom: 34px; }

/* ---------- Testimonials (reused pattern) ---------- */
.clientes.on-light { background: var(--cream); color: var(--black); }
.clientes.on-light .quote-mark { color: var(--black); }
.clientes.on-light .testimonios p { color: #333; }

/* ---------- Site footer (shared, tagline/bg per page) ---------- */
.site-footer-bg {
  position: relative;
  height: 54vw;
  min-height: 320px;
  background-size: cover;
  background-position: center 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.15));
}
.site-footer-bg .tagline { position: relative; z-index: 2; text-align: center; padding: 40px; }

/* ---------- Selección de carnes page ---------- */
.destacado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.destacado-grid img { width: 100%; border-radius: 4px; object-fit: cover; aspect-ratio: 4/5; }
.destacado-text h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.destacado-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }

.coccion-lenta { background: var(--black); color: var(--white); padding: 90px 5%; }
.coccion-lenta h2 { margin-bottom: 18px; text-align: left; }
.coccion-lenta > p { max-width: 720px; margin: 0 0 50px; font-size: 1.05rem; line-height: 1.7; text-align: left; }
.coccion-lenta > a.btn { display: block; width: fit-content; margin: 0 auto; }
.coccion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: left;
}
.coccion-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; margin-bottom: 20px; }
.coccion-item h3 { font-family: var(--font-heading); font-style: italic; font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; text-align: center; }
.coccion-item p { color: #ddd; font-size: 0.98rem; line-height: 1.6; text-align: center; }

.acompanamientos { background: var(--cream); padding: 90px 5%; }
.acompanamientos h2 { text-align: left; }
.acompanamientos > p { max-width: 720px; margin: 0 0 50px; font-size: 1.05rem; line-height: 1.7; text-align: left; }
.acompanamientos > a.btn { display: block; width: fit-content; margin: 0 auto; }
.acomp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.acomp-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.dulce-final { background: var(--black); color: var(--white); padding: 90px 5%; }
.dulce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.dulce-grid img { width: 100%; border-radius: 4px; object-fit: cover; aspect-ratio: 4/5; }
.dulce-photo-col { text-align: center; }
.dulce-photo-col .eyebrow { font-family: var(--font-heading); font-style: italic; font-size: 1rem; color: #ddd; margin-bottom: 4px; }
.dulce-photo-col h3 { font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.4rem; margin-bottom: 18px; }
.dulce-text-col { text-align: center; }
.dulce-text-col p { color: #ddd; line-height: 1.7; margin-bottom: 26px; }
.dulce-text-col .btn { display: inline-block; }

/* ---------- Ubicación (map embed) ---------- */
.ubicacion { background: var(--black); color: var(--white); padding: 90px 5%; }
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ubicacion-text h2 { text-align: left; margin-bottom: 20px; }
.ubicacion-text p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 10px; color: #ddd; }
.ubicacion-map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 4px; filter: grayscale(0.15); }

/* ---------- Historia page ---------- */
.historia-lead { background: var(--black); color: var(--white); padding: 70px 5% 60px; }
.historia-lead .container { max-width: 900px; }
.historia-lead p { font-size: 1.08rem; line-height: 1.8; color: #eee; }

.equipo { background: var(--cream); padding: 90px 5%; }
.equipo-head { max-width: 900px; margin: 0 auto 60px; text-align: left; }
.equipo-head h2 { text-align: left; margin-bottom: 18px; }
.equipo-head p { font-size: 1.08rem; line-height: 1.75; }
.equipo-list { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 70px; }
.equipo-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: center;
}
.equipo-row.reverse { grid-template-columns: 1fr 260px; }
.equipo-row.reverse .equipo-photo { order: 2; }
.equipo-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.equipo-info h3 { font-family: var(--font-heading); font-style: italic; font-weight: 600; font-size: 1.5rem; margin-bottom: 8px; }
.equipo-info .years {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: #6b6b6b;
  padding-top: 10px;
  margin-bottom: 14px;
  border-top: 1px solid #ccc;
  display: inline-block;
}
.equipo-info p.quote { font-size: 1.02rem; line-height: 1.75; color: #333; }

/* ---------- Don Clan sub-nav badge on the multi-page header ---------- */
.don-clan-hero-mark {
  position: relative;
  z-index: 2;
  width: min(70%, 420px);
  margin: 0 auto;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .teaser-grid, .destacado-grid, .coccion-grid, .dulce-grid, .ubicacion-grid { grid-template-columns: 1fr !important; }
  .equipo-row, .equipo-row.reverse { grid-template-columns: 1fr; text-align: center; }
  .equipo-row.reverse .equipo-photo { order: 0; }
  .equipo-photo img { max-width: 320px; margin: 0 auto; }
  .equipo-info { text-align: center; }
  .equipo-info .years { border-bottom: none; }
  .seleccion-cards, .acomp-grid { grid-template-columns: 1fr 1fr; }
  .teaser-photos { min-height: 320px; }
}
@media (max-width: 640px) {
  .site-header .nav { padding: 18px 5%; }
  .site-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 72%;
    background: var(--black);
    flex-direction: column; justify-content: center; align-items: center; gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 300;
  }
  .site-links.open { transform: translateX(0); }
  .seleccion-cards, .acomp-grid { grid-template-columns: 1fr; }
  .site-logo { height: 54px; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 16px 38px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--black); }
.btn-light:hover { background: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1c1a18; }

/* TOPBAR */
.topbar {
  background: var(--red);
  text-align: center;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo { height: 170px; margin: 0 auto; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(180deg, rgba(10,8,7,0.35) 0%, rgba(10,8,7,0.15) 35%, rgba(10,8,7,0.75) 100%), url('../images/hero-piano.jpg') center 30%/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 5%;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.nav-links a.active { font-weight: 700; }
.nav-links a:hover { opacity: 0.75; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 301;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-content {
  padding: 0 6% 12%;
  max-width: 900px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.15;
  margin-bottom: 40px;
}

/* RESERVAS */
.reservas {
  background: var(--white);
  color: var(--black);
  padding: 90px 0;
}
.reservas h2 { color: var(--black); text-align: left; }
.reservas .subtitle {
  margin-top: 18px;
  font-size: 1.15rem;
  max-width: 700px;
}
.reservas-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.reservas-embed {
  margin-top: 50px;
  max-width: 900px;
}
.reservas-embed iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}
@media (max-width: 640px) {
  .reservas-embed iframe { height: 540px; }
}

.calendar {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--font-mono);
}
.calendar-header {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;
}
.calendar-header button {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 0.7rem;
}
.calendar-weekdays, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.calendar-weekdays span {
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
  border-bottom: 1px solid #eee;
}
.calendar-days button {
  aspect-ratio: 1;
  border: none;
  background: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--black);
}
.calendar-days button:disabled {
  color: #ccc;
  cursor: default;
}
.calendar-days button.today { font-weight: 700; }
.calendar-days button.selected {
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
}
.calendar-days button:not(:disabled):hover { background: #f0f0f0; }

.booking-form { font-family: var(--font-mono); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--black);
}
.btn-reservar { display: block; margin: 10px auto 30px; }
.waitlist-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.waitlist-btn {
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 1px solid #ccc;
  font-family: var(--font-mono);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.waitlist-btn:hover { background: #f5f5f5; }

/* CARTA */
.carta {
  background: var(--black);
  padding: 90px 5%;
  text-align: center;
}
.carta h2 { margin-bottom: 50px; }
.carta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 50px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.carta-img {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}
.carta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carta-img:hover img { transform: scale(1.05); }

/* HISTORIAS */
.historias {
  position: relative;
  background: var(--red);
  padding: 100px 5%;
  overflow: hidden;
}
.historias h2 { margin-bottom: 50px; position: relative; z-index: 2; }
.historias-ilustracion {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-45%);
  width: 55%;
  max-width: 650px;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.historias-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: auto;
  text-align: left;
}
.historias-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CLIENTES */
.clientes {
  background: var(--black);
  color: var(--white);
  padding: 90px 5%;
  text-align: center;
}
.clientes h2 { margin-bottom: 60px; }
.testimonios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}
.testimonios blockquote { display: flex; flex-direction: column; }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
}
.testimonios p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 20px;
}
.testimonios cite {
  font-style: normal;
  font-weight: 500;
}

/* INSTAGRAM */
.instagram {
  background: var(--red);
  padding: 90px 5%;
  text-align: center;
}
.instagram h2 { margin-bottom: 50px; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1300px;
  margin: 0 auto 50px;
}
.insta-item {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-item:hover img { transform: scale(1.05); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
}

/* FOOTER */
.footer { background: var(--black); color: var(--white); }
.footer-top {
  text-align: center;
  padding: 90px 5% 70px;
}
.footer-top h2 { margin-bottom: 40px; }
.footer-top h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 40px 0 14px;
}
.footer-top p { font-size: 1.05rem; margin-bottom: 4px; }
.footer-top p.italic { font-style: italic; color: #ccc; }
.footer-top a { color: var(--white); text-decoration: none; }
.footer-top a:hover { text-decoration: underline; }
.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
}
.social-links span { color: #777; }

/* Don Carlos: "TE ESPERAMOS" / Ubicación footer is cream, not black */
.footer.light { background: var(--cream); color: var(--black); }
.footer.light .footer-top a { color: var(--black); }
.footer.light .footer-top p.italic { color: #444; }
.footer.light .social-links span { color: #999; }
.footer.light .copyright { color: #777; border-top-color: #ddd; }
.ubicacion.light { background: var(--cream); color: var(--black); }
.ubicacion.light .ubicacion-text p { color: #333; }

.footer-bg {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15)), url('../images/footer-bg.jpg') center 20%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-overlay { text-align: center; padding: 40px; }
.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
}

.copyright {
  text-align: center;
  padding: 26px 5%;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #222;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reservas-grid { grid-template-columns: 1fr; }
  .testimonios { grid-template-columns: 1fr; gap: 40px; }
  .carta-grid { grid-template-columns: 1fr 1fr; }
  .carta-grid > *:first-child { grid-column: span 2; }
  .historias-ilustracion { display: none; }
  .historias-content { margin: 0 auto; text-align: center; }
}

@media (max-width: 640px) {
  .nav { padding: 22px 5%; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 70%;
    background: var(--red);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 300;
  }
  .nav-links.open { transform: translateX(0); }
  .insta-grid { grid-template-columns: 1fr; }
  .carta-grid { grid-template-columns: 1fr; }
  .carta-grid > *:first-child { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .logo { height: 100px; }
}
