:root {
  --bg: #070707;
  --text: #f4eee2;
  --muted: #c7b9a1;
  --gold: #d4a954;
  --gold-strong: #f3c977;
  --border: rgba(226, 182, 96, 0.38);
  --card: rgba(18, 18, 18, 0.88);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: radial-gradient(circle at 12% 10%, #1d1405 0%, rgba(29, 20, 5, 0) 35%),
    radial-gradient(circle at 90% 14%, rgba(212, 169, 84, 0.16) 0%, rgba(212, 169, 84, 0) 36%),
    linear-gradient(130deg, #050505 0%, #0a0a0a 42%, #121212 100%);
}

.bg-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -3;
}

.bg-glow-a {
  top: -7rem;
  left: -10rem;
  background: rgba(212, 169, 84, 0.18);
}

.bg-glow-b {
  bottom: -8rem;
  right: -8rem;
  background: rgba(153, 104, 30, 0.26);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 0),
    radial-gradient(circle at 80% 55%, #fff 1px, transparent 0),
    radial-gradient(circle at 42% 84%, #fff 1px, transparent 0);
  background-size: 230px 230px;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.2rem 0;
}

.intro-start {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.52) 0%, rgba(7, 7, 7, 0.48) 44%, rgba(7, 7, 7, 0.72) 100%),
    url("./sfondo.JPG") center 20% / cover no-repeat;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(206, 164, 80, 0.23);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-main {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  letter-spacing: 0.08em;
  font-weight: 800;
}

.brand-sub {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.15rem;
}

.main-nav a {
  color: #f2e8d6;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.offers-banner {
  border-top: 1px solid rgba(212, 169, 84, 0.24);
  border-bottom: 1px solid rgba(212, 169, 84, 0.24);
  background: linear-gradient(90deg, rgba(35, 26, 8, 0.96), rgba(16, 16, 16, 0.96), rgba(35, 26, 8, 0.96));
}

.offers-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0.9rem 0;
}

.offer-pill {
  border: 1px solid rgba(236, 198, 122, 0.4);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.55);
  padding: 0.7rem 0.9rem;
  text-align: center;
}

.offer-day {
  margin: 0;
  color: #f5ddad;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-main {
  margin: 0.08rem 0 0;
  color: var(--gold-strong);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 4.3rem;
}

.hero-content,
.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(23, 23, 23, 0.94), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
}

.hero-content {
  padding: clamp(1.7rem, 3.2vw, 2.8rem);
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 5, 5, 0.85) 4%, rgba(5, 5, 5, 0.55) 43%, rgba(5, 5, 5, 0.78) 100%),
    url("./img1.png") center 22% / cover no-repeat;
}

.hero-photo > * {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-strong);
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
}

.hero-content h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.05rem, 5.2vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  color: #e0cfae;
  max-width: 58ch;
  font-size: 1.05rem;
  margin: 1.1rem 0 1.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(106deg, #b78030 0%, #f2c777 52%, #c0892e 100%);
  color: #1c1307;
  box-shadow: 0 10px 25px rgba(226, 177, 86, 0.25);
}

.btn-secondary {
  color: #faedd4;
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid rgba(228, 189, 113, 0.52);
}

.chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.chip {
  border-radius: 999px;
  background: rgba(212, 169, 84, 0.12);
  border: 1px solid rgba(212, 169, 84, 0.34);
  color: #f4dcac;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
}

.hero-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.hero-panel h2 {
  font-family: "Cinzel", serif;
  margin: 0;
  font-size: 1.45rem;
}

.panel-strong {
  font-size: 1.55rem;
  color: var(--gold-strong);
  margin: 0.65rem 0;
  font-weight: 700;
}

.panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.05rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-tag {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  font-family: "Cinzel", serif;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-category-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(175deg, rgba(24, 24, 24, 0.92), rgba(8, 8, 8, 0.95));
  padding: 1.1rem;
}

.menu-category-card h3 {
  margin: 0 0 0.9rem;
  color: var(--gold-strong);
  font-family: "Cinzel", serif;
  font-size: 1.28rem;
}

.dish {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(212, 169, 84, 0.24);
}

.dish:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dish-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.dish-name,
.dish-price,
.dish-desc {
  margin: 0;
}

.dish-name {
  font-weight: 700;
  color: #fce6bc;
}

.dish-price {
  font-family: "Cinzel", serif;
  color: #ffdba3;
  white-space: nowrap;
}

.dish-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.allergen {
  color: #c9a25a;
  font-weight: 600;
}

.menu-note {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 0.93rem;
}

.story-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.93), rgba(8, 8, 8, 0.95));
  padding: 1.2rem 1.35rem;
}

.story-card p {
  margin: 0 0 1rem;
  color: #eadbc2;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.hours-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.93), rgba(8, 8, 8, 0.94));
  padding: 1rem 1.1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.72rem 0.35rem;
  border-bottom: 1px solid rgba(212, 169, 84, 0.18);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table th {
  color: #f9dfad;
  text-align: left;
  font-weight: 700;
}

.hours-table td {
  color: #f4ebda;
  text-align: right;
  font-weight: 600;
}

.contact-simple .section-head {
  margin-bottom: 0.8rem;
}

.contact-whatsapp {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.93), rgba(8, 8, 8, 0.94));
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.photo-marquee-section {
  padding-bottom: 2.6rem;
}

.photo-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(212, 169, 84, 0.24);
  border-bottom: 1px solid rgba(212, 169, 84, 0.24);
  background: rgba(10, 10, 10, 0.95);
}

.photo-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  padding: 0.7rem;
  animation: marquee 36s linear infinite;
}

.photo-track img {
  width: min(36vw, 440px);
  min-width: 260px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(212, 169, 84, 0.36);
}

.map-section iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

.footer {
  border-top: 1px solid rgba(212, 169, 84, 0.24);
  padding: 1.4rem 0;
  background: rgba(8, 8, 8, 0.92);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d5c3a3;
  font-size: 0.9rem;
}

.footer-social-wrap {
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #f9deac;
  text-decoration: none;
  border: 1px solid rgba(228, 189, 113, 0.38);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  transition: 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(212, 169, 84, 0.15);
}

.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  text-decoration: none;
  color: #1a1206;
  font-weight: 700;
  background: linear-gradient(110deg, #ad7a2e, #f0c978);
  border-radius: 999px;
  box-shadow: 0 13px 26px rgba(189, 141, 61, 0.35);
  padding: 0.8rem 1.15rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

  .offers-inner,
  .hero,
  .menu-categories {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.4rem;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 3.35rem 0;
  }

  .topbar-inner {
    justify-content: center;
    padding: 0.75rem 0;
  }

  .brand {
    align-items: center;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 11vw, 2.5rem);
  }

  .panel-strong {
    font-size: 1.28rem;
  }

  .hours-table td {
    text-align: left;
  }

  .photo-track img {
    width: 78vw;
    min-width: 78vw;
    height: 180px;
  }

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

  .float-cta {
    display: none;
  }
}
