*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --brand: #5366ad;
  --brand-dark: #3d4f96;
  --dark-bg: #1a1a2e;
  --footer-bg: #111122;
  --text-light: #e8e8e8;
  --accent: #c8002c;
  --grey-pill: #c9c9c9;
  --purple-text: #745f7e;
  --font-head: 'Exo', sans-serif;
  --font-body: 'Playfair Display', serif;
  --font-roboto: "Roboto", sans-serif;
  --max-w: 860px;
  --max-w-full: 1200px;
  --header-h: 80px
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-head);
  color: #222;
  background: #fff;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(26, 26, 46, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(83, 102, 173, .3)
}

.header-inner {
  max-width: var(--max-w-full);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain
}

nav ul {
  display: flex;
  gap: 4px
}

nav ul li a {
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color .2s;
  position: relative
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .2s
}

.note-final {
  font-size: 13px;
  font-style: italic;
  color: #888;
  text-align: center;
  margin-top: 6px
}

nav ul li a:hover {
  color: #fff
}

nav ul li a:hover::after {
  transform: scaleX(1)
}

nav ul li.active a {
  color: var(--brand)
}

nav ul li.active a::after {
  transform: scaleX(1)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: .3s
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, .98);
  padding: 16px 0;
  z-index: 998;
  flex-direction: column;
  border-top: 1px solid rgba(83, 102, 173, .3)
}

.mobile-nav.open {
  display: flex
}

.mobile-nav li a {
  display: block;
  padding: 12px 30px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s, padding-left .2s
}

.mobile-nav li a:hover {
  color: var(--brand);
  padding-left: 40px
}

.mobile-nav li.active a {
  color: var(--brand)
}

.dish-item.centered,
.dish-item:has(em) {
  flex-wrap: wrap;
  align-items: baseline
}

.dish-item.centered em,
.dish-item:has(em) em {
  display: block;
  width: 100%;
  margin-top: 4px;
  text-align: center
}

.hero {
  position: relative;
  width: 100%;
  margin-top: var(--header-h);
  overflow: hidden
}

.hero-image {
  width: 100%;
  aspect-ratio: 21/10;
  position: relative;
  overflow: hidden
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 8s ease-out forwards
}

@keyframes heroZoom {
  from {
    transform: scale(1.04)
  }

  to {
    transform: scale(1)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 46, .15) 0%, rgba(26, 26, 46, .5) 60%, rgba(26, 26, 46, .72) 100%)
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-caption h2 {
  font-family: var(--font-roboto);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 62px);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .65);
  padding: 16px 48px
}

.page-content {
  max-width: var(--max-w-full);
  margin: 0 auto;
  padding: 56px 30px 20px
}

.section-pill {
  background: var(--dark-bg);
  border-radius: 15px;
  padding: 12px 20px;
  margin-bottom: 20px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.section-pill strong {
  font-family: var(--font-roboto);
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 25px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px
}

.dish-list {
  max-width: var(--max-w);
  margin: 0 auto 40px
}

.dish-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #ebebeb;
  transition: background .15s
}

.dish-item:last-child {
  border-bottom: none
}

.dish-item:hover {
  background: #fafafa;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
  border-radius: 6px
}

.dish-name {
  font-family: var(--font-roboto);
  font-size: clamp(14px, 1.6vw, 20px);
  color: #333;
  line-height: 1.4;
  flex: 1;
  text-align: center;
  font-weight: 600
}

.reserva-cta {
  text-align: center;
  margin: 40px 0 20px
}

.btn-reserva {
  display: inline-block;
  padding: 14px 40px;
  background-color: #b8860b;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #b8860b;
  transition: background-color .3s, color .3s
}

.btn-reserva:hover {
  background-color: transparent;
  color: #b8860b
}

.dish-price {
  font-family: var(--font-roboto);
  font-weight: 900;
  font-size: 20px;
  color: var(--brand);
  white-space: nowrap;
  min-width: 56px;
  text-align: right
}

.dish-item.centered {
  justify-content: center;
  text-align: center
}

.dish-item.centered .dish-name {
  text-align: center
}

.section-gap {
  height: 36px
}

.divider {
  height: 1px;
  background: #e8e8e8;
  margin-top: 20px
}

.footer-info {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 50px 0
}

.footer-info .container {
  max-width: var(--max-w-full);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center
}

.footer-col h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 13px;
  color: #aaa;
  line-height: 2
}

.footer-col a:hover {
  color: var(--brand)
}

.footer-col .closed {
  color: var(--accent);
  font-weight: 700
}

.footer-col .note {
  font-size: 11px;
  color: #777;
  font-style: italic;
  margin-top: 6px
}

.socket {
  background: var(--footer-bg);
  padding: 18px 30px;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: 1px
}

#cookie-bar button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 8px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s
}

#cookie-bar button:hover {
  background: var(--brand-dark)
}

.footer-col-whatsapp {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.whatsapp-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #b8860b;
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid #b8860b;
  line-height: 1;
  transition: background .3s, color .3s, transform .2s
}

.whatsapp-btn:hover {
  background: transparent;
  color: #b8860b !important;
  transform: translateY(-2px)
}

.whatsapp-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px
}

@media (max-width:900px) {
  .footer-col-whatsapp {
    justify-content: center
  }
}

@media (max-width:900px) {
  nav {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-image {
    aspect-ratio: 4/3
  }

  .hero-caption h2 {
    font-size: clamp(20px, 6vw, 36px);
    padding: 12px 22px
  }

  .footer-info .container {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .page-content {
    padding: 36px 20px 20px
  }
}

@media (max-width:550px) {
  .footer-info .container {
    grid-template-columns: 1fr;
    text-align: center;
    flex-direction: column;
    align-items: center
  }

  .footer-col {
    width: 100%
  }

  .footer-col-whatsapp {
    justify-content: center
  }

  .hero-image {
    aspect-ratio: 3/2
  }

  .dish-item {
    flex-direction: column;
    gap: 4px;
    align-items: center
  }

  .dish-item.centered,
  .dish-item:has(em) {
    align-items: stretch
  }

  .dish-name {
    text-align: center
  }

  .dish-price {
    text-align: center;
    min-width: auto
  }
}

#cookiescript_accept,
.cookiescript_accept {
  background: #b8860b !important;
  border-color: #b8860b !important;
  color: #fff !important
}

#cookiescript_accept:hover,
.cookiescript_accept:hover {
  background: transparent !important;
  color: #b8860b !important
}