:root {
  --green-900: #0b3d1e;
  --green-800: #13542a;
  --green-700: #1f6b3a;
  --gold-500: #d6a320;
  --gold-300: #f1ce73;
  --cream-100: #fdf8ef;
  --cream-200: #f5ecd8;
  --text-900: #1f241f;
  --text-700: #4e564f;
  --white: #ffffff;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-900);
  background: var(--cream-100);
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream-200);
}

.section-dark {
  background: var(--green-900);
}

.section-label {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
}

.section-label-light {
  color: var(--gold-300);
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.section-title-light {
  color: var(--white);
}

.section-head {
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 650px;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  background: var(--green-900);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
}

.loader-title {
  margin: 0;
  color: var(--gold-300);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(11, 61, 30, 0.88);
  backdrop-filter: blur(10px);
}

.site-header.is-sticky {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
}

.brand-text {
  color: var(--white);
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 9px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  background: var(--white);
  border-radius: 4px;
}

.nav-links {
  display: none;
}

.mobile-menu {
  display: none;
  padding: 0 4vw 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-900);
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.3rem;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.92);
  padding: 0.9rem 0.3rem;
  font-weight: 500;
}

.mobile-cta {
  border-radius: 999px;
  text-align: center;
  margin-top: 0.25rem;
  background: var(--gold-500);
  color: #1e2a18;
}

.mobile-cta-light {
  background: var(--white);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: clip;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("images/hero-bg.jpeg") center / cover no-repeat;
}

.hero-overlay {
  background: linear-gradient(160deg, rgba(6, 26, 12, 0.8), rgba(14, 53, 27, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  line-height: 1.08;
}

.hero-copy {
  margin: 1rem auto 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-500);
  color: #1e2a18;
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.features {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features article {
  padding: 1.1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features article:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.features h2 {
  margin: 0;
  color: var(--gold-300);
  font-size: 0.92rem;
}

.features p {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
}

.about-grid {
  display: grid;
  gap: 1.4rem;
}

.about-image {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-grid p {
  margin: 0 0 0.8rem;
  color: var(--text-700);
  line-height: 1.75;
}

.menu-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e8dec7;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card h3 {
  margin: 0;
  padding: 0.9rem 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.review-grid {
  display: grid;
  gap: 0.9rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 1rem;
}

.review-card p {
  margin: 0 0 0.7rem;
  color: var(--text-700);
  line-height: 1.65;
}

.review-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
}

.contact-list li {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.contact-list a {
  color: var(--gold-300);
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  background: #06120b;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-logo {
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  margin-bottom: 0.6rem;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--gold-300);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.footer-btn {
  margin-top: 0.5rem;
}

.footer-phone {
  margin: 0.3rem 0 0;
  font-weight: 700;
}

.footer-phone a {
  color: var(--gold-300);
}

.footer-directions {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  min-width: 140px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  margin: 2.2rem 0 0;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid img:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

@media (min-width: 992px) {
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.15rem;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
  }

  .nav-link-accent {
    color: var(--gold-300) !important;
  }

  .nav-call-btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    line-height: 1;
  }

  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .features article {
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1.3rem 0.75rem;
  }

  .features article:last-child {
    border-right: 0;
  }

  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }
}
