:root {
  --green-950: #102116;
  --green-900: #17351f;
  --green-800: #1f4a2b;
  --green-700: #2f6f3e;
  --green-500: #5ca86b;
  --green-100: #eaf6e9;
  --lime: #b7d86a;
  --cream: #fff8ec;
  --sand: #f5ead9;
  --terracotta: #d9824b;
  --text: #1f2b22;
  --muted: #657269;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 33, 22, .16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 248, 236, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(16, 33, 22, .08);
}

.navbar {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -.02em;
}

.site-header.is-scrolled .brand {
  color: var(--green-900);
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--lime), #f6d783);
  box-shadow: 0 10px 30px rgba(183, 216, 106, .25);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text small {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 700;
  color: currentColor;
  opacity: .72;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-menu {
  color: var(--green-900);
  background: rgba(255, 255, 255, .68);
  border-color: rgba(31, 74, 43, .12);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-weight: 750;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-menu a:hover {
  background: var(--green-100);
}

.nav-menu__cta {
  color: var(--green-950) !important;
  background: var(--lime) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--lime);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--green-950);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: 100svh;
  background: var(--green-950);
}

.hero-carousel,
.hero-slide {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 33, 22, .88), rgba(16, 33, 22, .64) 42%, rgba(16, 33, 22, .22)),
              linear-gradient(0deg, rgba(16, 33, 22, .55), rgba(16, 33, 22, .05));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--lime);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(183, 216, 106, .28);
}

.btn--glass {
  color: var(--white);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(18px);
}

.btn--dark {
  color: var(--white);
  background: var(--green-950);
  box-shadow: 0 14px 32px rgba(16, 33, 22, .22);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn--prev {
  left: max(16px, calc((100vw - var(--container)) / 2));
}

.carousel-btn--next {
  right: max(16px, calc((100vw - var(--container)) / 2));
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .44);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.carousel-dots button.is-active {
  width: 34px;
  background: var(--lime);
}

.section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.intro-section {
  margin-top: -78px;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-card,
.testimonial-card,
.location-card,
.cta-card {
  border: 1px solid rgba(31, 74, 43, .09);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 28px;
  backdrop-filter: blur(12px);
}

.intro-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--green-100);
  font-size: 1.8rem;
}

.intro-card h3,
.dish-card h3,
.testimonial-card footer,
.location-card h2,
.site-footer h3 {
  margin: 0;
}

.intro-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.section-kicker {
  color: var(--green-700);
}

.split h2,
.section-heading h2,
.experience h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--green-950);
}

.split p,
.section-heading p,
.experience__text p,
.cta-card p {
  font-size: 1.05rem;
  color: var(--muted);
}

.schedule-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 16px;
}

.schedule-card div {
  padding: 18px;
  border: 1px solid rgba(31, 74, 43, .08);
  border-radius: var(--radius-md);
  background: var(--white);
}

.schedule-card strong,
.schedule-card span {
  display: block;
}

.schedule-card span {
  color: var(--green-700);
  font-weight: 800;
}

.note {
  font-size: .92rem !important;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 142px;
  padding: 18px 20px;
  color: var(--green-950);
  border-radius: 24px;
  background: var(--lime);
  box-shadow: 0 20px 50px rgba(16, 33, 22, .24);
}

.floating-badge span,
.floating-badge small {
  display: block;
}

.floating-badge span {
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.floating-badge small {
  margin-top: 5px;
  font-weight: 800;
}

.menu-section {
  background: linear-gradient(180deg, var(--sand), var(--cream));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid rgba(31, 74, 43, .09);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 22, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.dish-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(16, 33, 22, .15);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1.22 / .82;
  object-fit: cover;
}

.dish-card__body {
  padding: 22px;
}

.dish-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dish-card__top span {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--green-950);
  border-radius: 999px;
  background: var(--green-100);
  font-weight: 950;
}

.dish-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  border-radius: 999px;
  background: var(--lime);
  font-size: .85rem;
  font-weight: 950;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(16, 33, 22, .1);
}

.gallery__large {
  grid-column: 1 / -1;
  height: 380px !important;
}

.testimonials {
  background: var(--green-950);
  color: var(--white);
}

.testimonials .section-heading h2 {
  color: var(--white);
}

.testimonials .section-heading p {
  color: rgba(255, 255, 255, .72);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
}

.testimonial-card footer {
  color: var(--lime);
  font-weight: 900;
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.location-card {
  padding: clamp(26px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(31, 74, 43, .08);
  border-radius: 18px;
  background: var(--white);
  transition: transform .2s ease, border-color .2s ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 62, .28);
}

.contact-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-100);
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list small {
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--green-100);
  font-weight: 900;
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--sand);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.cta-section {
  padding: 0 0 clamp(72px, 8vw, 118px);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, var(--lime), #f7d88a);
}

.cta-card p {
  margin-bottom: 0;
  color: rgba(16, 33, 22, .72);
}

.cta-card .section-kicker {
  color: var(--green-950);
}

.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, .74);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
  padding-bottom: 42px;
}

.brand--footer {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 14px 0 0;
}

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 48px rgba(37, 211, 102, .38);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 80;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-content: center;
    gap: 12px;
    padding: 32px;
    color: var(--white) !important;
    border-radius: 0;
    border: 0;
    background: rgba(16, 33, 22, .96) !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    justify-content: center;
    min-height: 54px;
    font-size: 1.25rem;
  }

  .carousel-btn {
    display: none;
  }

  .hero__content {
    padding-top: 86px;
  }

  .intro-grid,
  .menu-grid,
  .testimonial-grid,
  .split,
  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-section {
    margin-top: 0;
    padding-top: 56px;
  }

  .split__media img {
    height: 520px;
  }

  .cta-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar,
  .footer-bottom {
    width: min(100% - 24px, var(--container));
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand__text small {
    font-size: .66rem;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .split__media img,
  .gallery__large,
  .gallery img,
  .map-card,
  .map-card iframe {
    min-height: auto;
    height: auto !important;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    aspect-ratio: 1.2 / .82;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}

.brand__logo {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.nav-menu__cta--flag {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.nav-menu a.nav-menu__cta--flag {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  background: var(--lime) !important;
  overflow: hidden;
  flex: 0 0 52px;
}

.nav-menu a.nav-menu__cta--flag .flag-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}
