:root {
  --ink: #201b18;
  --muted: #6d625b;
  --paper: #fbf7ee;
  --white: #fffefb;
  --orange: #d96f32;
  --green: #34594d;
  --wine: #7e2d2a;
  --line: rgba(32, 27, 24, 0.14);
  --shadow: 0 18px 55px rgba(32, 27, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: var(--white);
  background: var(--orange);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(251, 247, 238, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: calc(100vw - 88px);
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.top-nav a:focus-visible,
.button:focus-visible,
.tab:focus-visible,
.mobile-cta a:focus-visible {
  outline: 3px solid rgba(217, 111, 50, 0.35);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(32, 27, 24, 0.08) 0%, rgba(32, 27, 24, 0.42) 42%, rgba(32, 27, 24, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 112px 18px 34px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffd6b8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 16vw, 8.6rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 9vw, 5.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 30rem;
  margin-bottom: 22px;
  color: rgba(255, 254, 251, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(217, 111, 50, 0.35);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 254, 251, 0.55);
  background: rgba(255, 254, 251, 0.08);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.quick-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip article {
  padding: 18px;
  background: var(--white);
}

.quick-strip span,
.menu-item span,
.highlights span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
}

.section-pad {
  padding: 56px 18px;
}

.section-summary {
  max-width: 44rem;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.intro {
  display: grid;
  gap: 18px;
  background: var(--green);
  color: var(--white);
}

.intro p:last-child,
.experience-copy p:last-child,
.social p,
.contact-main p {
  color: rgba(255, 254, 251, 0.78);
  line-height: 1.7;
}

.intro .eyebrow.dark {
  color: #f3bd79;
}

.highlights {
  display: grid;
  gap: 12px;
}

.highlights article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(32, 27, 24, 0.06);
}

.highlights article:nth-child(2) {
  background: #f8e5d4;
}

.highlights article:nth-child(3) {
  color: var(--white);
  background: var(--wine);
}

.highlights article:nth-child(3) span,
.highlights article:nth-child(3) p {
  color: rgba(255, 254, 251, 0.76);
}

.seo-copy {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-copy h2 {
  max-width: 12ch;
}

.seo-copy p:last-child {
  max-width: 54rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.highlights p,
.menu-item p,
.hours p,
.site-footer {
  color: var(--muted);
  line-height: 1.6;
}

.menu {
  background: var(--white);
}

.section-heading {
  margin-bottom: 24px;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin: 0 -18px 24px;
  padding: 0 18px 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.menu-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.menu-search {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-search-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.6;
}

#menuSearch {
  width: 100%;
  min-height: 46px;
  padding: 0 16px 0 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}

#menuSearch:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 111, 50, 0.18);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}

.chip:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.chip.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.chip.chip-rec.active {
  border-color: var(--orange);
  background: var(--orange);
}

.chip.chip-veg.active {
  border-color: var(--green);
  background: var(--green);
}

.menu-results {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.menu-empty {
  padding: 28px 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

.menu-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(217, 111, 50, 0.5);
  box-shadow: 0 18px 38px rgba(32, 27, 24, 0.12);
  outline: none;
}

.menu-card.is-recomendado {
  border-color: rgba(217, 111, 50, 0.45);
  background: linear-gradient(180deg, rgba(217, 111, 50, 0.06), var(--white));
}

.menu-card-photo {
  position: relative;
  min-height: 130px;
  background: linear-gradient(135deg, #ead8b8, #c9a26a);
  overflow: hidden;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  text-align: center;
  color: rgba(255, 254, 251, 0.96);
  background: linear-gradient(135deg, var(--green) 0%, #1f3b32 100%);
}

.photo-placeholder.photo-entrantes { background: linear-gradient(135deg, #6e3a1f, #c97a3a); }
.photo-placeholder.photo-ensaladas { background: linear-gradient(135deg, #2f5d3a, #6ea758); }
.photo-placeholder.photo-huevos { background: linear-gradient(135deg, #c97a3a, #f2b65a); }
.photo-placeholder.photo-tostas { background: linear-gradient(135deg, #8a4a1f, #c2814d); }
.photo-placeholder.photo-pescados { background: linear-gradient(135deg, #1f4a6e, #4d96c2); }
.photo-placeholder.photo-carnes { background: linear-gradient(135deg, #5a1f1f, #a3403c); }
.photo-placeholder.photo-postres { background: linear-gradient(135deg, #6e3a4f, #c98a9e); }

.placeholder-icon {
  font-size: 2.4rem;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

.placeholder-name {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-photo .photo-placeholder {
  position: relative;
  inset: auto;
  height: 100%;
  min-height: 240px;
}

.modal-photo .placeholder-icon {
  font-size: 4rem;
}

.modal-photo .placeholder-name {
  font-size: 1.1rem;
  -webkit-line-clamp: 2;
  max-width: 80%;
}

.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-photo img {
  transform: scale(1.06);
}

.menu-card-photo.no-photo::after {
  content: "🍽";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  opacity: 0.7;
}

.menu-card-price {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(217, 111, 50, 0.4);
}

.menu-card-photo .menu-item-tags {
  position: absolute;
  left: 8px;
  bottom: 8px;
  margin: 0;
  display: flex;
  gap: 4px;
}

.menu-card-photo .menu-tag {
  padding: 4px 7px;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: none;
  text-transform: none;
}

.menu-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.menu-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-body .menu-item-tags {
  margin-top: 4px;
}

.menu-legend {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* legacy menu-item rules quedan tras este bloque */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-item h3 {
  margin-bottom: 5px;
}

.menu-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* Modal */
.dish-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 16, 14, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dish-modal.is-open {
  display: flex;
  animation: fadeIn 0.22s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.28s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background 0.18s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.78);
}

.modal-photo {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #ead8b8, #c9a26a);
  overflow: hidden;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 22px 22px 24px;
}

.modal-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-body h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.modal-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.modal-no-detail {
  font-style: italic;
  opacity: 0.8;
}

.modal-price-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--orange);
}

.menu-item.is-recomendado {
  border-color: rgba(217, 111, 50, 0.45);
  background: linear-gradient(180deg, rgba(217, 111, 50, 0.06), var(--paper));
  box-shadow: 0 1px 0 rgba(217, 111, 50, 0.08) inset;
}

.menu-item-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-tag-recomendado {
  color: var(--wine);
  background: rgba(217, 111, 50, 0.14);
  border: 1px solid rgba(217, 111, 50, 0.35);
}

.menu-tag-vegetariano {
  color: #2d5a3a;
  background: rgba(52, 89, 77, 0.14);
  border: 1px solid rgba(52, 89, 77, 0.35);
}

.tag-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.tag-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--white);
}

.tag-toggle input {
  margin: 0;
}

.price {
  align-self: start;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.original-menu {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.original-menu summary {
  min-height: 54px;
  padding: 16px;
  font-weight: 900;
  cursor: pointer;
}

.original-menu img {
  width: 100%;
  border-top: 1px solid var(--line);
}

.experience {
  color: var(--white);
  background: var(--ink);
}

.experience-copy {
  padding-bottom: 28px;
}

.experience img {
  width: 100%;
  height: min(72vw, 520px);
  object-fit: cover;
}

.social {
  display: grid;
  gap: 16px;
  align-items: start;
  background: #eef2ea;
}

.social p {
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 20px;
  color: var(--white);
  background: var(--green);
}

.hours {
  padding: 20px;
  border: 1px solid rgba(255, 254, 251, 0.22);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.08);
}

.hours h3 {
  font-size: 1.4rem;
}

.hours p {
  color: rgba(255, 254, 251, 0.78);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 18px 92px;
  background: var(--ink);
  color: rgba(255, 254, 251, 0.7);
}

.site-footer p {
  margin-bottom: 0;
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.mobile-cta a:first-child {
  color: var(--white);
  background: var(--orange);
}

@media (min-width: 760px) {
  .site-header {
    padding: 16px 28px;
  }

  .top-nav a {
    padding-inline: 18px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: 140px 42px 54px;
  }

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

  .quick-strip article,
  .section-pad {
    padding-inline: 42px;
  }

  .intro,
  .contact,
  .social {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

  .menu-card {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
  }

  .menu-card-photo {
    min-height: 200px;
  }

  .menu-toolbar {
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: center;
  }

  .experience {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .experience img {
    height: 100%;
    min-height: 520px;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 28px 42px;
  }
}

@media (min-width: 1080px) {
  .section-pad,
  .quick-strip article {
    padding-inline: max(64px, calc((100vw - 1180px) / 2));
  }

  .hero-content {
    padding-left: max(64px, calc((100vw - 1180px) / 2));
  }

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

  .menu-card-photo {
    min-height: 220px;
  }
}

/* ====================================================================
 * NUEVAS SECCIONES — rediseño 2026-05
 * ==================================================================== */

/* Nav CTA */
.top-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.18s;
}

.top-nav a:hover {
  opacity: 1;
}

.top-nav .nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  opacity: 1;
}

.top-nav .nav-cta:hover {
  background: #c95d20;
}

/* Hero refinado */
.hero h1 {
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  line-height: 1;
  margin: 8px 0 18px;
  letter-spacing: -0.01em;
}

.hero .lead {
  max-width: 38rem;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.55;
  margin-bottom: 28px;
}

/* Quick strip 4 columnas */
.quick-strip {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .quick-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

#openStatus[data-state="open"] {
  color: #2c6c4e;
}

#openStatus[data-state="closed"] {
  color: var(--wine);
}

/* Intro con stats */
.intro {
  display: grid;
  gap: 32px;
}

.intro-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-stats article {
  padding: 18px 14px;
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.06);
  text-align: center;
}

.intro-stats strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: #f3bd79;
  line-height: 1;
  margin-bottom: 4px;
}

.intro-stats span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 254, 251, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media (min-width: 760px) {
  .intro {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}

/* Especialidades */
.specials {
  background: var(--paper);
}

.specials-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.special-card {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.special-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 111, 50, 0.4);
  box-shadow: 0 18px 38px rgba(32, 27, 24, 0.1);
}

.special-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217, 111, 50, 0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.special-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.special-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.special-card strong {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.link-arrow {
  display: inline-block;
  margin-top: 22px;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s;
}

.link-arrow:hover {
  border-color: var(--orange);
}

@media (min-width: 760px) {
  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Espacio (antes Experience) */
.space-features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.space-features li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 254, 251, 0.22);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.06);
  color: rgba(255, 254, 251, 0.86);
  font-size: 0.95rem;
}

.space-features strong {
  color: var(--white);
}

/* Grupos / eventos */
.groups {
  display: grid;
  gap: 30px;
  background: #f8e5d4;
}

.groups-text h2 {
  margin-bottom: 14px;
}

.groups-text p {
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.02rem;
}

.groups-note {
  margin-top: 12px;
  color: var(--muted);
}

.groups-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.groups-cards {
  display: grid;
  gap: 12px;
}

.groups-cards article {
  padding: 18px;
  border: 1px solid rgba(32, 27, 24, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.groups-cards strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 1.05rem;
}

.groups-cards p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 880px) {
  .groups {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* Reseñas */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.review {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-stars {
  margin: 0;
  color: #d9a832;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.review blockquote {
  margin: 0;
  font-family: Fraunces, serif;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}

.review footer {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  font-style: normal;
}

.reviews-cta {
  margin-top: 24px;
  text-align: center;
}

@media (min-width: 760px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contacto refinado */
.contact {
  display: grid;
  gap: 28px;
}

.contact-extra {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-extra p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 254, 251, 0.86);
}

.contact-extra strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-extra a {
  color: rgba(255, 254, 251, 0.95);
  border-bottom: 1px solid rgba(255, 254, 251, 0.35);
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 251, 0.18);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 600px) {
  .contact-extra {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 880px) {
  .contact {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
  }
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.18s;
}

.faq-list details[open] {
  border-color: rgba(217, 111, 50, 0.4);
}

.faq-list summary {
  padding: 16px 50px 16px 18px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.18s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.22s;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 760px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer mejorado */
.site-footer {
  display: block;
  background: var(--ink);
  color: rgba(255, 254, 251, 0.78);
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding: 40px 18px 24px;
  grid-template-columns: 1fr;
}

.footer-brand {
  margin: 0 0 8px;
  font-family: Fraunces, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-title {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0 0 4px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer a {
  color: rgba(255, 254, 251, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s;
}

.site-footer a:hover {
  border-color: rgba(255, 254, 251, 0.5);
}

.footer-mini {
  padding: 16px 18px 96px;
  border-top: 1px solid rgba(255, 254, 251, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 254, 251, 0.55);
  text-align: center;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 48px 42px 28px;
  }
  .footer-mini {
    padding: 18px 42px;
  }
}

/* Mobile CTA con iconos */
.mobile-cta a span {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

/* Header responsive: en móvil sólo CTA visible */

/* Language dropdown */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  margin-left: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.lang-button span:first-child {
  font-size: 1rem;
  line-height: 1;
}

.lang-button:hover {
  background: var(--ink);
  color: var(--white);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(32, 27, 24, 0.18);
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.lang-option:hover {
  background: var(--paper);
}

.lang-option.is-active {
  background: var(--orange);
  color: var(--white);
}

.lang-option span:first-child {
  font-size: 1.15rem;
  line-height: 1;
}

/* === WhatsApp flotante === */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px 13px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0,0,0,0.18);
}

.whatsapp-fab svg {
  flex-shrink: 0;
}

@media (min-width: 760px) {
  .whatsapp-fab {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-fab-label {
    display: none;
  }
  .whatsapp-fab {
    padding: 13px;
  }
}

/* === Reserva online === */
.reservation {
  background: var(--green);
  color: var(--white);
}

.reservation-card {
  display: grid;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.reservation-text h2 {
  margin: 8px 0 12px;
}

.reservation-text p {
  color: rgba(255, 254, 251, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.reservation-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 254, 251, 0.08);
  border: 1px solid rgba(255, 254, 251, 0.15);
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 254, 251, 0.78);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 254, 251, 0.22);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 111, 50, 0.35);
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row:has(:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reservation-form .button.primary {
  margin-top: 6px;
  background: var(--orange);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.reservation-note {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 254, 251, 0.65);
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}

@media (min-width: 860px) {
  .reservation-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

/* === Página legal === */
.legal-main {
  padding-top: 84px;
  background: var(--paper);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 36px;
}

.legal-content h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  margin: 6px 0 12px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 38px 0 12px;
  color: var(--green);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 22px 0 6px;
}

.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}

.legal-content a {
  color: var(--orange);
  border-bottom: 1px solid rgba(217, 111, 50, 0.4);
}

.legal-content a:hover {
  border-color: var(--orange);
}

.legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.legal-toc a {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  border-bottom: none;
}

.legal-toc a:hover {
  background: var(--ink);
  color: var(--white);
}

.legal-data,
.legal-content ul {
  margin: 8px 0 12px;
  padding-left: 22px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-table {
  width: 100%;
  margin: 14px 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.legal-table th {
  background: var(--paper);
  font-weight: 800;
}

.legal-back {
  margin-top: 40px;
}

.legal-back a {
  font-weight: 800;
}
