
:root {
  --bg-main: #4d0718;
  --bg-main-dark: #380412;
  --accent: #e7c98a;
  --accent-soft: #f3e2b6;
  --text-main: #fdf7f2;
  --text-muted: #f0e3d9;
  --surface: rgba(22, 5, 10, 0.9);
  --card-bg: #faf5ef;
  --card-border: rgba(0,0,0,0.05);
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.35);
  --radius-lg: 22px;
  --radius-md: 14px;
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #7a0b26 0, #23020a 55%, #060208 100%);
  min-height: 100vh;
}

/* Layout helpers */

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

.section {
  padding: 4.5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
  color: var(--accent);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}

/* Navbar */

.site-header {
  position: relative;
  color: var(--text-main);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 4vw;
  background: linear-gradient(to bottom, rgba(10,0,2,0.95), rgba(10,0,2,0.7));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 0.16rem;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 4vw 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
  color: var(--accent);
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-soft));
  color: #3a0911;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

.btn.ghost {
  border-color: rgba(255,255,255,0.22);
  color: var(--text-main);
  background: rgba(0,0,0,0.2);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
}

.btn.full-width {
  width: 100%;
}

.hero-location {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  max-width: 520px;
}

.hero-location i {
  margin-top: 0.15rem;
}

/* About */

.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(255,255,255,0.07), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--accent);
  margin-top: 0;
}

.about-text p {
  color: var(--text-muted);
}

.about-text ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.about-text li {
  margin-bottom: 0.25rem;
}

.about-card {
  background: var(--surface);
  border-radius: 26px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.06);
}

.about-card h3 {
  margin: 0 0 1.1rem;
  font-family: "Playfair Display", serif;
  color: var(--accent-soft);
}

.about-items article + article {
  margin-top: 1rem;
}

.about-items h4 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  color: var(--accent);
}

.about-items p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-items i {
  margin-right: 0.35rem;
}

/* Menu highlight */

.highlight {
  background: radial-gradient(circle at top, #5c081b 0, #160108 55%, #080208 100%);
}

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

.menu-card {
  background: var(--card-bg);
  color: #321013;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.card-body h3 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #4d0718;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #5b3638;
}

/* Drinks */

.drinks {
  background: radial-gradient(circle at center, #160108 0, #050104 55%, #000 100%);
}

.top3-image {
  width: 148px;
  display: block;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.drink-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.drink-card .card-body {
  padding: 1.1rem 1.25rem 1.3rem;
}

.drink-card h3 {
  margin: 0 0 0.3rem;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}

.drink-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Gallery */

.gallery-section {
  background: radial-gradient(circle at top, #1c050d 0, #050104 55%, #000 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
  position: relative;
  isolation: isolate;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-fast), filter var(--transition-fast);
  filter: saturate(1.05) contrast(1.02);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Video */

.video-section {
  background: radial-gradient(circle at center, #14030b 0, #050104 55%, #000 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.video-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--accent);
  margin-top: 0;
}

.video-text p {
  color: var(--text-muted);
}

.video-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.video-wrapper iframe {
  width: 100%;
  height: 280px;
  display: block;
}

/* Social */

.social-section {
  background: radial-gradient(circle at top, #2b0512 0, #060107 55%, #000 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 1.7rem;
}

.social-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.social-card h2 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  color: var(--accent-soft);
}

.social-card p {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.24);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
}

.social-btn:hover {
  background: rgba(0,0,0,0.5);
  border-color: var(--accent);
}

.fb-embed,
.ig-embed {
  background: rgba(0,0,0,0.5);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.fb-embed h3,
.ig-embed h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}

.fb-iframe-wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.ig-placeholder {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.ig-logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.ig-placeholder p {
  margin: 0;
  font-size: 0.9rem;
}

.ig-placeholder a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
}

/* Contact */

.contact {
  background: radial-gradient(circle at center, #1a040c 0, #050104 55%, #000 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  margin-top: 0;
}

.contact-info p {
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1rem;
  color: var(--text-muted);
}

.contact-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.contact-list i {
  margin-top: 0.15rem;
  color: var(--accent-soft);
}

.contact-list a {
  color: var(--accent-soft);
  text-decoration: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(231,201,138,0.6);
}

.map-link:hover {
  border-bottom-color: #fff;
}

.contact-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  color: var(--accent-soft);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.33rem;
}

.form-row label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
}

.form-row input,
.form-row textarea {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.7rem 0.9rem;
  background: rgba(0,0,0,0.45);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  resize: vertical;
}

.form-row textarea {
  border-radius: 14px;
  min-height: 120px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(231,201,138,0.5);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 4vw 1.6rem;
  background: linear-gradient(to top, #050104, #12010a);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.footer-title {
  margin: 0;
  font-weight: 600;
}

.footer-sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* Floating WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #38c172, #15803d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 16px 38px rgba(0,0,0,0.7);
  z-index: 30;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 44px rgba(0,0,0,0.85);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .about-grid,
  .menu-grid,
  .drinks-grid,
  .gallery-grid,
  .video-grid,
  .social-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-wrapper iframe {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-inline: 5vw;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(4,0,1,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.7rem 5vw 0.9rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 240px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding-block: 0.45rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .section {
    padding: 3.2rem 0;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .site-footer {
    padding-inline: 5vw;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .menu-grid,
  .drinks-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image {
    border-radius: 24px;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-wrapper iframe {
    height: 200px;
  }
}
