:root {
  --navy-950: #061d31;
  --navy-900: #0b2d49;
  --navy-800: #123f63;
  --teal-700: #19777d;
  --teal-500: #2fa8a7;
  --orange-500: #ff8a25;
  --orange-400: #ffa142;
  --sand-100: #fff9ef;
  --surface: #ffffff;
  --text: #142534;
  --muted: #6b7a86;
  --border: #e4edf2;
  --shadow-sm: 0 10px 30px rgba(5, 37, 61, .08);
  --shadow-lg: 0 22px 70px rgba(5, 37, 61, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --header-height: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: #f6fafc;
  color: var(--text);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }

::selection { background: var(--orange-400); color: var(--navy-950); }

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: radial-gradient(circle at 50% 42%, #164f72 0, var(--navy-950) 66%);
  color: white;
  transition: opacity .55s ease, visibility .55s ease;
}
.splash.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash img { border-radius: 50%; box-shadow: 0 16px 45px rgba(0,0,0,.32); animation: splashFloat 1.8s ease-in-out infinite; }
.splash p { margin: 0; font-weight: 800; font-size: 1.25rem; letter-spacing: .02em; }
.splash__ring {
  position: absolute;
  width: 198px;
  height: 198px;
  border: 2px solid rgba(255,255,255,.18);
  border-top-color: var(--orange-400);
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
}

.ocean-bubbles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  bottom: -60px;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  border: 1px solid rgba(47,168,167,.18);
  background: rgba(47,168,167,.05);
  border-radius: 50%;
  animation: bubbleRise var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 64px);
  color: white;
  background: rgba(6, 29, 49, .78);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(6, 29, 49, .96); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); }
.brand span { display: flex; flex-direction: column; line-height: 1.25; }
.brand strong { font-size: 1rem; white-space: nowrap; }
.brand small { color: rgba(255,255,255,.68); font-size: .74rem; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-button:hover { transform: translateY(-2px); background: var(--orange-500); border-color: var(--orange-500); }
.menu-toggle { display: none; }
.menu-toggle span { width: 18px; height: 2px; background: currentColor; display: block; margin: 2px 0; border-radius: 2px; }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media {
  background: url("../images/hero.webp") center 35% / cover no-repeat;
  transform: scale(1.035);
  animation: heroZoom 13s ease-in-out infinite alternate;
}
.hero__overlay { background: linear-gradient(90deg, rgba(6,29,49,.97) 0%, rgba(6,29,49,.84) 42%, rgba(6,29,49,.3) 100%); }
[dir="ltr"] .hero__overlay { background: linear-gradient(-90deg, rgba(6,29,49,.97) 0%, rgba(6,29,49,.84) 42%, rgba(6,29,49,.3) 100%); }
.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: calc(var(--header-height) + 78px) clamp(22px, 7vw, 105px) 76px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-400);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 99px; }
.hero h1 {
  margin: 18px 0 16px;
  max-width: 710px;
  font-size: clamp(2.3rem, 6.2vw, 5.4rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.hero__content > p { margin: 0; max-width: 590px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 2.1vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button { color: var(--navy-950); background: linear-gradient(135deg, var(--orange-400), var(--orange-500)); box-shadow: 0 12px 30px rgba(255,138,37,.28); }
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255,138,37,.38); }
.secondary-button { color: white; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.secondary-button:hover { transform: translateY(-3px); background: rgba(255,255,255,.16); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 42px; }
.hero__stats div { min-width: 126px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); border-radius: var(--radius-sm); backdrop-filter: blur(10px); }
.hero__stats strong, .hero__stats span { display: block; }
.hero__stats strong { font-size: 1.45rem; }
.hero__stats span { color: rgba(255,255,255,.66); font-size: .72rem; }

.section-shell { width: min(1240px, calc(100% - 32px)); margin-inline: auto; padding-block: clamp(70px, 9vw, 118px); }
.section-heading { max-width: 680px; margin-bottom: 34px; }
.section-heading h2, .social-card h2 { margin: 9px 0 8px; font-size: clamp(1.85rem, 4vw, 3.3rem); line-height: 1.25; letter-spacing: -.025em; color: var(--navy-950); }
.section-heading p { margin: 0; color: var(--muted); }

.featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.featured-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.featured-card:first-child, .featured-card:nth-child(5) { grid-column: span 8; }
.featured-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.featured-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.featured-card:hover img { transform: scale(1.08); }
.featured-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,29,49,.96) 0%, rgba(6,29,49,.12) 68%); z-index: 0; }
.featured-card__content { position: absolute; inset-inline: 22px; bottom: 20px; z-index: 1; color: white; }
.featured-card__content h3 { margin: 0 0 6px; font-size: 1.35rem; }
.featured-card__content p { margin: 0; color: rgba(255,255,255,.72); font-size: .87rem; max-width: 460px; }
.featured-card__tag { display: inline-flex; margin-bottom: 10px; padding: 5px 10px; border-radius: 999px; background: var(--orange-500); color: var(--navy-950); font-weight: 800; font-size: .72rem; }

.menu-section { padding-top: 56px; }
.menu-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(246,250,252,.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(228,237,242,.8);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}
.search-box { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; padding: 0 15px; background: white; border: 1px solid var(--border); border-radius: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.search-box:focus-within { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(47,168,167,.12); }
.search-box > span { color: var(--teal-700); font-size: 1.5rem; transform: rotate(-15deg); }
.search-box input { width: 100%; min-height: 48px; border: 0; outline: 0; color: var(--text); background: transparent; }
.search-box button { width: 32px; height: 32px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 1.45rem; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.search-box.has-value button { opacity: 1; pointer-events: auto; }
.results-count { min-width: 92px; text-align: center; color: var(--muted); font-size: .84rem; }

.category-strip-wrapper { position: relative; margin: 20px 0 38px; }
.category-strip { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; padding: 4px 46px; scroll-snap-type: x proximity; }
.category-strip::-webkit-scrollbar { display: none; }
.category-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy-800);
  background: white;
  cursor: pointer;
  font-weight: 800;
  scroll-snap-align: center;
  box-shadow: 0 7px 18px rgba(5,37,61,.05);
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.category-pill:hover, .category-pill.is-active { transform: translateY(-2px); color: white; background: var(--navy-900); border-color: var(--navy-900); }
.category-pill__icon { font-size: 1.15rem; }
.strip-arrow { position: absolute; top: 50%; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid var(--border); border-radius: 50%; background: white; box-shadow: var(--shadow-sm); color: var(--navy-900); cursor: pointer; font-size: 1.45rem; }
.strip-arrow--prev { inset-inline-start: 0; }
.strip-arrow--next { inset-inline-end: 0; }

.menu-content { display: grid; gap: 56px; }
.menu-category { scroll-margin-top: 170px; }
.category-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 19px;
  color: white;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.category-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,29,49,.97), rgba(6,29,49,.12)); }
.category-hero__content { position: relative; z-index: 1; width: 100%; padding: 26px; }
.category-hero__title { display: flex; align-items: center; gap: 12px; }
.category-hero__title span { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; font-size: 1.55rem; backdrop-filter: blur(8px); }
.category-hero h3 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.6rem); }
.category-hero p { margin: 10px 0 0; max-width: 720px; color: rgba(255,255,255,.72); font-size: .86rem; }

.items-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.menu-item {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(5,37,61,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.menu-item:hover { transform: translateY(-4px); border-color: rgba(47,168,167,.45); box-shadow: 0 15px 34px rgba(5,37,61,.1); }
.menu-item__top { display: flex; align-items: flex-start; gap: 12px; justify-content: space-between; }
.menu-item h4 { margin: 0; font-size: .98rem; line-height: 1.55; color: var(--navy-950); }
.menu-item__secondary { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; direction: ltr; }
[dir="ltr"] .menu-item__secondary { direction: rtl; }
.menu-item__description { margin: 9px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.price-badge { flex: 0 0 auto; min-width: 64px; min-height: 42px; display: grid; place-content: center; padding: 6px 9px; border-radius: 12px; background: var(--sand-100); color: #a4500b; border: 1px solid #ffe4c3; text-align: center; font-weight: 900; line-height: 1.15; }
.price-badge small { display: block; font-size: .56rem; font-weight: 700; color: #9f7655; }
.price-badge--market { min-width: 82px; background: #eaf8f7; border-color: #ccebea; color: var(--teal-700); font-size: .75rem; }
.variants { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.variant-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: #f0f5f8; color: var(--navy-800); font-size: .7rem; }
.variant-chip strong { color: var(--teal-700); }

.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state > div { font-size: 4rem; }
.empty-state h3 { margin: 10px 0 0; color: var(--navy-950); }
.empty-state p { margin: 6px 0 0; }

.social-section { padding-top: 40px; }
.social-card { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 30px; overflow: hidden; padding: clamp(26px, 5vw, 56px); color: white; border-radius: var(--radius-lg); background: radial-gradient(circle at 85% 30%, #1b6682 0, var(--navy-950) 58%); box-shadow: var(--shadow-lg); }
.social-card h2 { color: white; }
.social-card p { color: rgba(255,255,255,.7); margin: 0 0 22px; }
.social-card img { justify-self: end; width: min(300px, 100%); border-radius: 18px; box-shadow: 0 18px 48px rgba(0,0,0,.28); }

.site-footer { display: grid; place-items: center; gap: 5px; padding: 48px 20px; text-align: center; color: rgba(255,255,255,.62); background: var(--navy-950); }
.site-footer img { border-radius: 50%; }
.site-footer p { margin: 0; max-width: 680px; }
.site-footer strong { color: white; font-size: 1.08rem; }
.site-footer small { margin-top: 9px; }

.back-to-top { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 500; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; color: white; background: var(--orange-500); box-shadow: 0 12px 25px rgba(255,138,37,.32); cursor: pointer; transform: translateY(20px); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
.back-to-top.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal--visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes splashFloat { 50% { transform: translateY(-7px) scale(1.02); } }
@keyframes heroZoom { to { transform: scale(1.09) translate3d(-1%, -1%, 0); } }
@keyframes bubbleRise { from { transform: translateY(0) scale(.8); opacity: 0; } 15% { opacity: 1; } to { transform: translateY(-115vh) scale(1.25); opacity: 0; } }

@media (max-width: 1020px) {
  .featured-card, .featured-card:first-child, .featured-card:nth-child(5) { grid-column: span 6; }
  .items-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --header-height: 66px; }
  .site-header { padding-inline: 14px; }
  .brand img { width: 45px; height: 45px; }
  .brand small { display: none; }
  .icon-button { width: 39px; height: 39px; }
  .hero { min-height: 820px; align-items: end; }
  .hero__overlay { background: linear-gradient(0deg, rgba(6,29,49,.98) 0%, rgba(6,29,49,.78) 58%, rgba(6,29,49,.3) 100%); }
  [dir="ltr"] .hero__overlay { background: linear-gradient(0deg, rgba(6,29,49,.98) 0%, rgba(6,29,49,.78) 58%, rgba(6,29,49,.3) 100%); }
  .hero__content { padding: 120px 20px 48px; }
  .hero h1 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__stats { gap: 8px; }
  .hero__stats div { flex: 1; min-width: 0; padding: 11px 10px; }
  .hero__stats strong { font-size: 1.2rem; }
  .section-shell { width: min(100% - 24px, 1240px); }
  .featured-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 3px 1px 18px; }
  .featured-card, .featured-card:first-child, .featured-card:nth-child(5) { flex: 0 0 86%; min-height: 380px; scroll-snap-align: center; }
  .menu-toolbar { top: calc(var(--header-height) + 7px); display: block; }
  .results-count { margin-top: 7px; min-width: 0; text-align: start; padding-inline: 5px; }
  .strip-arrow { display: none; }
  .category-strip { padding-inline: 1px; }
  .category-hero { min-height: 230px; }
  .items-grid { grid-template-columns: 1fr; }
  .social-card { grid-template-columns: 1fr; text-align: center; }
  .social-card .eyebrow { justify-content: center; }
  .social-card img { justify-self: center; width: min(250px, 84%); }
}

@media (max-width: 390px) {
  .brand strong { font-size: .87rem; }
  #facebookHeader { display: none; }
  .featured-card, .featured-card:first-child, .featured-card:nth-child(5) { flex-basis: 92%; }
  .menu-item { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Keep category-chip updates from affecting the document's vertical scroll position. */
.category-strip-wrapper,
.category-strip,
.category-pill {
  overflow-anchor: none;
}
