/* ============================================================
   Simply Enak — Main Stylesheet
   Brand: Indonesian & Asian restaurant, Kangar, Perlis
   Palette: green #2D5A3D / dark #1B3A2A / gold #C8A45C
   Fonts: Montserrat (display), Inter (body), Playfair Display (editorial)
   ============================================================ */

:root {
  --green-primary: #2D5A3D;
  --green-medium: #3A7D54;
  --green-light: #F0F7F0;
  --green-card: #E4F0E4;
  --green-dark: #1B3A2A;
  --gold: #C8A45C;
  --gold-light: #D4B76A;
  --cream: #F5F9F5;
  --white: #FFFFFF;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --maxw: 80rem;          /* max-w-7xl */
  --maxw-5xl: 64rem;
  --maxw-4xl: 56rem;
  --maxw-md: 28rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: hsl(150 30% 15%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.1; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }
address { font-style: normal; }
ul { list-style: none; padding: 0; }

.font-display { font-family: 'Montserrat', sans-serif; }
.font-editorial { font-family: 'Playfair Display', serif; }
.text-shadow-hero { text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }
.container-5xl { max-width: var(--maxw-5xl); }
.container-4xl { max-width: var(--maxw-4xl); }

.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }

/* ============================================================
   NAVBAR
   ============================================================ */
.se-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .5s ease;
  background: transparent;
}
.se-nav.scrolled,
.se-nav.solid {
  background: rgba(240,247,240,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}
.se-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .se-nav__inner { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .se-nav__inner { height: 5.5rem; padding-inline: 2rem; } }
.se-nav__logo img { height: 4rem; width: auto; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
@media (min-width: 1024px) { .se-nav__logo img { height: 5rem; } }

.se-nav__links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .se-nav__links { display: flex; } }
.se-nav__link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-block: .5rem;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
.se-nav.scrolled .se-nav__link,
.se-nav.solid .se-nav__link { color: var(--gray-600); }
.se-nav__link:hover { color: var(--green-primary); }
.se-nav__link.active { color: var(--green-primary); }
.se-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s ease;
}
.se-nav__link:hover::after { width: 100%; }
.se-nav__link.active::after { width: 100%; }

.se-nav__toggle { display: inline-flex; padding: .5rem; color: #fff; }
.se-nav.scrolled .se-nav__toggle,
.se-nav.solid .se-nav__toggle { color: var(--green-primary); }
@media (min-width: 1024px) { .se-nav__toggle { display: none; } }
.se-nav__toggle svg { width: 1.5rem; height: 1.5rem; }
.se-nav__toggle .icon-close { display: none; }
.se-nav.open .se-nav__toggle .icon-open { display: none; }
.se-nav.open .se-nav__toggle .icon-close { display: block; }

.se-nav__mobile {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(240,247,240,.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all .3s ease;
}
.se-nav.open .se-nav__mobile { max-height: 400px; opacity: 1; }
.se-nav__mobile-inner { padding: 1rem; display: flex; flex-direction: column; gap: .25rem; }
.se-nav__mobile a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background .2s;
}
.se-nav__mobile a:hover { background: var(--green-card); }
.se-nav__mobile a.active { background: var(--green-primary); color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .875rem;
  padding: 1rem 2rem;
  transition: all .3s ease;
  cursor: pointer;
}
.btn svg { width: 1rem; height: 1rem; transition: transform .3s; }
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 10px 15px -3px rgba(200,164,92,.3);
}
.btn-gold:hover { background: var(--gold-light); transform: scale(1.05); }
.btn-gold:hover svg { transform: translateX(.25rem); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.btn-green {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.btn-green:hover { background: var(--green-dark); transform: scale(1.05); }
.btn-green:hover svg { transform: translateX(.25rem); }

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #243017 0%, #1e2716 55%, #19210f 100%);
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  animation: pulse 4s cubic-bezier(.4,0,.6,1) infinite;
}
.hero__blob--1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(200,164,92,.1); }
.hero__blob--2 { bottom: 5rem; right: 5rem; width: 24rem; height: 24rem; background: rgba(58,125,84,.2); animation-delay: 1s; }
.hero__blob--3 { top: 50%; left: 33%; width: 16rem; height: 16rem; background: rgba(200,164,92,.05); animation-delay: 2s; }
.hero__rings { position: absolute; top: 0; right: 0; width: 10rem; height: 10rem; opacity: .1; }

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 8rem 1rem;
  width: 100%;
}
@media (min-width: 640px) { .hero__content { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .hero__content { padding-block: 8.5rem 2rem; padding-inline: 2rem; } }
.hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.hero__text { text-align: center; }
@media (min-width: 1024px) { .hero__text { text-align: left; } }
.hero__logo {
  height: 6rem; width: auto; margin: 0 auto 1.5rem;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.15));
}
@media (min-width: 1024px) { .hero__logo { height: 8rem; margin-inline: 0; } }
.hero__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  max-width: 32rem;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.625;
}
@media (min-width: 640px) { .hero__subtitle { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero__subtitle { margin-inline: 0; } }
.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero__cta { flex-direction: row; } }
@media (min-width: 1024px) { .hero__cta { justify-content: flex-start; } }
.hero__meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero__meta { justify-content: flex-start; } }
.hero__meta-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .875rem;
}
.hero__meta-item svg { width: 1rem; height: 1rem; color: var(--gold); }

.hero__images { position: relative; display: none; }
@media (min-width: 1024px) { .hero__images { display: block; } }
.hero__images-wrap { position: relative; width: 100%; aspect-ratio: 4/5; }
@media (min-width: 1024px) { .hero__images-wrap { transform: translateY(-4.5rem); } }
.hero__img {
  position: absolute;
  border-radius: 1.5rem;
  overflow: hidden;
}
.hero__img img, .hero__img video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__img--main {
  top: 50%; left: 62%;
  transform: translate(-50%, -50%);
  width: 70%; aspect-ratio: 3/4;
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  border: 2px solid rgba(200,164,92,.3);
}
.hero__img--s1 {
  top: 0; right: 0;
  width: 45%; aspect-ratio: 3/4;
  border-radius: 1rem;
  z-index: 20;
  transform: rotate(6deg);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.2);
}
.hero__img--s2 {
  bottom: -1rem; left: 0;
  width: 40%; aspect-ratio: 3/4;
  border-radius: 1rem;
  z-index: 20;
  transform: rotate(-6deg);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.2);
}

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* Hero image floating — pure CSS so it runs with or without GSAP.
   Each keyframe preserves the image's base transform (centering / tilt). */
@keyframes float-main { 0%,100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 12px)); } }
@keyframes float-storefront { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float-s1   { 0%,100% { transform: rotate(6deg)  translateY(0); } 50% { transform: rotate(6deg)  translateY(-12px); } }
@keyframes float-s2   { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }
.hero__img--main { animation: float-main 6s   ease-in-out infinite; }
.hero__img--s1   { animation: float-s1   5s   ease-in-out .6s  infinite; }
.hero__img--s2   { animation: float-s2   5.5s ease-in-out 1.2s infinite; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding-block: 5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }
.section--sm { padding-block: 4rem; }
@media (min-width: 1024px) { .section--sm { padding-block: 6rem; } }
.bg-light { background: var(--green-light); }
.bg-card { background: var(--green-card); }
.grad-welcome { background: linear-gradient(180deg, #F0F7F0 0%, #E4F0E4 100%); }
.grad-up { background: linear-gradient(180deg, #E4F0E4 0%, #F0F7F0 100%); }
.grad-dark { background: linear-gradient(135deg, #2D5A3D 0%, #1B3A2A 100%); }

.eyebrow {
  color: var(--green-primary);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: .75rem;
  font-size: 2.25rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.title-rule {
  width: 4rem; height: 4px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 9999px;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }

/* Welcome quote */
.welcome-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  line-height: 1.625;
  font-style: italic;
}
@media (min-width: 640px) { .welcome-quote { font-size: 1.875rem; } }
@media (min-width: 1024px) { .welcome-quote { font-size: 2.25rem; } }
.welcome-line {
  margin-top: 2rem;
  width: 6rem; height: 4px;
  background: var(--gold);
  margin-inline: auto;
  border-radius: 9999px;
  transform-origin: center;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.phil__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .phil__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.phil__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: .75rem;
  line-height: 1.15;
}
@media (min-width: 1024px) { .phil__title { font-size: 3rem; } }
.phil__title span { color: var(--green-primary); }
.phil__text { margin-top: 1.5rem; color: var(--gray-600); line-height: 1.625; }
.phil__stats { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; padding: 1rem; background: rgba(255,255,255,.6); border-radius: .75rem; }
.stat-item__icon {
  width: 3rem; height: 3rem;
  margin: 0 auto;
  border-radius: .5rem;
  background: rgba(45,90,61,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
}
.stat-item__icon svg { width: 2rem; height: 2rem; }
.stat-item__num {
  margin-top: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-dark);
}
.stat-item__label { font-size: .75rem; color: var(--gray-500); margin-top: .25rem; }
.phil__image { position: relative; }
.phil__image-frame { aspect-ratio: 4/3; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.phil__image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.phil__image-frame img:hover { transform: scale(1.05); }
.phil__badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.phil__badge p:first-child { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green-dark); font-size: 1.125rem; }
.phil__badge p:last-child { font-size: .875rem; color: rgba(27,58,42,.8); }

/* ============================================================
   FEATURED / SIGNATURE DISHES (cards grid)
   ============================================================ */
.dish-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dish-grid { grid-template-columns: repeat(4, 1fr); } }
.featured-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: all .5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.featured-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); transform: translateY(-.5rem); }
.featured-card__media {
  aspect-ratio: 3/4;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(45,90,61,.1), rgba(200,164,92,.1));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-card__media svg { width: 3rem; height: 3rem; color: rgba(45,90,61,.3); transition: transform .3s; }
.featured-card:hover .featured-card__media svg { transform: scale(1.1); }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.featured-card:hover .featured-card__media img { transform: scale(1.05); }
.featured-card__media--photo { background: none; }
.featured-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.featured-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.featured-card__name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gray-900); transition: color .2s; }
.featured-card:hover .featured-card__name { color: var(--green-primary); }
.featured-card__price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green-primary); flex-shrink: 0; }
.featured-card__desc {
  margin-top: .5rem; font-size: .75rem; color: var(--gray-500);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.featured-card__tags { margin-top: auto; padding-top: .75rem; display: flex; flex-wrap: wrap; gap: .375rem; }

.tag { font-size: .625rem; font-weight: 700; border-radius: 9999px; padding: .125rem .5rem; }
.tag--best { background: var(--gold); color: var(--green-dark); }
.tag--chef { background: var(--green-primary); color: #fff; }
.tag--popular { background: var(--green-card); color: var(--green-primary); border: 1px solid rgba(45,90,61,.2); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  transition: all .5s ease;
}
.gallery-item:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item:not(.gallery-item--feature) img { aspect-ratio: 1/1; }

/* ============================================================
   FOOTER
   ============================================================ */
.se-footer { background: var(--green-dark); color: #fff; }
.se-footer__main { max-width: var(--maxw); margin-inline: auto; padding: 4rem 1rem; }
@media (min-width: 640px) { .se-footer__main { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .se-footer__main { padding-block: 5rem; padding-inline: 2rem; } }
.se-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .se-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.se-footer__logo { height: 6rem; width: auto; margin-bottom: 1rem; }
.se-footer__about { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.625; max-width: 20rem; }
.se-footer h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; color: var(--gold); }
.se-footer__list { display: flex; flex-direction: column; gap: .75rem; }
.se-footer__list a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.se-footer__list a:hover { color: var(--gold); }
.se-footer__contact li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.se-footer__contact svg { width: 1rem; height: 1rem; margin-top: .125rem; flex-shrink: 0; color: var(--gold); }
.se-footer__addr { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.6); }
.se-footer__addr svg { width: 1rem; height: 1rem; margin-top: .125rem; flex-shrink: 0; color: var(--gold); }
.se-footer__addr address { line-height: 1.625; }
.se-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.se-footer__bottom-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem;
}
@media (min-width: 640px) { .se-footer__bottom-inner { flex-direction: row; padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .se-footer__bottom-inner { padding-inline: 2rem; } }
.se-footer__copy { color: rgba(255,255,255,.4); font-size: .75rem; text-align: center; }
.se-footer__tagline { display: flex; align-items: center; gap: .25rem; color: rgba(255,255,255,.4); font-size: .75rem; flex-wrap: wrap; justify-content: center; }
.se-footer__tagline span.gold { color: var(--gold); font-weight: 500; }

/* ============================================================
   PAGE HEADER (Menu / About / Contact)
   ============================================================ */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #243017 0%, #1e2716 55%, #19210f 100%);
  text-align: center;
}
@media (min-width: 1024px) { .page-header { padding-top: 9rem; } }
.page-header--tall { padding-bottom: 4rem; }
.page-header__logo { height: 4rem; width: auto; margin: 0 auto 1rem; opacity: .85; }
@media (min-width: 1024px) { .page-header__logo { height: 5rem; } }
.page-header__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  margin-top: .75rem;
  font-size: 2.25rem;
}
@media (min-width: 640px) { .page-header__title { font-size: 3rem; } }
@media (min-width: 1024px) { .page-header__title { font-size: 3.75rem; } }
.page-header__title .gold { color: var(--gold); }
.page-header__sub { margin-top: 1rem; color: rgba(255,255,255,.7); max-width: 42rem; margin-inline: auto; }
.page-header__note { margin-top: .5rem; font-size: .75rem; color: rgba(255,255,255,.4); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-pdf-section { padding-block: 2rem; }
@media (min-width: 1024px) { .menu-pdf-section { padding-block: 3rem; } }
.menu-pdf-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  border: 1px solid rgba(45,90,61,.1);
  max-width: var(--maxw-5xl);
  margin-inline: auto;
}
.menu-pdf-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  background: var(--green-light);
  flex-wrap: wrap;
  gap: .75rem;
}
.menu-pdf-bar__brand { display: flex; align-items: center; gap: .75rem; }
.menu-pdf-bar__brand img { height: 2rem; width: auto; }
.menu-pdf-bar__brand h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green-dark); font-size: .875rem; }
.menu-pdf-bar__brand p { font-size: .625rem; color: var(--gray-400); }
.menu-pdf-bar__actions { display: flex; align-items: center; gap: .75rem; }
.menu-pdf-bar__download { font-size: .75rem; font-weight: 500; color: var(--green-primary); text-decoration: underline; transition: color .2s; }
.menu-pdf-bar__download:hover { color: var(--gold); }
.menu-pdf-bar__browse {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 500; color: #fff;
  background: var(--green-primary);
  padding: .5rem 1rem;
  border-radius: 9999px;
  transition: background .2s;
}
.menu-pdf-bar__browse:hover { background: var(--green-dark); }
.menu-pdf-bar__browse svg { width: .75rem; height: .75rem; }
.menu-pdf-frame { width: 100%; height: 85vh; min-height: 600px; }
.menu-pdf-frame iframe { width: 100%; height: 100%; border: 0; }
.menu-pdf-pages { display: flex; flex-direction: column; gap: .75rem; padding: 1rem; background: #161d0c; }
.menu-pdf-pages img { width: 100%; max-width: 800px; margin-inline: auto; height: auto; display: block; border-radius: .375rem; box-shadow: 0 6px 16px rgba(0,0,0,.4); }
@media (min-width: 768px) { .menu-pdf-pages { padding: 1.5rem; gap: 1rem; } }

.menu-browse { padding-bottom: 2rem; }
.menu-search { max-width: var(--maxw-md); margin: 0 auto 2rem; position: relative; }
.menu-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 1.25rem; height: 1.25rem; color: var(--gray-400); }
.menu-search input {
  width: 100%;
  padding: .875rem 2.5rem .875rem 3rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  background: #fff;
  outline: none;
  font-size: .875rem;
  transition: all .2s;
}
.menu-search input:focus { border-color: var(--green-primary); box-shadow: 0 0 0 2px rgba(45,90,61,.2); }
.menu-search__clear { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.menu-search__clear:hover { color: var(--gray-600); }
.menu-search__clear svg { position: static; transform: none; width: 1rem; height: 1rem; }

.menu-tabs { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: 1rem; margin-bottom: 2rem; scroll-behavior: smooth; }
.menu-tabs-wrap { position: relative; }
.menu-tabs-arrow {
  position: absolute; top: calc(50% - .5rem); transform: translateY(-50%);
  z-index: 5; width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-primary); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.18); transition: background .2s, opacity .2s;
}
.menu-tabs-arrow:hover { background: var(--green-dark); }
.menu-tabs-arrow svg { width: 1.25rem; height: 1.25rem; }
.menu-tabs-arrow--left { left: -.25rem; }
.menu-tabs-arrow--right { right: -.25rem; }
.menu-tabs-arrow.is-hidden { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  background: #fff;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  transition: all .2s;
  display: inline-flex; align-items: center; gap: .375rem;
  white-space: nowrap;
}
.menu-tab svg { width: 1rem; height: 1rem; }
.menu-tab:hover { border-color: var(--green-primary); color: var(--green-primary); }
.menu-tab.active { background: var(--green-primary); color: #fff; border-color: var(--green-primary); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }

.menu-cat { margin-bottom: 2.5rem; }
.menu-cat__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.menu-cat__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  background: rgba(45,90,61,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}
.menu-cat__icon svg { width: 1rem; height: 1rem; }
.menu-cat__title { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--green-dark); }
.menu-cat__subtitle { font-size: .75rem; color: var(--gray-400); }

.menu-items-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.menu-subcat__title { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin: 1.25rem 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--se-border, rgba(227,178,60,.22)); letter-spacing: .01em; }
.menu-subcat__title:first-of-type { margin-top: .25rem; }
@media (min-width: 640px) { .menu-items-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-items-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.25rem;
  border: 1px solid rgba(45,90,61,.08);
  transition: all .3s ease;
}
.menu-item-card:hover { border-color: rgba(45,90,61,.25); box-shadow: 0 10px 15px -3px rgba(45,90,61,.05); transform: translateY(-.25rem); }
.menu-item-card__row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.menu-item-card__body { flex: 1; min-width: 0; }
.menu-item-card__badges { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.code-badge { font-size: .625rem; font-weight: 700; color: rgba(45,90,61,.6); background: rgba(45,90,61,.05); padding: .125rem .375rem; border-radius: .25rem; }
.menu-item-card__name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gray-900); margin-top: .5rem; transition: color .2s; }
.menu-item-card:hover .menu-item-card__name { color: var(--green-primary); }
.menu-item-card__ms { font-size: .75rem; color: var(--gray-400); margin-top: .125rem; }
.menu-item-card__portion { font-size: .75rem; color: var(--gray-400); margin-top: .25rem; }
.menu-item-card__desc {
  font-size: .875rem; color: var(--gray-500); margin-top: .5rem; line-height: 1.625;
}
.menu-item-card__also { margin-top: .875rem; }
.menu-item-card__also-label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.menu-item-card__also-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.also-box { border: 1px solid var(--se-border, rgba(227,178,60,.22)); border-radius: .625rem; padding: .625rem .75rem; background: rgba(255,255,255,.03); display: flex; flex-direction: column; gap: .15rem; }
.also-box__name { font-size: .8125rem; font-weight: 600; color: var(--se-cream, #ECE5D3); line-height: 1.25; }
.also-box__price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9375rem; color: var(--gold); }
.menu-item-card__imgnote { margin-top: .5rem; font-size: .75rem; font-style: italic; color: var(--se-cream-dim, rgba(236,229,211,.6)); }
.menu-item-card__price { text-align: left; margin-top: .25rem; margin-bottom: .125rem; }
.menu-item-card__price span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--green-primary); }

.menu-empty { text-align: center; padding-block: 5rem; }
.menu-empty svg { width: 4rem; height: 4rem; color: var(--gray-200); margin: 0 auto 1rem; }
.menu-empty p:first-of-type { color: var(--gray-400); font-size: 1.125rem; }
.menu-empty p:last-of-type { color: var(--gray-400); font-size: .875rem; margin-top: .25rem; }
.menu-results-count { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.is-hidden { display: none !important; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding-block: 4rem; }
@media (min-width: 1024px) { .about-story { padding-block: 6rem; } }
.about-story__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-story__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-story__title { font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--green-dark); line-height: 1.15; }
@media (min-width: 1024px) { .about-story__title { font-size: 2.25rem; } }
.about-story__title span { color: var(--green-primary); }
.about-story__text { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; color: var(--gray-600); line-height: 1.625; }
.about-story__stats { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.about-stat { text-align: center; padding: .5rem 1rem; background: var(--green-card); border-radius: .75rem; }
.about-stat__num { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--green-primary); }
.about-stat__label { font-size: .75rem; color: var(--gray-500); }
.about-story__images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-story__col { display: flex; flex-direction: column; gap: 1rem; }
.about-story__col--offset { padding-top: 2rem; }
.about-img { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.about-img:hover img { transform: scale(1.05); }
.about-img--34 { aspect-ratio: 3/4; }
.about-img--sq { aspect-ratio: 1/1; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(45,90,61,.08);
  transition: all .3s ease;
}
.value-card:hover { border-color: rgba(45,90,61,.2); box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); transform: translateY(-.25rem); }
.value-card__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: .75rem;
  background: rgba(45,90,61,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  transition: all .3s;
}
.value-card:hover .value-card__icon { background: var(--green-primary); color: #fff; }
.value-card__icon svg { width: 1.75rem; height: 1.75rem; }
.value-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--green-dark); margin-top: 1rem; }
.value-card p { font-size: .875rem; color: var(--gray-500); margin-top: .5rem; line-height: 1.625; }

.sig-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .sig-grid { grid-template-columns: repeat(3, 1fr); } }
.sig-card__media { aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); margin-bottom: 1.25rem; }
.sig-card__media img, .sig-card__media video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; display: block; }
.sig-card:hover .sig-card__media img, .sig-card:hover .sig-card__media video { transform: scale(1.1); }
.sig-card__tag {
  font-size: .625rem; font-weight: 700; color: var(--green-primary);
  background: rgba(200,164,92,.2);
  padding: .25rem .5rem; border-radius: 9999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.sig-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--green-dark); margin-top: .75rem; }
.sig-card p { font-size: .875rem; color: var(--gray-500); margin-top: .5rem; line-height: 1.625; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info { padding-block: 3rem; }
.contact-info__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-info__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-info__grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.25rem;
  border: 1px solid rgba(45,90,61,.08);
  transition: all .2s ease;
}
.info-card:hover { border-color: rgba(45,90,61,.2); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); transform: translateY(-.25rem); }
.info-card__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .5rem;
  background: rgba(45,90,61,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
}
.info-card__icon svg { width: 1.25rem; height: 1.25rem; }
.info-card__label { font-size: .75rem; color: var(--gray-400); margin-top: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.info-card__value { font-weight: 500; font-size: .875rem; color: var(--green-dark); margin-top: .25rem; display: block; transition: color .2s; }
a.info-card__value:hover { color: var(--green-primary); }

.contact-main { padding-block: 3rem; }
@media (min-width: 1024px) { .contact-main { padding-block: 4rem; } }
.contact-main__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-main__grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
/* Full-width map banner above the info cards */
.contact-map-section { padding-top: 2.5rem; }
.contact-map-section .contact-map__inner { min-height: 380px; height: 420px; }
/* Feedback form centered below */
.contact-main__stack { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-main__stack .form-container { width: 100%; }
.contact-main__stack .contact-form-card { max-width: 760px; margin-inline: auto; width: 100%; }
.contact-map { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); border: 1px solid rgba(45,90,61,.1); }
.contact-map__inner { position: relative; min-height: 400px; height: 100%; background: var(--gray-100); }
.contact-map__inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-map__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-top: 1px solid var(--gray-100);
}
.contact-map__overlay-row { display: flex; align-items: flex-start; gap: .75rem; }
.contact-map__overlay svg { width: 1.25rem; height: 1.25rem; color: var(--green-primary); margin-top: .125rem; flex-shrink: 0; }
.contact-map__overlay p:first-of-type { font-weight: 500; font-size: .875rem; color: var(--green-dark); }
.contact-map__overlay p:nth-of-type(2) { font-size: .75rem; color: var(--gray-500); margin-top: .125rem; }
.contact-map__link { display: inline-flex; align-items: center; gap: .25rem; font-size: .75rem; color: var(--green-primary); font-weight: 500; margin-top: .5rem; }
.contact-map__link:hover { text-decoration: underline; }
.contact-map__link svg { width: .75rem; height: .75rem; }

.contact-form-card { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(45,90,61,.08); box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
@media (min-width: 1024px) { .contact-form-card { padding: 2rem; } }
.contact-form-card h2 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--green-dark); }
.contact-form-card > p { font-size: .875rem; color: var(--gray-500); margin-top: .5rem; }
.contact-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-form-embed { margin-top: 1.5rem; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,.25); }
.contact-form-embed iframe { display: block; width: 100%; border: 0; height: 1400px; }
.contact-form label { display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700); margin-bottom: .375rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .5rem;
  border: 1px solid var(--gray-200);
  outline: none;
  font-size: .875rem;
  transition: all .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-primary); box-shadow: 0 0 0 2px rgba(45,90,61,.2); }
.contact-form textarea { resize: none; }
.contact-form button {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--green-primary);
  color: #fff;
  padding: .875rem;
  border-radius: .5rem;
  font-weight: 700;
  font-size: .875rem;
  transition: background .2s;
}
.contact-form button:hover { background: var(--green-dark); }
.contact-form button svg { width: 1rem; height: 1rem; }
.contact-success { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; padding-block: 2rem; }
.contact-success svg { width: 4rem; height: 4rem; color: var(--green-primary); margin-bottom: 1rem; }
.contact-success h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--green-dark); }
.contact-success p { font-size: .875rem; color: var(--gray-500); margin-top: .5rem; }

.contact-cta { padding-block: 4rem; background: linear-gradient(135deg, #243017 0%, #1e2716 55%, #19210f 100%); text-align: center; }
.contact-cta h2 { font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 700; color: #fff; }
@media (min-width: 1024px) { .contact-cta h2 { font-size: 2.25rem; } }
.contact-cta p { margin-top: 1rem; color: rgba(255,255,255,.7); }
.contact-cta__btns { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .contact-cta__btns { flex-direction: row; } }

/* ============================================================
   ANIMATION INITIAL STATES (GSAP reveals)
   Elements start hidden; JS reveals them. If JS fails, a
   no-js fallback (added in <html>) keeps everything visible.
   ============================================================ */
.no-js .anim { opacity: 1 !important; transform: none !important; filter: none !important; }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1 !important; transform: none !important; filter: none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Generic top-spacer so fixed nav doesn't overlap non-hero pages handled per-template */

/* ===== WhatsApp floating button ===== */
.se-wa-float{
  position:fixed; right:1.25rem; bottom:1.25rem; z-index:9999;
  width:3.5rem; height:3.5rem; border-radius:9999px;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff;
  box-shadow:0 6px 18px rgba(37,211,102,.45);
  transition:transform .25s ease, box-shadow .25s ease;
  -webkit-tap-highlight-color:transparent;
}
.se-wa-float:hover{ transform:scale(1.08); box-shadow:0 10px 24px rgba(37,211,102,.55); color:#fff; }
.se-wa-float:active{ transform:scale(.96); }
.se-wa-float__icon{ width:1.9rem; height:1.9rem; position:relative; z-index:1; }
.se-wa-float__pulse{
  position:absolute; inset:0; border-radius:9999px; background:#25D366;
  opacity:.6; animation:se-wa-pulse 2.2s ease-out infinite;
}
@keyframes se-wa-pulse{
  0%{ transform:scale(1); opacity:.6; }
  70%{ transform:scale(1.9); opacity:0; }
  100%{ transform:scale(1.9); opacity:0; }
}
@media (max-width:640px){
  .se-wa-float{ right:1rem; bottom:1rem; width:3.25rem; height:3.25rem; }
  .se-wa-float__icon{ width:1.75rem; height:1.75rem; }
}
@media (prefers-reduced-motion:reduce){
  .se-wa-float__pulse{ animation:none; opacity:0; }
}

/* ===== Footer social + company ===== */
.se-footer__social{
  display:flex; justify-content:center; gap:.85rem;
  padding:1.75rem 1.5rem .25rem;
}
.se-footer__social a{
  width:2.5rem; height:2.5rem; border-radius:9999px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:#F4F1EA;
  transition:background .25s ease, color .25s ease, transform .25s ease;
}
.se-footer__social a:hover{ background:var(--gold,#C8A45C); color:#1B3A2A; transform:translateY(-2px); }
.se-footer__social svg{ width:1.2rem; height:1.2rem; }
.se-footer__legal{ display:flex; flex-direction:column; gap:.15rem; }
.se-footer__company{ font-size:.8rem; opacity:.75; margin:.15rem 0 0; line-height:1.5; }
.se-footer__roc{ display:block; opacity:.85; }
@media (min-width:768px){
  .se-footer__company .se-footer__roc{ display:inline; margin-left:.5rem; }
}

/* Logo tile rounding (logo now has its green background) */
.hero__logo { border-radius: 16px; }
.se-footer__logo { border-radius: 12px; }
.page-header__logo { border-radius: 12px; }

/* ============================================================
   MENU PAGE — palette matched to the printed PDF menu
   (dark olive-green ground, gold accents, cream cards)
   ============================================================ */
.menu-page {
  background:
    radial-gradient(120% 60% at 50% 0%, #44472a 0%, rgba(68,71,42,0) 60%),
    linear-gradient(180deg, #3b3d22 0%, #34361d 45%, #2c2e16 100%);
  background-attachment: fixed;
}
/* Section headings sit directly on the dark ground */
.menu-page .menu-cat__title { color: var(--gold); }
.menu-page .menu-cat__subtitle { color: rgba(244,241,234,.55); }
.menu-page .menu-cat__icon { background: rgba(200,164,92,.16); color: var(--gold); }
.menu-page .menu-results-count { color: rgba(244,241,234,.7); }
.menu-page .menu-empty p { color: rgba(244,241,234,.75); }
.menu-page .menu-empty svg { color: rgba(244,241,234,.25); }

/* Cards become warm parchment tiles on the dark ground */
.menu-page .menu-item-card {
  background: #FAF6EC;
  border-color: rgba(200,164,92,.20);
}
.menu-page .menu-item-card:hover {
  border-color: rgba(200,164,92,.50);
  box-shadow: 0 12px 22px -8px rgba(0,0,0,.45);
}

/* Dish thumbnail */
.menu-item-card__thumb {
  width: 110px; height: 147px;
  flex-shrink: 0;
  border-radius: .5rem;
  overflow: hidden;
  background: var(--green-card);
}
@media (min-width: 1024px) { .menu-item-card__thumb { width: 132px; height: 176px; } }
.menu-item-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.menu-item-card:hover .menu-item-card__thumb img { transform: scale(1.06); }

/* ============================================================
   DARK GOLD THEME — global dark-green + bright-gold treatment
   (appended last so it overrides the light defaults above)
   ============================================================ */
:root {
  --gold: #E3B23C;          /* bright gold (logo) */
  --gold-light: #EFC968;
  --se-bg: #1e2716;         /* page background (deep olive green) */
  --se-bg-2: #243017;       /* alt section */
  --se-panel: #2a3420;      /* cards */
  --se-panel-2: #313d25;    /* hover/elevated */
  --se-cream: #ECE5D3;      /* body text */
  --se-cream-dim: rgba(236,229,211,.66);
  --se-border: rgba(227,178,60,.22);
  --se-border-strong: rgba(227,178,60,.48);
  --se-ink: #1c2414;        /* dark text on gold buttons */
}

body { background-color: var(--se-bg); color: var(--se-cream); }

/* Section background gradients -> dark green */
.grad-welcome { background: linear-gradient(180deg, #1e2716 0%, #243017 100%); }
.grad-up      { background: linear-gradient(180deg, #243017 0%, #1e2716 100%); }
.stat-item    { background: rgba(255,255,255,.05); }
.about-stat   { background: rgba(227,178,60,.10); }

/* Navigation */
.se-nav.scrolled, .se-nav.solid { background: rgba(24,31,17,.92); border-bottom: 1px solid var(--se-border); box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.se-nav__link, .se-nav.scrolled .se-nav__link, .se-nav.solid .se-nav__link { color: var(--se-cream); }
.se-nav__link:hover, .se-nav__link.active { color: var(--gold); }
.se-nav__toggle { color: var(--se-cream); }
.se-nav__mobile, .se-nav__mobile-inner { background: #1a2213; border-top: 1px solid var(--se-border); }
.se-nav__mobile-link { color: var(--se-cream); }
.se-nav__mobile-link:hover, .se-nav__mobile-link.active { color: var(--gold); }

/* Headings & accent text -> bright gold */
.section-title, .phil__title, .phil__title span,
.page-header__title, .page-header__title .gold,
.featured-card__name, .featured-card:hover .featured-card__name,
.menu-item-card__name, .menu-item-card:hover .menu-item-card__name,
.menu-cat__title, .value-card h3, .sig-card h3, .contact-success h3,
.about-stat__num, .stat-item__num, .se-footer h3 { color: var(--gold); }

/* Prices -> gold */
.featured-card__price, .menu-item-card__price span { color: var(--gold); }

/* Body / secondary text -> cream */
.section-subtitle, .page-header__subtitle, .phil__text,
.featured-card__desc, .value-card p, .sig-card p,
.menu-item-card__desc,
.about-stat__label, .stat-item__label, .hero__subtitle,
.menu-results-count { color: var(--se-cream); }
.hero__subtitle { color: var(--se-cream); }

/* Cards & input surfaces -> dark panels */
.featured-card, .menu-pdf-card, .value-card, .info-card,
.contact-form-card, .sig-card {
  background: var(--se-panel);
  border: 1px solid var(--se-border);
  color: var(--se-cream);
}
.featured-card:hover, .value-card:hover { border-color: var(--se-border-strong); box-shadow: 0 18px 30px -12px rgba(0,0,0,.6); }
.menu-search input { background: var(--se-panel); border: 1px solid var(--se-border); color: var(--se-cream); }
.menu-search input::placeholder { color: var(--se-cream-dim); }
.menu-search svg { color: var(--se-cream-dim); }

/* Category tabs */
.menu-tab { background: var(--se-panel); border: 1px solid var(--se-border); color: var(--se-cream); }
.menu-tab:hover { border-color: var(--se-border-strong); color: var(--gold); }
.menu-tab.active { background: var(--gold); border-color: var(--gold); color: var(--se-ink); }

/* Menu page: cards become dark panels (override parchment) */
.menu-page { background:
    radial-gradient(120% 60% at 50% 0%, #2b3620 0%, rgba(43,54,32,0) 60%),
    linear-gradient(180deg, #243017 0%, #1e2716 55%, #19210f 100%);
  background-attachment: fixed; }
.menu-page .menu-item-card { background: var(--se-panel); border-color: var(--se-border); }
.menu-page .menu-item-card:hover { border-color: var(--se-border-strong); box-shadow: 0 14px 24px -10px rgba(0,0,0,.6); }
.menu-page .menu-cat__subtitle { color: var(--se-cream-dim); }
.menu-item-card__thumb { background: #20291a; }

/* Code badge on cards */
.menu-item-card__code { background: rgba(227,178,60,.14); color: var(--gold); }

/* Tags */
.tag--best { background: var(--gold); color: var(--se-ink); }
.tag--chef { background: rgba(227,178,60,.16); color: var(--gold); border: 1px solid var(--se-border); }
.tag--popular { background: transparent; color: var(--se-cream); border: 1px solid var(--se-border); }

/* Buttons */
.btn-gold { background: var(--gold); color: var(--se-ink); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--se-ink); }

/* Forms */
.contact-form input, .contact-form textarea, .contact-form select {
  background: #20291a; border: 1px solid var(--se-border); color: var(--se-cream);
  color-scheme: dark;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--se-cream-dim); }
.contact-form label { color: var(--se-cream); }

/* Footer (slightly deeper) */
.se-footer { background: #161d0c; }

/* Value-card icon tint */
.value-card__icon { background: rgba(227,178,60,.14); color: var(--gold); }
.value-card:hover .value-card__icon { background: var(--gold); color: var(--se-ink); }

/* Welcome philosophy quote -> gold (was dark green, invisible on dark bg) */
.welcome-quote { color: var(--gold); }

/* ---- Dark theme fixes (philosophy/gallery bg, eyebrow, hero text, mobile nav) ---- */
/* Philosophy + Gallery sections were light -> make dark green */
.bg-light { background: var(--se-bg); }
/* Core Values section -> match the dark olive page-header background */
.bg-card { background: linear-gradient(135deg, #243017 0%, #1e2716 55%, #19210f 100%); }
/* Eyebrow label (e.g. "OUR PHILOSOPHY") -> gold so it shows on dark */
.eyebrow { color: var(--gold); }
/* Hero description -> gold (was cream/white) */
.hero__subtitle { color: var(--gold); }
/* Mobile menu links were dark grey/white -> cream + gold active so they're visible & on-theme */
.se-nav__mobile a { color: var(--se-cream); }
.se-nav__mobile a:hover { background: rgba(227,178,60,.12); color: var(--gold); }
.se-nav__mobile a.active { background: rgba(227,178,60,.16); color: var(--gold); }

/* ---- About + Contact page text (was dark on dark -> gold headings / cream body) ---- */
.about-story__title, .about-story__title span { color: var(--gold); }
.about-story__text { color: var(--se-cream); }
.info-card__label { color: var(--se-cream-dim); }
.info-card__value, a.info-card__value { color: var(--se-cream); }
a.info-card__value:hover { color: var(--gold); }
.contact-form-card h2 { color: var(--gold); }

/* ---- Contact icons + About signature badge -> gold (were green) ---- */
.info-card__icon { background: rgba(227,178,60,.14); color: var(--gold); }
.sig-card__tag { color: var(--gold); background: rgba(227,178,60,.16); }

/* ---- Prevent any horizontal wiggle on mobile (lock page to viewport width) ---- */
html, body { overflow-x: hidden; max-width: 100%; }
/* Keep the category scroll arrows inside the edge so they never push the width out */
.menu-tabs-arrow--left { left: 0; }
.menu-tabs-arrow--right { right: 0; }

/* ---- Storefront photo in hero (above tagline) ---- */
.hero__storefront {
  margin-bottom: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--se-border);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  max-width: 30rem;
  animation: float-storefront 6s ease-in-out infinite;
}
.hero__storefront img { display: block; width: 100%; height: auto; }
@media (max-width: 1023px) { .hero__storefront { max-width: 100%; } }
