:root {
  --navy: #071425;
  --navy-2: #0b1b30;
  --gold: #c9aa62;
  --gold-soft: #e6d39f;
  --gold-deep: #8b681f;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --ink: #111c2e;
  --muted: #717680;
  --line: rgba(7, 20, 37, 0.11);
}

body {
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

.hero h1,
.intro h2,
.section-title,
.item h3,
.qr-card h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero {
  min-height: 430px;
  justify-content: center;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 37, 0.32), rgba(7, 20, 37, 0.9));
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  display: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  text-align: center;
}

.logo-wrap {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: logo-reveal 0.9s cubic-bezier(.2,.8,.2,1) both, logo-float 5s ease-in-out 1s infinite;
  will-change: transform;
}

@keyframes logo-reveal {
  from { opacity: 0; transform: translateY(-14px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.logo {
  width: clamp(280px, 38vw, 420px);
  height: auto;
  filter: none;
}

.eyebrow {
  margin: 19px 0 7px;
  color: var(--gold-soft);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 4.7rem);
  line-height: 0.95;
  color: #f3dfaa;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.hero p {
  max-width: 560px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot.active {
  width: 24px;
  border-radius: 999px;
  border-color: var(--gold);
  background: var(--gold);
}

.social-shell {
  padding: 18px 20px 25px;
  background: linear-gradient(180deg, #0b1b30 0%, #050f1d 100%);
  border-bottom: 1px solid rgba(201, 170, 98, 0.42);
}

.socials {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  background: transparent;
}

.social-btn {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(230, 211, 159, 0.55);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(180deg, #142d4c 0%, #08182c 100%);
  box-shadow:
    0 7px 0 #020a13,
    0 12px 22px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  border-color: var(--gold-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 9px 0 #020a13,
    0 16px 26px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.social-btn:active {
  transform: translateY(5px);
  box-shadow: 0 2px 0 #020a13, inset 0 2px 5px rgba(0, 0, 0, 0.35);
}

.social-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 211, 159, 0.72);
  border-radius: 50%;
  color: var(--gold-soft);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(0,0,0,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 3px 8px rgba(0,0,0,.25);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facebook .social-icon svg path,
.whatsapp-social .social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.social-icon .fill-dot {
  fill: currentColor;
  stroke: none;
}

.whatsapp-social {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(180deg, #163a32 0%, #0a221d 100%);
}

.whatsapp-social .social-icon {
  color: #54e792;
  border-color: rgba(84, 231, 146, 0.58);
}

.social-btn:hover .social-icon,
.social-btn:focus-visible .social-icon {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.nav-shell {
  background: rgba(247, 245, 240, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  padding-top: 11px;
  padding-bottom: 11px;
}

.nav a {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus,
.nav a.active {
  background: var(--navy);
  color: #fff;
}

main {
  padding-top: 44px;
}

.intro {
  align-items: center;
  padding: 0 3px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.intro h2 {
  font-size: 2.45rem;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.intro p {
  font-size: 0.9rem;
}

.currency {
  color: var(--navy);
  border: 1px solid var(--gold);
  background: transparent;
}

.menu-section {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: none;
}

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

.category-badge {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(201, 170, 98, 0.72);
  border-radius: 999px;
  color: #9a7830;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-head {
  min-height: 72px;
  background: var(--paper);
  color: var(--navy);
  padding: 16px 20px;
  cursor: default;
}

.section-title {
  font-size: 1.6rem;
  color: var(--gold-deep);
  letter-spacing: -0.015em;
}

.section-count {
  color: var(--muted);
}

.chevron {
  width: 32px;
  height: 32px;
  border-color: rgba(201, 170, 98, 0.65);
  color: #9a7830;
}

.items {
  border-top: 1px solid var(--line);
  background: #fff;
}

.item h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.3;
}

.desc {
  color: #606671;
  font-size: 0.82rem;
  line-height: 1.7;
}

.price {
  color: var(--gold-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.qr-card h2 {
  color: #f3dfaa;
}

.qr-card {
  max-width: 390px;
  border-radius: 13px;
  box-shadow: none;
}

.actions {
  background: rgba(7, 20, 37, 0.98);
}

.action {
  border: 1px solid rgba(230, 211, 159, 0.55);
  border-radius: 14px;
  box-shadow: 0 5px 0 #020a13, 0 9px 18px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.action:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #020a13, inset 0 2px 5px rgba(0,0,0,.3);
}

.action.whatsapp {
  background: linear-gradient(180deg, #35df79, #1aae57);
}

.action.directions {
  background: linear-gradient(180deg, #173251, #0a1c31);
}

@media (max-width: 720px) {
  .hero {
    min-height: 390px;
  }

  .hero-inner {
    width: calc(100% - 34px);
    align-items: center;
    text-align: center;
  }

  .logo {
    width: min(340px, 88vw);
    height: auto;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    max-width: 300px;
  }

  .socials {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .whatsapp-social {
    grid-column: auto;
  }

  .social-btn {
    min-height: 58px;
    font-size: 0.72rem;
  }

  .social-icon {
    width: 25px;
    height: 25px;
  }

  main {
    padding-top: 32px;
  }

  .intro {
    align-items: flex-start;
  }

  .section-head {
    min-height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap {
    animation: none;
  }
}
