/* Reset and variables */
:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --bg-card: #111111;
  --surface: #1a1a1a;
  --text: #f7f4ee;
  --muted: #b8b1a4;
  --gold: #c7a15a;
  --gold-strong: #f1d18a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #080808, #111111);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
  color: var(--white);
}

.section-subtitle {
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.gold {
  color: var(--gold);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(199, 161, 90, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #efc982, #9d6e22);
  color: #090909;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.25s ease;
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-strong);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #8a5d19);
  color: #111;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.74rem;
  color: var(--gold-strong);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 44rem;
  color: #f0e7d6;
  margin-bottom: 2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #8a5d19);
  color: #111;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 161, 90, 0.48);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3,
.card-body h4 {
  margin-bottom: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  background: rgba(199, 161, 90, 0.12);
  color: var(--gold-strong);
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.price {
  color: var(--gold-strong);
  font-weight: 700;
}

.about-panel,
.contact-card,
.sidebar,
.order-panel,
.form-card,
.map-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image {
  min-height: 420px;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80') center/cover;
  border-radius: var(--radius);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(199, 161, 90, 0.15);
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  flex-shrink: 0;
}

.testimonial-slider {
  position: relative;
}

.testimonial-item {
  display: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.testimonial-item.active {
  display: block;
}

.masonry {
  columns: 3 240px;
  gap: 1rem;
}

.masonry img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 14px;
  break-inside: avoid;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(900px, 100%);
  max-height: 82vh;
  border-radius: 16px;
}

.form-card,
.order-panel,
.sidebar,
.contact-card,
.map-card {
  padding: 1.4rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.9rem 1rem;
  border-radius: 12px;
}

.form-grid textarea {
  min-height: 120px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 2rem;
}

.filter-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-pill.active {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #8a5d19);
  border-color: transparent;
}

.menu-card {
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
}

.order-layout {
  display: grid;
  grid-template-columns: 1.8fr 0.95fr;
  gap: 1.2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout {
  display: grid;
  gap: 0.7rem;
}

.newsletter {
  background: linear-gradient(135deg, rgba(199,161,90,0.16), rgba(255,255,255,0.04));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: min(100%, 280px);
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.25);
  color: var(--white);
}

.footer {
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer a,
.footer p {
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.whatsapp-float,
.back-top {
  position: fixed;
  right: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 998;
  border: none;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  bottom: 1rem;
  background: #25d366;
  color: white;
  font-size: 28px;
  text-decoration: none;
  border: 3px solid white;
}

.back-top {
  bottom: 5.5rem;
  background: linear-gradient(135deg, var(--gold), #8a5d19);
  color: #111;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.center-text {
  text-align: center;
}

@media (max-width: 920px) {
  .grid-3,
  .grid-4,
  .footer-grid,
  .order-layout,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    background: rgba(12,12,12,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .masonry {
    columns: 2 200px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.7rem;
  }

  .section {
    padding: 4rem 0;
  }

  .masonry {
    columns: 1;
  }
}
.voice-agent-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: linear-gradient(135deg, #c9a45c, #e0c27a);
    color: #111;

    border: 2px solid #e0c27a;
    border-radius: 50%;

    font-size: 32px;
    cursor: pointer;
    z-index: 9999;

    box-shadow: 0 8px 25px rgba(201,164,92,0.4);
    transition: all 0.3s ease;
}

.voice-agent-btn:hover {
    transform: scale(1.1);
}

.voice-agent-btn.listening {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
