:root {
  --cream: #f6f0e6;
  --beige: #e8dcc8;
  --olive: #58633b;
  --olive-dark: #384226;
  --white: #ffffff;
  --gold: #c7a45d;
  --text: #2b2b25;
  --muted: #6e6e64;
  --shadow: 0 16px 40px rgba(63, 54, 38, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

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

.section {
  padding: 88px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .menu-toggle {
  background: linear-gradient(135deg, #8b5e2f 0%, #6b4320 100%);
  border: 1px solid rgba(107, 67, 32, 0.25);
  box-shadow: 0 8px 20px rgba(107, 67, 32, 0.2);
}

.site-header.scrolled .menu-toggle span {
  background: #fffdf7;
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-scroll-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled .header-scroll-text {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-logo,
.hero-logo {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  animation: header-logo-float 2.4s ease-in-out infinite;
  transform-origin: center;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}

.hero-top-logo {
  margin: 12vh auto 26px;
  width: 340px;
  max-width: 100%;
  animation: logo-bounce 1.2s ease-out both;
  animation-delay: 0.1s;
  will-change: transform, opacity;
}

.hero-top-logo img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.88;
  transform-origin: center;
}

.hero h1,
.hero-subtitle,
.hero-actions,
.google-rating,
.google-reviews,
.map-placeholder {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-slide-up 0.95s ease forwards;
}

.hero h1 {
  animation-delay: 0.25s;
}

.hero-subtitle {
  animation-delay: 0.45s;
}

.hero-actions {
  animation-delay: 0.65s;
}

.hero-actions .btn {
  opacity: 0;
  transform: translateY(14px);
  animation: button-pop 0.55s ease forwards;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 0.82s;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 0.98s;
}

.google-rating {
  animation-delay: 0.14s;
}

.google-reviews {
  animation-delay: 0.3s;
}

.map-placeholder {
  animation-delay: 0.45s;
}

.logo-placeholder {
  width: 840px;
  height: 840px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  padding: 0;
}

.site-header.scrolled .brand,
.site-header.scrolled .main-nav a {
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--olive-dark);
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: 0.25s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(34, 35, 25, 0.25), rgba(34, 35, 25, 0.45)),
    url("images/14C4EEF7-A0BF-4828-A806-C1E296F442F0.PNG") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(20, 22, 14, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 780px;
  padding-top: 42px;
}

.logo-placeholder {
  width: 232px;
  height: 232px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.logo-placeholder span {
  font-size: 4.5rem;
  color: var(--gold);
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.eyebrow {
  margin-top: -6px;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  -webkit-backdrop-filter: blur(6px);
  font-size: 1.15em;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--olive-dark);
  box-shadow: 0 14px 30px rgba(199,164,93,0.28);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--olive-dark);
}

.about-copy > p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card span {
  font-size: 1.7rem;
}

.feature-card h3 {
  color: var(--olive-dark);
  margin: 10px 0 6px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  position: relative;
  background:
    url("images/hummusmix.jpg")
    center/cover;
  box-shadow: var(--shadow);
}

.chef-section {
  background: rgba(255,255,255,0.98);
}

.chef-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.chef-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chef-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.chef-copy h2 {
  margin-bottom: 18px;
  color: var(--olive-dark);
}

.image-badge {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  border: 8px solid var(--cream);
}

.image-badge strong {
  font-size: 1.6rem;
  color: var(--gold);
}

.menu-section {
  background: var(--white);
}

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.category-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 5px 0 14px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.review-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff6df;
  color: var(--olive-dark);
  border: 1px solid rgba(199,164,93,0.35);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 0 auto 26px;
  max-width: 960px;
  box-shadow: 0 14px 32px rgba(199,164,93,0.18);
}

.review-note span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--olive-dark);
  font-size: 1.2rem;
}

.review-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.review-note p {
  margin: 0;
  color: var(--olive-dark);
  opacity: 0.9;
  font-size: 0.98rem;
}

.review-note a {
  margin-left: auto;
  color: var(--olive-dark);
  background: var(--gold);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-note a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(199,164,93,0.2);
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-btn {
  white-space: nowrap;
  border: 1px solid var(--beige);
  background: var(--cream);
  color: var(--olive-dark);
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}

.category-btn:hover,
.category-btn.active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(60, 53, 40, 0.07);
  transition: 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  border-color: rgba(199,164,93,0.45);
  box-shadow: 0 18px 38px rgba(60, 53, 40, 0.12);
}

.menu-item h3 {
  color: var(--olive-dark);
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-section {
  background: linear-gradient(135deg, var(--olive-dark), var(--olive));
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-card h2 {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.contact-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  margin-bottom: 18px;
  flex-wrap: wrap;
  animation: glow-fade 2.4s ease-in-out infinite;
}

.rating-stars {
  letter-spacing: 0.1em;
  color: #ffd700;
  font-size: 0.95rem;
}

.google-rating strong {
  font-size: 1rem;
}

.google-link {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.2s ease, transform 0.2s ease;
}

..google-link:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
}

.google-reviews {
  display: grid;
  gap: 16px;
  margin: 22px 0 28px;
}

.review-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-stars {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.review-card p {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0,0,0,0.18);
}

.reviewer-name {
  display: inline-block;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25D366;
  color: #0c381c;
  width: fit-content;
}

.map-placeholder {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--olive-dark);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
              url("images/A78EA06E-7AC7-494F-83B3-B8D67D1EB13F.jpg") center/cover no-repeat;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.25), transparent 14%),
              radial-gradient(circle at 70% 75%, rgba(255,255,255,0.18), transparent 12%);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}

.map-placeholder .map-pin {
  position: relative;
  z-index: 2;
}

.map-placeholder {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 18px 40px rgba(0,0,0,0.12);
}

.map-placeholder > * {
  position: relative;
  z-index: 1;
}

.map-pin {
  font-size: 3rem;
}

.map-placeholder a {
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
}

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #0b3a1b;
  font-size: 1.5rem;
  box-shadow: 0 14px 28px rgba(0,0,0,0.2);
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.site-footer {
  background: #20251a;
  color: rgba(255,255,255,0.8);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.25s ease;
}

.social-links a img {
  width: 22px;
  height: auto;
  display: block;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--olive-dark);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

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

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

@keyframes logo-bounce {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(-24px);
  }
  55% {
    opacity: 1;
    transform: scale(1.08) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes fade-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes header-logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

@keyframes glow-fade {
  0%, 100% {
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  }
  50% {
    box-shadow: 0 24px 48px rgba(0,0,0,0.22);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

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

  .main-nav a,
  .site-header.scrolled .main-nav a {
    color: var(--text);
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .chef-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .chef-photo {
    margin-bottom: 28px;
  }

  .image-badge {
    left: 18px;
  }

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

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

@media (max-width: 560px) {
  .section {
    padding: 60px 0;
  }

  .container {
    width: min(100%, calc(100% - 24px));
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding-top: 82px;
  }

  .hero-content {
    padding: 0 14px 28px;
  }

  .hero-top-logo {
    width: min(320px, 80vw);
    margin: 10vh auto 14px;
  }

  .logo-placeholder {
    width: 220px;
    height: 220px;
    margin-bottom: 16px;
  }

  .hero-logo {
    width: 180px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-inline: auto;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    padding: 0 12px;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .review-note {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .review-note a {
    margin-left: 0;
    margin-top: 10px;
  }

  .category-tabs {
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 22px;
  }

  .category-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 300px;
  }

  .about-copy {
    padding: 0 12px;
  }

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

  .chef-photo {
    min-height: 260px;
    margin-bottom: 22px;
  }

  .image-badge {
    width: 100px;
    bottom: 14px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .contact-list {
    gap: 16px;
  }

  .contact-list > div {
    flex-wrap: wrap;
    gap: 10px;
  }

  .google-reviews {
    margin: 20px 0 24px;
  }

  .review-card {
    padding: 16px;
  }

  .map-placeholder {
    min-height: 280px;
    padding: 24px;
  }

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

  .footer-grid > div {
    margin-bottom: 24px;
  }

  .footer-bottom {
    padding: 14px 8px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}
