/* ============================================================
   Restaurante Los Alpes — styles/main.css
   Paleta cálida: madera, ámbar, crema y tierra valenciana
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  --brown-dark:  #2c1a0e;
  --brown-mid:   #5c3317;
  --brown-light: #a0622a;
  --amber:       #d4860b;
  --amber-light: #f0a830;
  --cream:       #fdf6ec;
  --stone:       #e8ddd0;
  --text-dark:   #1a1008;
  --text-muted:  #7a5c3a;
  --white:       #ffffff;

  --shadow-warm: 0 4px 24px rgba(44, 26, 14, 0.18);
  --shadow-card: 0 2px 16px rgba(44, 26, 14, 0.12);
  --radius:      8px;
  --transition:  all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  font-family: 'Lato', sans-serif;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ============================================================
   2. TIPOGRAFÍA
   ============================================================ */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.label-amber {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================================
   3. UTILIDADES DE LAYOUT
   ============================================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section--cream  { background-color: var(--cream); }
.section--stone  { background-color: var(--stone); }
.section--dark   { background-color: var(--brown-dark); color: var(--white); }
.section--mid    { background-color: var(--brown-mid); color: var(--white); }

.text-center { text-align: center; }

.divider-amber {
  width: 60px;
  height: 3px;
  background-color: var(--amber);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}

.divider-amber--center {
  margin: 1rem auto 2rem;
}

/* ============================================================
   4. BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--amber {
  background-color: var(--amber);
  color: var(--brown-dark);
  border-color: var(--amber);
}
.btn--amber:hover {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 134, 11, 0.35);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn--outline-amber {
  background-color: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn--outline-amber:hover {
  background-color: var(--amber);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--brown-dark);
  border-bottom: 1px solid var(--stone);
  padding: 0.75rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo img {
  height: 55px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: var(--transition);
}
.navbar__link:hover,
.navbar__link--active {
  color: var(--amber);
}

.navbar__cta {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background-color: var(--amber);
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  margin-left: 0.75rem;
  transition: var(--transition);
}
.navbar__cta:hover {
  background-color: var(--amber-light);
  transform: translateY(-1px);
}

/* Teléfono en navbar (visible en mobile también) */
.navbar__phone {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background-color: var(--brown-dark);
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--stone);
  gap: 0.25rem;
}

.navbar__mobile.is-open {
  display: flex;
}

.navbar__mobile .navbar__link {
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

.navbar__mobile .navbar__cta {
  margin: 0.5rem 1.25rem 0;
  text-align: center;
  display: block;
}

.navbar__mobile .navbar__phone {
  padding: 0.5rem 1.25rem 0;
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.footer {
  background-color: var(--brown-dark);
  border-top: 3px solid var(--amber);
  padding: 4rem 0 2rem;
  color: var(--stone);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo img {
  height: 55px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer__title {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer__info p {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__info i,
.footer__info [data-lucide] {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--amber);
  width: 16px;
  height: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--stone);
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--amber-light);
  padding-left: 4px;
}

.footer__hours p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

.footer__hours .highlight {
  color: var(--amber-light);
  font-weight: 700;
}

.footer__bottom {
  border-top: 1px solid rgba(212, 134, 11, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   7. WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 134, 11, 0.4);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: var(--amber-light);
  box-shadow: 0 6px 28px rgba(240, 168, 48, 0.55);
  transform: translateY(-3px) scale(1.05);
}

.whatsapp-btn svg,
.whatsapp-btn [data-lucide] {
  color: var(--white);
  width: 28px;
  height: 28px;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.65);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1rem;
  max-width: 800px;
}

.hero__logo {
  height: 90px;
  width: auto;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.hero__title {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(212, 134, 11, 0.9);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero pequeño (páginas internas) */
.hero--small {
  min-height: 40vh;
  padding-top: 80px;
}

.hero--small .hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* ============================================================
   9. STRIP DE DATOS
   ============================================================ */
.strip {
  background-color: var(--brown-mid);
  padding: 2rem 0;
}

.strip__inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.strip__item:last-child {
  border-right: none;
}

.strip__item [data-lucide] {
  color: var(--amber-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   10. TARJETAS
   ============================================================ */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Tarjeta de reseña */
.review-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--amber);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}

.review-card__stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card__author {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ============================================================
   11. GRIDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   12. SECCIÓN "SOBRE EL RESTAURANTE"
   ============================================================ */
.about__text h2 {
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
}

/* ============================================================
   13. MENÚ DEL DÍA
   ============================================================ */
.menu-dia {
  text-align: center;
}

.menu-dia__price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--amber-light);
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.menu-dia__price-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-dia__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.menu-dia__col h3 {
  color: var(--amber-light);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.menu-dia__col li {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}

.menu-dia__col li:last-child {
  border-bottom: none;
}

.menu-dia__includes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.menu-dia__includes span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.menu-dia__includes [data-lucide] {
  color: var(--amber-light);
  width: 16px;
  height: 16px;
}

/* ============================================================
   14. BADGE GOOGLE / RATING
   ============================================================ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
}

.google-badge__stars {
  color: var(--amber);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.google-badge__rating {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.google-badge__reviews {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   15. CTA BANNER (imagen + overlay)
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.72);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* ============================================================
   16. CARTA (carta.html)
   ============================================================ */
.carta__section {
  margin-bottom: 3.5rem;
}

.carta__section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.carta__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--amber), transparent);
  margin-bottom: 1.75rem;
}

.carta__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone);
}

.carta__item:last-child {
  border-bottom: none;
}

.carta__item-name {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}

.carta__item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.carta__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}

.carta__alergen-note {
  background-color: var(--stone);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ============================================================
   17. VINOS (vinos.html)
   ============================================================ */
.vinos__do {
  margin-bottom: 4rem;
}

.vinos__do-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.vinos__do-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.vinos__do-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--amber), transparent);
  margin-bottom: 1.5rem;
}

.vinos__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vinos__table thead th {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 1rem 1.25rem;
  text-align: left;
  background-color: var(--brown-dark);
  border-bottom: 2px solid var(--amber);
}

.vinos__table tbody tr {
  border-bottom: 1px solid var(--stone);
  transition: var(--transition);
}

.vinos__table tbody tr:last-child {
  border-bottom: none;
}

.vinos__table tbody tr:hover {
  background-color: rgba(212, 134, 11, 0.06);
}

.vinos__table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  vertical-align: top;
}

.vinos__table tbody td:first-child {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
}

.vinos__table tbody td.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}

.vinos__table tbody td.uvas {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   18. FORMULARIO DE RESERVAS
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--cream);
  border: none;
  border-bottom: 2px solid var(--amber);
  padding: 0.75rem 0;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--brown-dark);
  background-color: rgba(212, 134, 11, 0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

/* Info columna lateral */
.reservas-info {
  background-color: var(--brown-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: fit-content;
}

.reservas-info h3 {
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}

.reservas-info .info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.reservas-info .info-item [data-lucide] {
  color: var(--amber);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.reservas-info .info-item p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.55;
}

.reservas-info .info-item strong {
  color: var(--white);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--amber-light);
}

/* ============================================================
   19. GALERÍA
   ============================================================ */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery__filter-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--brown-light);
  background: transparent;
  color: var(--brown-light);
  cursor: pointer;
  transition: var(--transition);
}

.gallery__filter-btn:hover,
.gallery__filter-btn.active {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item.hidden {
  display: none;
}

/* ============================================================
   20. NOSOTROS
   ============================================================ */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.valor-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.valor-card__icon {
  width: 56px;
  height: 56px;
  background-color: rgba(212, 134, 11, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.valor-card__icon [data-lucide] {
  color: var(--amber);
  width: 26px;
  height: 26px;
}

.valor-card h3 {
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.valor-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   21. CONTACTO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212, 134, 11, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon [data-lucide] {
  color: var(--amber);
  width: 22px;
  height: 22px;
}

.contact-info__text strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info__text p,
.contact-info__text a {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-info__text a:hover {
  color: var(--amber);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   22. ANIMACIONES SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   23. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4,
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

/* ============================================================
   24. RESPONSIVE — 768px (MOBILE)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Navbar */
  .navbar__menu,
  .navbar__cta,
  .navbar__phone {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__logo {
    height: 65px;
  }

  /* Grids → columna única */
  .grid-2,
  .grid-3,
  .grid-4,
  .valores-grid,
  .gallery__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Galería: 2 columnas en mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Menú del día */
  .menu-dia__cols {
    grid-template-columns: 1fr;
  }

  /* Strip */
  .strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    justify-content: center;
  }

  /* About imagen orden */
  .about__img {
    height: 260px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Tabla vinos */
  .vinos__table {
    font-size: 0.85rem;
  }

  .vinos__table tbody td {
    padding: 0.75rem 0.75rem;
  }

  /* Reservas */
  .reservas-info {
    margin-top: 2rem;
  }

  /* Botones hero */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   25. SCROLL TO TOP (pequeño detalle UX)
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(44, 26, 14, 0.7);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--amber);
}

.scroll-top [data-lucide] {
  color: var(--white);
  width: 20px;
  height: 20px;
}
