* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  color-scheme: light;
  --cream: #F7F2EA;
  --warm-dark: #1A1208;
  --terracotta: #dd7c49;
  --gold: #B8924A;
  --light-gold: #D4A85A;
  --muted: #8A7A6A;
  --card-bg: #FDF9F3;
  --border: #E8DDD0;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--warm-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden
}

a {
  text-decoration: none
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(.16, 1, .3, 1), transform 0.75s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(.16, 1, .3, 1), transform 0.75s cubic-bezier(.16, 1, .3, 1)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(.16, 1, .3, 1), transform 0.75s cubic-bezier(.16, 1, .3, 1)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(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
}

/* ===== HERO ENTRANCE ===== */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroScale {
  from {
    opacity: 0;
    transform: scale(0.88)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes heroLineExpand {
  from {
    transform: scaleX(0);
    opacity: 0
  }

  to {
    transform: scaleX(1);
    opacity: 1
  }
}

@keyframes heroIlSlide {
  from {
    opacity: 0;
    transform: translateX(-40px) rotate(-4deg)
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(-4deg)
  }
}

@keyframes heroFornoReveal {
  from {
    opacity: 0;
    letter-spacing: 0.6em;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    letter-spacing: 0.22em;
    transform: translateY(0)
  }
}

@keyframes heroEstFade {
  from { opacity: 0; transform: translateX(10px) }
  to   { opacity: 1; transform: translateX(0) }
}

.hero-location {
  animation: heroFadeDown 0.8s ease both;
  animation-delay: 0.1s
}

.hero-rule-top {
  animation: heroLineExpand 0.7s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.35s
}

.hero-il {
  animation: heroIlSlide 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.5s
}

.hero-forno {
  animation: heroFornoReveal 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.6s
}

.hero-est {
  animation: heroEstFade 0.8s ease both;
  animation-delay: 1.1s
}

.hero-rule-bottom {
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.9s
}

.hero-sub {
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 1.0s
}

.hero-actions {
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 1.15s
}

.hero-badge {
  animation: heroScale 0.8s ease both;
  animation-delay: 1.3s
}



/* ===== SCROLL LINE PULSE ===== */
@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6
  }

  50% {
    transform: scaleY(1.5);
    opacity: 1
  }
}

.hero-scroll-line {
  animation: scrollBounce 1.8s ease-in-out infinite
}

/* ===== NAV SHRINK ON SCROLL ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  transition: padding 0.3s ease, box-shadow 0.3s ease
}

nav.scrolled {
  padding: 0.6rem 2.5rem;
  box-shadow: 0 4px 24px rgba(26, 18, 8, 0.1)
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-dark);
  letter-spacing: 0.04em
}

.nav-logo span {
  color: var(--terracotta)
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--terracotta)
}

.nav-cta {
  background: var(--terracotta);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
  display: inline-block
}

.nav-cta:hover {
  background: #A8441A
}

/* HERO */
.hero {
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: #E4DAC6
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('FOTOS/salon-3.jpg') center/cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 235, 215, 1) 0%, rgba(245, 235, 215, 0.6) 35%, transparent 80%),
    linear-gradient(to bottom, rgba(228, 218, 198, 0.0) 0%, rgba(200, 185, 160, 0.55) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}

/* Location tag */
.hero-location {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #8a6a3a;
  opacity: 0.85;
  margin-bottom: 1.1rem
}

/* Top thin rule */
.hero-rule-top {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #b8943a, transparent);
  margin-bottom: 1.4rem;
  transform-origin: center
}

/* Hero logo */
.hero-logo {
  width: clamp(280px, 55vw, 580px);
  max-width: 90vw;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.15)) contrast(1.15) saturate(1.1);
  margin-bottom: 0.6rem;
  animation: heroScale 1.1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.3s
}

.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #111;
  opacity: 0.9;
  margin: 0 0 2.8rem
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem
}

.btn-primary {
  background: #111;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  transition: all .2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2)
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 50, 20, 0.25)
}

.btn-ghost {
  background: transparent;
  color: #111;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid #111;
  padding: 0.95rem 1.95rem;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  transition: all .2s
}

.btn-ghost:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15)
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.4);
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  color: #111;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02)
}

.hero-badge::before {
  content: '★';
  color: var(--terracotta)
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #111;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2
}

.hero-scroll-line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, #111, transparent)
}

/* STRIP */
.strip-bar {
  background: var(--terracotta);
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap
}

.strip-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase
}

/* GALLERY */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 270px;
  overflow: hidden
}

.gallery-img {
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block
}

.gallery-img:hover img {
  transform: scale(1.07)
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0);
  transition: background .3s
}

.gallery-img:hover .gallery-overlay {
  background: rgba(26, 18, 8, 0.3)
}

.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s
}

.gallery-img:hover .gallery-caption {
  opacity: 1
}

/* SECTIONS */
section {
  padding: 5.5rem 2rem
}

.container {
  max-width: 1100px;
  margin: 0 auto
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: block
}

.section-label-light {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 1rem;
  display: block
}

/* ABOUT */
.about {
  background: var(--card-bg)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.about h2 em {
  font-style: italic;
  color: var(--terracotta)
}

.about p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.2rem
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border)
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--warm-dark);
  display: block
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted)
}

.about-card {
  background: var(--warm-dark);
  border-radius: 4px;
  padding: 2.5rem;
  color: #F7F2EA;
  text-align: center
}

.about-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--light-gold)
}

.about-card-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.35);
  margin-bottom: 2rem
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.sched-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.sched-row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.sched-day {
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.5)
}

.sched-time {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-gold)
}

.phone-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07)
}

.phone-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.35);
  display: block;
  margin-bottom: 0.5rem
}

.phone-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  transition: color .2s
}

.phone-link:hover {
  color: var(--light-gold)
}

/* CATEGORIES */
.categories {
  background: var(--cream)
}

.cat-header {
  text-align: center;
  margin-bottom: 3.5rem
}

.cat-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem
}

.cat-header h2 em {
  font-style: italic;
  color: var(--terracotta)
}

.cat-header p {
  color: var(--muted);
  font-size: 0.9rem
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  display: block;
  color: inherit
}

.cat-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 18, 8, 0.1)
}

.cat-img {
  height: 140px;
  overflow: hidden
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s;
  display: block
}

/* Foto crepe: centrar en el plato (parte central-inferior de la imagen) */
.cat-card--postres .cat-img img {
  object-position: center 45%;
}

/* Foto entrantes: enfocar en el plato (mitad inferior) */
.cat-card--entrantes .cat-img img {
  object-position: center 75%;
}

.cat-card:hover .cat-img img {
  transform: scale(1.07)
}

.cat-body {
  padding: 1.2rem 1.4rem
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 0.2rem
}

.cat-count {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase
}

/* MENU */
.menu-wrap {
  background: var(--warm-dark);
  padding: 5.5rem 2rem
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem
}

.menu-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #F7F2EA;
  line-height: 1.15
}

.menu-header h2 em {
  font-style: italic;
  color: var(--terracotta)
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto
}

.menu-tab {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 242, 234, 0.45);
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 0.95rem;
  cursor: pointer;
  transition: all .2s
}

.menu-tab:last-child {
  border-right: none
}

.menu-tab:hover {
  color: rgba(247, 242, 234, 0.8);
  background: rgba(255, 255, 255, 0.04)
}

.menu-tab.active {
  background: var(--terracotta);
  color: #fff
}

.menu-panel {
  display: none
}

.menu-panel.active {
  display: block
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05)
}

.menu-item {
  background: var(--warm-dark);
  padding: 1.3rem 1.8rem;
  transition: background .15s
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.03)
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
  gap: 1rem
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #F7F2EA
}

.item-price {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--light-gold);
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  flex-shrink: 0
}

.item-desc {
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.38);
  line-height: 1.6
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(247, 242, 234, 0.3);
  font-size: 0.77rem;
  letter-spacing: 0.04em
}

/* VINOS */
.wine-wrap {
  background: #0F0A04;
  padding: 5.5rem 2rem
}

.wine-header {
  text-align: center;
  margin-bottom: 4rem
}

.wine-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #F7F2EA;
  line-height: 1.15
}

.wine-header h2 em {
  font-style: italic;
  color: var(--light-gold)
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.wine-col {
  border: 1px solid rgba(180, 146, 74, 0.15);
  border-radius: 4px;
  overflow: hidden
}

.wine-col-head {
  background: rgba(180, 146, 74, 0.07);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(180, 146, 74, 0.12);
  display: flex;
  align-items: center;
  gap: 0.8rem
}

.wine-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-gold)
}

.wine-item {
  padding: 0.95rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background .15s
}

.wine-item:last-child {
  border-bottom: none
}

.wine-item:hover {
  background: rgba(255, 255, 255, 0.03)
}

.wine-name {
  font-size: 0.87rem;
  color: rgba(247, 242, 234, 0.72);
  font-weight: 500
}

.wine-price {
  font-family: 'Playfair Display', serif;
  font-size: 0.93rem;
  color: var(--light-gold);
  font-weight: 600
}

/* DELIVERY */
.delivery {
  background: var(--card-bg);
  border-top: 1px solid var(--border)
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem
}

.delivery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.delivery h2 em {
  font-style: italic;
  color: var(--terracotta)
}

.delivery-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem
}

.delivery-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85
}

.delivery-icon {
  width: 42px;
  height: 42px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.05rem
}

.phone-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.4rem
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.4rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: opacity .2s
}

.phone-btn:hover {
  opacity: 0.85
}

.phone-btn-red {
  background: var(--terracotta);
  color: #fff
}

.phone-btn-dark {
  background: var(--warm-dark);
  color: #F7F2EA
}

/* MAP */
.map-section {
  background: var(--cream);
  padding: 5.5rem 2rem
}

.map-header {
  text-align: center;
  margin-bottom: 3rem
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2
}

.map-header h2 em {
  font-style: italic;
  color: var(--terracotta)
}

.map-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.4rem
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start
}

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 430px
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.4rem
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: var(--warm-dark)
}

.info-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6
}

.info-row:last-child {
  margin-bottom: 0
}

.info-icon {
  flex-shrink: 0;
  margin-top: 0.1rem
}

.map-btn {
  display: block;
  width: 100%;
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .2s
}

.map-btn:hover {
  background: #A8441A
}

/* CTA */
.cta-strip {
  background: var(--terracotta);
  padding: 4.5rem 2rem;
  text-align: center
}

.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 2rem
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.btn-white {
  background: #fff;
  color: var(--terracotta);
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-block;
  transition: background .2s
}

.btn-white:hover {
  background: var(--cream)
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-block;
  transition: all .2s
}

.btn-outline-w:hover {
  border-color: #fff
}

/* FOOTER */
footer {
  background: var(--warm-dark);
  padding: 3.5rem 2rem;
  color: rgba(247, 242, 234, 0.45)
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #F7F2EA;
  font-weight: 700
}

.footer-logo span {
  color: var(--light-gold)
}

.footer-info {
  font-size: 0.8rem;
  line-height: 2;
  text-align: center
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em
}

/* ===== STRIP MARQUEE ===== */
.strip-bar {
  background: var(--terracotta);
  padding: 0;
  overflow: hidden;
  display: block;
  height: 46px;
  position: relative
}

.strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  align-items: center;
  height: 100%
}

.strip-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.strip-item {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 46px
}

.strip-item::after {
  content: '·';
  margin-left: 2.5rem;
  opacity: 0.4;
  font-size: 1.2rem
}

/* ===== PRICE ===== */
.item-price {
  color: var(--light-gold)
}

/* ===== MENU ITEM HOVER ===== */
.menu-item {
  background: var(--warm-dark);
  padding: 1.3rem 1.8rem;
  transition: background .2s, transform .2s;
  border-radius: 2px
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px)
}

/* ===== STAT NUMBER COUNTER ===== */
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0
  }

  75% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.stat-num.animated {
  animation: popIn 0.6s cubic-bezier(.34, 1.56, .64, 1) both
}

/* ===== CAT CARD HOVER ===== */
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
  display: block;
  color: inherit
}

.cat-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(26, 18, 8, 0.15)
}

/* ===== WINE COLUMN HOVER ===== */
.wine-col {
  border: 1px solid rgba(180, 146, 74, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s
}

.wine-col:hover {
  border-color: rgba(180, 146, 74, 0.4);
  box-shadow: 0 8px 32px rgba(180, 146, 74, 0.08)
}

/* ===== BUTTON ANIMATIONS ===== */
.btn-primary,
.nav-cta,
.map-btn {
  position: relative;
  overflow: hidden
}

.btn-primary::after,
.nav-cta::after,
.map-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.35s ease
}

.btn-primary:hover::after,
.nav-cta:hover::after,
.map-btn:hover::after {
  transform: translateX(0)
}

/* ===== CTA STRIP PULSE GLOW ===== */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 124, 73, 0.4)
  }

  50% {
    box-shadow: 0 0 40px 10px rgba(221, 124, 73, 0.15)
  }
}

.cta-strip {
  animation: ctaPulse 4s ease-in-out infinite
}

/* ===== PARALLAX HERO ===== */
.hero-bg {
  position: absolute;
  inset: -10%;
  background: url('FOTOS/salon-3.jpg') center/cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
  will-change: transform
}

/* ===== SECTION LABELS SLIDE ===== */
.section-label,
.section-label-light {
  position: relative;
  display: inline-block
}

.section-label::after,
.section-label-light::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width .5s ease
}

.section-label.visible::after,
.section-label-light.visible::after {
  width: 100%
}

/* ===== DELIVERY ICON SPIN ===== */
.delivery-icon {
  width: 42px;
  height: 42px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.delivery-item:hover .delivery-icon {
  transform: rotate(360deg) scale(1.15)
}

/* RESPONSIVE */
@media(max-width:960px) {

  .about-grid,
  .delivery-grid,
  .map-layout,
  .wine-grid {
    grid-template-columns: 1fr
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .menu-grid {
    grid-template-columns: 1fr
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto
  }

  .gallery-img {
    height: 190px
  }

  nav {
    padding: 1rem 1.5rem
  }

  .nav-links {
    display: none
  }

  .strip-bar {
    gap: 1.2rem;
    justify-content: flex-start;
    height: auto;
    padding: 0.9rem 2rem;
    display: flex
  }

  .strip-track {
    animation: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem
  }

  .strip-item:nth-child(n+5) {
    display: none;
  }
}

/* ===== ALÉRGENOS (menu items) ===== */
.alergenos {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.al {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,248,240,0.07);
  border: 1px solid rgba(232,201,154,0.25);
  border-radius: 20px;
  padding: 2px 7px;
  font-size: 0.68rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: rgba(212,168,90,0.85);
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}

.al:hover {
  background: rgba(255,248,240,0.12);
  border-color: rgba(232,201,154,0.5);
}

.al .al-ico {
  font-size: 0.8rem;
  line-height: 1;
}

/* ===== SECCIÓN COMPLETA DE ALÉRGENOS ===== */
.alergenos-section {
  background: var(--card-bg);
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--border);
}

.alergenos-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.alergenos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.alergenos-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--warm-dark);
}

.alergenos-header h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.alergenos-header p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Legend icons grid */
.al-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.al-legend-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  cursor: default;
}

.al-legend-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26,18,8,0.1);
}

.al-legend-emoji {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.al-legend-name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-dark);
}

.al-legend-desc {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Allergen disclaimer */
.al-disclaimer {
  background: var(--warm-dark);
  color: rgba(247,242,234,0.6);
  border-radius: 6px;
  padding: 1.4rem 2rem;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
}

.al-disclaimer strong {
  color: var(--light-gold);
}

/* ===== LEYENDA en panel de carta ===== */
.alergenos-leyenda {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 28px;
}

.alergenos-leyenda h4 {
  font-family: 'Playfair Display', serif;
  color: var(--light-gold);
  font-size: 0.9rem;
  margin: 0 0 12px 0;
  letter-spacing: 0.06em;
}

.leyenda-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.leyenda-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-family: 'Raleway', sans-serif;
  color: rgba(247,242,234,0.55);
}

/* ===== IMÁGENES EN PLATOS ===== */
.menu-item.has-image {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.menu-item-img {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.05);
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.menu-item.has-image:hover .menu-item-img img {
  transform: scale(1.08);
}

.menu-item-content {
  flex: 1;
}

/* Responsive */
@media(max-width: 768px) {
  .menu-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
    border: none;
    gap: 8px;
    padding-bottom: 0;
  }
  .menu-tab {
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px;
    padding: 0.6rem 0.4rem;
    flex-grow: 1;
    text-align: center;
    flex-basis: calc(33.333% - 8px);
  }
}
@media(max-width: 680px) {
  .al-legend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 480px) {
  .al-legend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alergenos-header h2 {
    font-size: 2.2rem;
  }
  .alergenos-section {
    padding: 3.5rem 1.5rem;
  }
  .menu-item.has-image {
    flex-direction: column;
  }
  .menu-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 0.5rem;
  }
}
