/* ===== CSS VARIABLES ===== */
:root {
  --brown:       #8B5E3C;
  --brown-dark:  #5C3D1E;
  --brown-light: #C4956A;
  --gold:        #D4A96A;
  --green:       #4A7C59;
  --green-light: #7BAE8A;
  --cream:       #FAF6F0;
  --cream-dark:  #F0E8DC;
  --text-dark:   #2C1810;
  --text-mid:    #6B4C3B;
  --text-light:  #9A7B6A;
  --white:       #FFFFFF;
  --shadow:      0 4px 20px rgba(139,94,60,0.12);
  --shadow-lg:   0 8px 40px rgba(139,94,60,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--brown-dark);
  color: var(--gold);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement-bar span { margin: 0 16px; }
.announcement-bar i { margin-right: 6px; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(44,24,16,0.08);
  transition: var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.nav-logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brown);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brown-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-dark);
  transition: var(--transition);
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--brown); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--brown-dark);
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-cta-btn {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #3a6347; transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== HERO — SHOP PHOTO ===== */
.hero-shop {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-shop-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-shop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,0.25) 0%, rgba(44,24,16,0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--white);
}
.hero-shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,169,106,0.2);
  border: 1px solid rgba(212,169,106,0.5);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-shop-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-shop-cuisine {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-shop-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 440px;
  font-weight: 300;
}
.hero-shop-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll down arrow */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  animation: bounce-down 2s infinite;
}
.hero-scroll-down:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ===== FOOD SHOWCASE ===== */
.food-showcase {
  position: relative;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
}
.food-showcase-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.1s linear;
}
.food-showcase-tag {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44,24,16,0.72);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
}
.food-showcase-tag i { color: var(--gold); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(139,94,60,0.1);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown-dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(to right, var(--brown), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.service-card h3 { font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== HIGHLIGHTS (Signature Dishes) ===== */
.highlights { background: var(--cream); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlights-cta {
  text-align: center;
  margin-top: 44px;
}

/* Menu cards (shared by highlights) */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.menu-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.04); }
.menu-card-img-wrap { overflow: hidden; }
.menu-category-label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brown);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
}
.menu-card-body { padding: 20px; }
.menu-card-body h3 { font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 6px; }
.menu-card-body p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
}
.menu-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.menu-order-btn:hover { background: #3a6347; transform: scale(1.04); }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.review-text::before { content: '"'; font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.review-author-info span { font-size: 0.76rem; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--brown); }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; min-height: 380px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-name { color: var(--gold); font-size: 1.5rem; }
.footer-brand .nav-logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--brown-dark); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); cursor: pointer; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.6); gap: 16px; }
.footer-hour.closed { color: rgba(255,255,255,0.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tooltip {
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-btn {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 104px; right: 32px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 9998;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border: none;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--brown-dark); transform: translateY(-2px); }

/* ===== SLIDE-IN PANELS ===== */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.55);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}
.panel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.panel.active {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--white);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
}
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.panel-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.panel-close:hover { background: var(--brown); color: var(--white); }
.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 48px 40px;
  -webkit-overflow-scrolling: touch;
}

/* Panel intro text */
.panel-section-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== ABOUT PANEL ===== */
.about-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.about-panel-visual { position: relative; }
.about-panel-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-panel-stats {
  display: flex;
  justify-content: space-around;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.about-panel-stat { text-align: center; }
.about-panel-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}
.about-panel-stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.about-panel-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.about-panel-subheading {
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin: 28px 0 14px;
  font-family: 'Playfair Display', serif;
}
.about-panel-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 0.95rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-feature i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ===== MENU PANEL (tabs) ===== */
.menu-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.menu-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.menu-tab:hover { border-color: var(--brown); color: var(--brown); }
.menu-tab.active { background: var(--brown); color: var(--white); border-color: var(--brown); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.menu-item-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.menu-item-img {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 4px; }
.menu-item-info p { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; margin-bottom: 6px; }
.menu-item-price { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--brown); }

/* ===== GALLERY PANEL ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item.tall .gallery-img { min-height: 420px; }
.gallery-item.wide .gallery-img { min-height: 240px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 1.5rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { background: rgba(44,24,16,0.35); }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ===== WORK WITH US PANEL ===== */
.wwu-inner {
  max-width: 860px;
  margin: 0 auto;
}
.wwu-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown-dark);
  margin-bottom: 12px;
}
.wwu-sub {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 620px;
}
.wwu-types {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.wwu-type-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow);
}
.wwu-type-card i { color: var(--brown); font-size: 1rem; }

/* Form styles */
.wwu-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.required { color: var(--brown); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}
.form-success h3 {
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-panel-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-panel-img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .highlights-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .panel-header { padding: 16px 24px; }
  .panel-body { padding: 32px 24px; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .wwu-form { padding: 28px 20px; }
  .wwu-types { gap: 8px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; }
  .scroll-top { bottom: 88px; right: 20px; }
  .hero-shop-cuisine { letter-spacing: 3px; font-size: 0.85rem; }
  .hero-shop-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   ABOUT US PANEL — PROFILE PAGE
   ============================================ */

/* Flush panel body (no padding — sections handle it) */
.panel-body--flush { padding: 0; }

/* Section wrappers control background */
.ap-wrap { background: var(--cream); }
.ap-wrap--white { background: var(--white); }
.ap-wrap--dark { background: var(--brown-dark); }

/* Inner section: max-width + padding */
.ap-sec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 48px;
}

/* ---- HERO ---- */
.ap-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}
.ap-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,0.35) 0%, rgba(44,24,16,0.8) 100%);
}
.ap-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--white);
}
.ap-hero-origin {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ap-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ap-hero-tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

/* Stats bar in hero */
.ap-hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 14px 32px;
  backdrop-filter: blur(10px);
  gap: 0;
}
.ap-stat { text-align: center; padding: 0 24px; }
.ap-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ap-stat-plus { font-size: 1rem; }
.ap-stat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  white-space: nowrap;
}
.ap-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ---- SECTION TYPOGRAPHY ---- */
.ap-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}
.ap-label--gold { color: var(--gold); }
.ap-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.ap-heading--light { color: var(--white); }
.ap-body-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 0;
}
.ap-body-text--light { color: rgba(255,255,255,0.75); }

/* ---- TIMELINE ---- */
.ap-timeline {
  margin-top: 44px;
  position: relative;
}
.ap-tl-item {
  display: flex;
  gap: 0;
  padding-bottom: 40px;
}
.ap-tl-item:last-child { padding-bottom: 0; }
.ap-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}
.ap-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--brown);
  flex-shrink: 0;
  z-index: 1;
  margin-top: 3px;
  transition: var(--transition);
}
.ap-tl-item--current .ap-tl-dot {
  width: 20px;
  height: 20px;
  background: var(--brown);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,169,106,0.25);
  margin-top: 1px;
}
.ap-tl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--brown-light), var(--cream-dark));
  margin-top: 6px;
}
.ap-tl-body {
  padding-left: 24px;
  flex: 1;
}
.ap-tl-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(139,94,60,0.1);
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.ap-tl-tag--current {
  background: var(--brown);
  color: var(--white);
}
.ap-tl-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.ap-tl-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.ap-tl-body p strong { color: var(--brown-dark); }

/* ---- TECHNOLOGY GRID ---- */
.ap-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.ap-tech-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.ap-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.ap-tech-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.ap-tech-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.ap-tech-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.75;
}
.ap-tech-card p strong { color: var(--text-dark); }

/* ---- VALUE GRID ---- */
.ap-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.ap-value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.ap-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.ap-value-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.ap-value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.ap-value-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- SERVICES ---- */
.ap-services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.ap-svc-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.ap-svc-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.ap-svc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ap-svc-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.ap-svc-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.ap-svc-body p strong { color: var(--brown-dark); }

/* ---- MISSION & VISION ---- */
.ap-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.ap-mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.ap-mv-mission {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.ap-mv-vision {
  background: var(--brown-dark);
}
.ap-mv-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.ap-mv-mission .ap-mv-icon { background: var(--cream-dark); color: var(--brown); }
.ap-mv-vision .ap-mv-icon { background: rgba(212,169,106,0.2); color: var(--gold); }
.ap-mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.ap-mv-mission h3 { color: var(--brown-dark); }
.ap-mv-vision h3 { color: var(--gold); }
.ap-mv-card p { font-size: 0.9rem; line-height: 1.85; }
.ap-mv-mission p { color: var(--text-mid); }
.ap-mv-vision p { color: rgba(255,255,255,0.78); }

/* ---- WHY CHOOSE US ---- */
.ap-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.ap-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}
.ap-why-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(212,169,106,0.4); }
.ap-why-item i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.ap-why-item span { font-size: 0.86rem; color: rgba(255,255,255,0.88); line-height: 1.4; }

/* ---- BOTTOM CTA ---- */
.ap-cta-sec {
  text-align: center;
  padding: 56px 48px;
}
.ap-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.ap-cta-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.ap-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE — ABOUT PANEL ---- */
@media (max-width: 1024px) {
  .ap-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-value-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ap-hero { height: 320px; }
  .ap-hero-stats {
    flex-wrap: wrap;
    border-radius: var(--radius);
    padding: 16px;
    gap: 8px;
  }
  .ap-stat { padding: 8px 14px; }
  .ap-stat-div { display: none; }
  .ap-sec { padding: 44px 24px; }
  .ap-tech-grid { grid-template-columns: 1fr; }
  .ap-value-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-mv-grid { grid-template-columns: 1fr; }
  .ap-why-grid { grid-template-columns: 1fr; }
  .ap-tl-body { padding-left: 16px; }
  .ap-svc-card { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .ap-hero { height: 280px; }
  .ap-hero-name { font-size: 2rem; }
  .ap-value-grid { grid-template-columns: 1fr; }
  .ap-cta-sec { padding: 44px 24px; }
}
