:root {
  --dark-green: #0f3d2e;
  --deep-green: #0b2f24;
  --green-light: #184f3c;
  --gold: #d4af37;
  --gold-soft: #f0d98c;
  --white: #ffffff;
  --off-white: #f8f8f3;
  --text: #1e1e1e;
  --text-light: #5f5f5f;
  --border: rgba(255, 255, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 20px 50px rgba(12, 24, 20, 0.12);
  --radius: 22px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9faf6 0%, #f5f6f1 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.06), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(15, 61, 46, 0.05), transparent 28%);
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.section-text,
.section-subtext {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c9971f);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.34);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.92rem;
}

.btn-full {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark-green);
  border: 1px solid rgba(15, 61, 46, 0.2);
  box-shadow: none;
}

.btn-outline-dark:hover {
  background: rgba(15, 61, 46, 0.06);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #20c65a, #149944);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #b68c1a);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.logo-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 0.78rem;
  color: inherit;
  opacity: 0.85;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.header .logo,
.header .nav-links a {
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo,
.header.scrolled .nav-links a {
  color: var(--deep-green);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.desktop-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
}

.header.scrolled .hamburger {
  background: rgba(15, 61, 46, 0.08);
}

.hamburger span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background: currentColor;
  color: var(--white);
  transition: 0.3s ease;
}

.header.scrolled .hamburger span {
  color: var(--deep-green);
}

.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 31px; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(360px, 88%);
  height: 100vh;
  background: linear-gradient(180deg, #103728 0%, #0d2f23 100%);
  z-index: 1001;
  padding: 24px 22px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  color: var(--white);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.25);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.close-menu {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-links a {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  font-size: 1rem;
  transition: var(--transition);
}

.mobile-links a:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.mobile-contact-card {
  margin-top: auto;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-card p {
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.88);
}

.mobile-contact-card i {
  color: var(--gold);
  margin-right: 8px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap,
.hero-video,
.hero-image-fallback,
.hero-overlay,
.hero-texture {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-fallback {
  background: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 16, 0.78) 0%, rgba(6, 24, 16, 0.55) 45%, rgba(6, 24, 16, 0.28) 100%);
}

.hero-texture {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.14), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08), transparent 22%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding-top: 80px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  position: relative;
}

.scroll-down span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 10px;
  background: var(--white);
  transform: translateX(-50%);
  animation: wheel 1.6s infinite;
}

@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.about-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.highlight-card {
  padding: 24px 18px;
  border-radius: 20px;
  text-align: center;
}

.highlight-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.highlight-card h4 {
  font-size: 0.98rem;
  color: var(--deep-green);
}

.image-card {
  padding: 14px;
  border-radius: 30px;
  overflow: hidden;
}

.image-card img {
  border-radius: 22px;
  height: 500px;
  object-fit: cover;
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-category {
  padding: 26px;
  border-radius: 26px;
}

.menu-category h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark-green);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-item h4 {
  font-size: 1rem;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.menu-item span {
  color: var(--gold);
  font-weight: 700;
}

/* SPECIALS */
.special-section {
  background:
    linear-gradient(180deg, rgba(15, 61, 46, 0.03) 0%, rgba(255,255,255,0) 100%);
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.special-card {
  transition: var(--transition);
}

.special-card:hover {
  transform: translateY(-8px);
}

.special-image {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.special-image img {
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

.special-card:hover .special-image img {
  transform: scale(1.06);
}

.special-content {
  border-radius: 0 0 24px 24px;
  padding: 22px;
}

.special-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.special-content p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-row: span 2;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 24px;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-top img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-top h4 {
  color: var(--deep-green);
  margin-bottom: 5px;
}

.stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-card p {
  color: var(--text-light);
  line-height: 1.85;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info {
  padding: 34px;
  border-radius: 28px;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  color: var(--deep-green);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.contact-info i {
  color: var(--gold);
  margin-top: 5px;
}

.contact-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-box {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* FOOTER */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0e3729 0%, #09261c 100%);
  color: var(--white);
  padding-top: 75px;
  overflow: hidden;
}

.footer-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,0.08), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04), transparent 18%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 340px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gold-soft);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 0 20px;
  color: rgba(255,255,255,0.72);
  position: relative;
  z-index: 1;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20c65a;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(32, 198, 90, 0.35);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

/* REVEAL ANIMATIONS */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal {
  transform: translateY(40px);
}

.reveal-up {
  transform: translateY(55px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .desktop-nav,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-card img {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .special-grid,
  .testimonial-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .map-box iframe {
    min-height: 340px;
  }

  .footer {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 14px 0;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .logo-text strong {
    font-size: 0.92rem;
  }

  .logo-text small {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .btn {
    width: 100%;
  }

  .contact-info,
  .testimonial-card,
  .menu-category {
    padding: 22px;
  }
}