/* ============================================================
   Toval'e City — design system
   Warm Mediterranean editorial: deep green, cream paper, serif display
   ============================================================ */

:root {
  /* palette */
  --green-950: #14291d;
  --green-900: #1e402c;
  --green-800: #27513a;
  --green-700: #33654a;
  --green-300: #9ec3a8;
  --green-100: #e2ece4;
  --cream: #f7f3ec;
  --paper: #f2ede3;
  --beige: #e9e0d0;
  --sand: #d9cdb6;
  --ink: #26241f;
  --ink-soft: #5c574c;
  --white: #fffdf9;
  --danger: #a4381f;

  /* typography */
  --font-display: 'Heebo', 'Arial Hebrew', sans-serif;
  --font-body: 'Heebo', 'Arial Hebrew', sans-serif;

  --fs-hero: clamp(2.6rem, 7vw, 4.6rem);
  --fs-h1: clamp(2.1rem, 5vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 3.6vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 2.4vw, 1.5rem);
  --fs-body: 1.06rem;
  --fs-small: 0.9rem;

  --radius: 5px;
  --radius-lg: 5px;
  --shadow-card: 0 2px 6px rgba(38, 36, 31, 0.06), 0 14px 34px rgba(38, 36, 31, 0.08);
  --shadow-pop: 0 6px 16px rgba(20, 41, 29, 0.14), 0 24px 60px rgba(20, 41, 29, 0.22);
  --header-h: 72px;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  /* subtle paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.028'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 800; line-height: 1.22; letter-spacing: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* skip link */
.skip-link {
  position: fixed; top: -60px; right: 16px; z-index: 300;
  background: var(--green-900); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 10px 10px; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 5px;
  padding: 13px 28px; font-size: 1.02rem; font-weight: 700;
  text-decoration: none; transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--green-900); color: var(--white); box-shadow: 0 6px 18px rgba(20, 41, 29, 0.28); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(20, 41, 29, 0.32); }
.btn-outline { background: transparent; color: var(--green-900); border: 2px solid var(--green-900); }
.btn-outline:hover { background: var(--green-100); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-light:hover { background: var(--green-100); transform: translateY(-2px); }
.btn-whatsapp { background: #1faa53; color: #fff; }
.btn-whatsapp:hover { background: #178a43; transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; min-height: 40px; font-size: 0.95rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ============ header ============ */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(20, 41, 29, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 249, 0.08);
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  height: var(--header-h); max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; justify-self: start; }
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; gap: 0.2rem; justify-self: center; }
.header-cta { justify-self: end; }
.main-nav a {
  text-decoration: none; color: rgba(255, 253, 249, 0.82); font-weight: 600;
  padding: 9px 13px; transition: color 0.15s;
}
.main-nav a:hover {
  color: var(--white);
  text-decoration: underline; text-underline-offset: 7px;
  text-decoration-thickness: 2px; text-decoration-color: var(--green-300);
}
.main-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline; text-underline-offset: 7px;
  text-decoration-thickness: 2px; text-decoration-color: var(--green-300);
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--green-900);
  border: none; border-radius: 5px; padding: 10px 20px; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: transform 0.15s, background 0.15s; min-height: 44px;
}
.cart-btn:hover { background: var(--white); transform: translateY(-1px); }
.cart-count {
  display: none; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding-inline: 6px;
  background: var(--danger); color: #fff; border-radius: 5px;
  font-size: 0.8rem; font-weight: 800;
}
.cart-count.show { display: inline-flex; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  width: 46px; height: 46px; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle:hover { background: rgba(255, 253, 249, 0.1); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .header-inner { display: flex; }
  .header-cta { margin-inline-start: auto; }
  .main-nav {
    display: none; position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; background: var(--green-950); padding: 0.8rem 1rem 1.4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .brand img { height: 38px; }
}

/* ============ hero — full-width banner with callout card ============ */
.hero-banner {
  position: relative; min-height: min(78vh, 660px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner-inner { position: relative; z-index: 2; width: 100%; }
.hero-card {
  max-width: 520px; background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 5px; padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 10px 40px rgba(20, 30, 24, 0.25);
}
.hero-card h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); color: var(--green-900); margin-bottom: 0.6rem; }
.hero-card p.lead { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 1.5rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100); border: 1px solid var(--green-300); color: var(--green-900);
  border-radius: 5px; padding: 6px 14px;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 1.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) {
  .hero-banner { min-height: 74vh; align-items: flex-end; }
  .hero-card { margin-bottom: 1.4rem; padding: 1.4rem 1.3rem; }
}

/* legacy full-bleed hero (subpages) */
.hero {
  position: relative; min-height: min(88vh, 720px);
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(10deg, rgba(15, 30, 21, 0.88) 8%, rgba(15, 30, 21, 0.42) 46%, rgba(15, 30, 21, 0.18) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero .hero-kicker {
  background: rgba(255, 253, 249, 0.12); border: 1px solid rgba(255, 253, 249, 0.25);
  backdrop-filter: blur(6px); color: var(--white);
}
.page-hero .hero-kicker {
  background: rgba(255, 253, 249, 0.12); border: 1px solid rgba(255, 253, 249, 0.25);
  backdrop-filter: blur(6px); color: var(--white);
}
.hero h1 { font-size: var(--fs-hero); margin-bottom: 0.4rem; text-wrap: balance; }
.hero p.lead { max-width: 34rem; font-size: 1.12rem; color: rgba(255, 253, 249, 0.88); margin-bottom: 1.8rem; }

/* ============ sections ============ */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); position: relative; }
.section-beige { background: var(--paper); }
.section-green { background: var(--green-900); color: var(--white); }
.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head .eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.88rem; letter-spacing: 0.12em;
  color: var(--green-700); text-transform: uppercase; margin-bottom: 0.5rem;
}
.section-green .section-head .eyebrow { color: var(--green-300); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: 0.6rem; text-wrap: balance; }
.section-head p { color: var(--ink-soft); }
.section-green .section-head p { color: rgba(255, 253, 249, 0.8); }
.section-head.center { margin-inline: auto; text-align: center; }

/* decorative oversized letters (brand motif from printed menu) */
.deco-letters {
  position: absolute; top: 0; bottom: 0; inset-inline-start: -0.08em;
  display: flex; flex-direction: column; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(5rem, 14vw, 11rem); line-height: 0.82;
  color: rgba(30, 64, 44, 0.07); pointer-events: none; user-select: none;
  z-index: 0;
}
.section-green .deco-letters { color: rgba(255, 253, 249, 0.05); }

/* ============ cards / grids ============ */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }

.dish-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.dish-media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-media img { transform: scale(1.05); }
/* designed no-photo card — one flat color */
.dish-media.no-photo {
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
}
.dish-media.no-photo .np-name {
  font-family: var(--font-display); font-weight: 800; text-align: center;
  color: var(--green-900); font-size: clamp(1.3rem, 3vw, 1.7rem);
  padding: 1rem 1.4rem; line-height: 1.25;
}
.dish-media.no-photo::after {
  content: ''; position: absolute; inset: 10px; border: 1.5px solid rgba(30, 64, 44, 0.18);
  border-radius: 3px; pointer-events: none;
}
.dish-body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.dish-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; }
.dish-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; flex: 1; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 0.4rem; }
.price { font-weight: 800; font-size: 1.18rem; color: var(--green-900); white-space: nowrap; }
.price .from { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 5px;
  background: var(--green-100); color: var(--green-800);
}
.tag.hot { background: #f7e3dc; color: var(--danger); }
.dish-unavailable { opacity: 0.55; }
.dish-unavailable .add-btn { pointer-events: none; }

.add-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-900); color: var(--white); border: none;
  border-radius: 5px; padding: 9px 18px; font-weight: 700; font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s; min-height: 42px;
}
.add-btn:hover { background: var(--green-700); transform: translateY(-1px); }

/* ============ experience cards (home) ============ */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.exp-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  color: var(--white); text-decoration: none; box-shadow: var(--shadow-card);
}
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(8deg, rgba(15, 30, 21, 0.86) 10%, rgba(15, 30, 21, 0.2) 55%, transparent);
  transition: background 0.3s;
}
.exp-card:hover img { transform: scale(1.06); }
.exp-body { position: relative; z-index: 2; padding: 1.6rem; }
.exp-body h3 { font-size: 1.7rem; margin-bottom: 0.3rem; }
.exp-body p { color: rgba(255, 253, 249, 0.85); font-size: 0.98rem; margin-bottom: 0.8rem; }
.exp-link { font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }

/* ============ editorial gallery ============ */
.gallery {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
}
.gallery a { border-radius: var(--radius); overflow: hidden; display: block; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}

/* ============ reviews — modern flat cards ============ */
.review-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; }
.review-card {
  background: var(--white); border-radius: 5px; padding: 1.3rem 1.4rem;
  border: 1px solid var(--beige); display: flex; flex-direction: column; gap: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-head .avatar {
  width: 42px; height: 42px; border-radius: 5px; flex-shrink: 0;
  background: var(--green-900); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.review-head .who { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.review-head .name { font-weight: 800; font-size: 0.98rem; }
.review-head .stars { color: #e0a52e; letter-spacing: 1.5px; font-size: 0.82rem; }
.review-card p { font-size: 0.99rem; color: var(--ink); margin: 0; }

/* ============ visit / info ============ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-card); }
.info-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 8px; }
.info-card p, .info-card li { color: var(--ink-soft); font-size: 0.98rem; }
.info-card ul { list-style: none; }
.info-card a { color: var(--green-800); font-weight: 700; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* ============ menu page ============ */
.menu-hero {
  background: var(--green-900); color: var(--white);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.menu-hero h1 { font-size: var(--fs-h1); margin-bottom: 0.4rem; }
.menu-hero p { color: rgba(255, 253, 249, 0.82); max-width: 40rem; }
.menu-hero .pdf-link { color: var(--green-300); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* category launcher — icon grid */
.cat-launcher-wrap { padding-block: clamp(2rem, 5vw, 3.2rem) clamp(1.4rem, 3vw, 2.2rem); }
.launcher-title {
  text-align: center; font-size: clamp(1.5rem, 3.4vw, 2.1rem); color: var(--ink);
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
.cat-launcher {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.6rem 0.8rem;
  max-width: 1000px; margin-inline: auto;
}
@media (max-width: 900px) { .cat-launcher { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .cat-launcher { grid-template-columns: repeat(3, 1fr); gap: 1.4rem 0.4rem; } }
.cat-launcher button {
  background: none; border: none; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: var(--ink); font-weight: 700; font-size: 0.98rem; padding: 0.4rem;
  transition: transform 0.18s ease, color 0.18s ease;
}
.cat-launcher button svg { width: 62px; height: 62px; color: #8a8578; transition: color 0.18s ease, transform 0.18s ease; }
.cat-launcher button:hover { transform: translateY(-3px); color: var(--green-900); }
.cat-launcher button:hover svg { color: var(--green-800); }
@media (max-width: 560px) { .cat-launcher button svg { width: 50px; height: 50px; } .cat-launcher button { font-size: 0.88rem; } }

.menu-toolbar {
  position: sticky; top: var(--header-h); z-index: 90;
  background: rgba(247, 243, 236, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
  padding-block: 0.6rem;
}
.toolbar-inner { display: flex; flex-direction: column; gap: 0.55rem; }
.cat-nav {
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-block: 2px;
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 34px);
  mask-image: linear-gradient(to left, transparent 0, #000 34px);
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav button {
  flex-shrink: 0; border: 1.5px solid var(--sand); background: var(--white);
  color: var(--ink); border-radius: 5px; padding: 7px 14px; font-weight: 700; font-size: 0.9rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s; min-height: 38px; white-space: nowrap;
}
.cat-nav button:hover { border-color: var(--green-700); }
.cat-nav button.active { background: var(--green-900); color: var(--white); border-color: var(--green-900); }
.menu-filters { display: flex; gap: 8px; align-items: center; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.menu-filters::-webkit-scrollbar { display: none; }
.search-wrap { position: relative; flex: 1; min-width: 170px; max-width: 300px; }
@media (min-width: 980px) {
  .toolbar-inner { flex-direction: row; align-items: center; gap: 1.1rem; }
  .cat-nav { flex: 1; min-width: 0; order: 1; }
  .menu-filters { order: 2; flex-shrink: 0; flex-wrap: nowrap; }
  .search-wrap { flex: 0 0 230px; }
}
.search-wrap svg { position: absolute; inset-inline-start: 12px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-soft); pointer-events: none; }
.search-wrap input {
  width: 100%; border: 1.5px solid var(--sand); background: var(--white);
  border-radius: 5px; padding: 9px 38px 9px 16px; font-size: 0.98rem; min-height: 42px;
}
.search-wrap input:focus { outline: 2px solid var(--green-700); outline-offset: 1px; border-color: var(--green-700); }
.filter-chip {
  border: 1.5px solid var(--sand); background: var(--white); color: var(--ink);
  border-radius: 5px; padding: 7px 14px; font-weight: 700; font-size: 0.9rem; min-height: 38px;
  white-space: nowrap; transition: all 0.15s;
}
.filter-chip.active { background: var(--green-100); border-color: var(--green-700); color: var(--green-900); }

.menu-cat { padding-top: 2.4rem; scroll-margin-top: calc(var(--header-h) + 16px); }
.menu-cat-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 0.4rem; }
.menu-cat-head h2 { font-size: var(--fs-h2); color: var(--green-900); }
.menu-cat-note { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.1rem; }
.menu-empty { text-align: center; padding: 4rem 1rem; color: var(--ink-soft); }
.menu-empty .display { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; }

/* ============ item sheet (modal / bottom sheet) ============ */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 200; background: rgba(20, 30, 24, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.sheet {
  /* centered modal on every screen size */
  position: fixed; z-index: 210; background: var(--cream);
  top: 50%; left: 50%; width: min(560px, 92vw); max-height: 86dvh;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-pop);
  transform: translate(-50%, -47%) scale(0.96); opacity: 0; visibility: hidden;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s 0.22s;
  display: flex; flex-direction: column;
}
.sheet.open {
  transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.sheet-grip { display: none; }
.sheet-media { aspect-ratio: 16 / 7; overflow: hidden; flex-shrink: 0; margin: 14px 14px 0; border-radius: var(--radius); }
.sheet-media img { width: 100%; height: 100%; object-fit: cover; }
.sheet-scroll { overflow-y: auto; padding: 1.2rem 1.4rem; flex: 1; }
.sheet-close {
  position: absolute; top: 12px; inset-inline-end: 12px; z-index: 5;
  width: 38px; height: 38px; border-radius: 5px; border: none;
  background: rgba(38, 36, 31, 0.55); color: #fff; display: flex; align-items: center; justify-content: center;
}
.sheet h2 { font-size: 1.45rem; margin-bottom: 0.3rem; padding-inline-end: 44px; }
.sheet .sheet-desc { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 0.97rem; }
.opt-group { margin-bottom: 1.15rem; border: 0; padding: 0; min-width: 0; }
.opt-group legend, .opt-group > h3 {
  font-size: 1rem; font-family: var(--font-body); font-weight: 800;
  padding: 0; margin-bottom: 0.55rem; display: block;
}
.opt-group .req {
  font-size: 0.73rem; font-weight: 700; background: var(--beige); border-radius: 5px;
  padding: 2px 9px; color: var(--ink-soft); margin-inline-start: 6px; vertical-align: 2px;
}
.choice-list { display: flex; flex-wrap: wrap; gap: 8px; }
.choice {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--sand); background: var(--white); border-radius: 5px;
  padding: 9px 16px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: all 0.14s; min-height: 42px;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice.checked { background: var(--green-900); border-color: var(--green-900); color: var(--white); }
.choice .delta { font-size: 0.82rem; opacity: 0.75; font-weight: 600; }
.sheet textarea {
  width: 100%; border: 1.5px solid var(--sand); border-radius: var(--radius);
  background: var(--white); padding: 10px 14px; min-height: 64px; resize: vertical;
}
.sheet textarea:focus { outline: 2px solid var(--green-700); }
.sheet-foot {
  display: flex; align-items: center; gap: 12px; padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--beige); background: var(--paper); flex-shrink: 0;
  padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
}
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--sand); border-radius: 5px; background: var(--white); }
.qty-stepper button {
  width: 42px; height: 44px; border: none; background: none; font-size: 1.3rem; font-weight: 700; color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper .qty-val { min-width: 34px; text-align: center; font-weight: 800; font-size: 1.05rem; }
.sheet-foot .btn-primary { flex: 1; justify-content: space-between; }

/* ============ cart drawer ============ */
.cart-drawer {
  /* RTL site: drawer lives at the physical right edge and slides right off-screen */
  position: fixed; z-index: 210; top: 0; bottom: 0; right: 0;
  width: min(420px, 100vw); background: var(--cream);
  transform: translateX(105%); transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.06, 1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-pop);
  visibility: hidden;
}
.cart-drawer.open { transform: translateX(0); visibility: visible; }
@media (prefers-reduced-motion: no-preference) {
  .cart-drawer { transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.06, 1), visibility 0s 0.32s; }
  .cart-drawer.open { transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.06, 1); }
}
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--beige); }
.cart-head h2 { font-size: 1.4rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cart-line { background: var(--white); border-radius: var(--radius); padding: 0.9rem 1rem; box-shadow: var(--shadow-card); }
.cart-line-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.cart-line-top .n { font-weight: 800; }
.cart-line-opts { color: var(--ink-soft); font-size: 0.86rem; margin-top: 2px; }
.cart-line-note { color: var(--ink-soft); font-size: 0.84rem; font-style: italic; margin-top: 2px; }
.cart-line-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; }
.cart-line .link-btn { background: none; border: none; color: var(--danger); font-weight: 700; font-size: 0.85rem; padding: 4px; }
.cart-line .qty-stepper button { width: 34px; height: 36px; font-size: 1.1rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-foot { border-top: 1px solid var(--beige); padding: 1rem 1.3rem calc(1rem + env(safe-area-inset-bottom)); background: var(--paper); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.15rem; margin-bottom: 0.8rem; }
.cart-foot .btn { width: 100%; }
.cart-foot .no-charge { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.55rem; }

/* mobile fixed order bar */
.order-bar {
  position: fixed; z-index: 110; bottom: 0; inset-inline: 0;
  padding: 10px clamp(1rem, 4vw, 2rem) calc(10px + env(safe-area-inset-bottom));
  transform: translateY(120%); transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.06, 1);
  pointer-events: none;
}
.order-bar.show { transform: translateY(0); pointer-events: auto; }
.order-bar button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--green-900); color: var(--white); border: none; border-radius: 5px;
  padding: 15px 24px; font-weight: 800; font-size: 1.05rem; box-shadow: var(--shadow-pop); min-height: 54px;
}
@media (min-width: 900px) { .order-bar { display: none; } }
body.has-orderbar { padding-bottom: 84px; }

/* toast notification */
.toast-note {
  position: fixed; z-index: 250; bottom: 90px; inset-inline: 0; display: flex; justify-content: center;
  pointer-events: none;
}
.toast-note span {
  background: var(--green-950); color: var(--white); border-radius: 5px;
  padding: 10px 22px; font-weight: 700; font-size: 0.95rem; box-shadow: var(--shadow-pop);
  opacity: 0; transform: translateY(10px); transition: opacity 0.25s, transform 0.25s;
}
.toast-note.show span { opacity: 1; transform: translateY(0); }

/* ============ order page ============ */
.order-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
@media (max-width: 860px) { .order-layout { grid-template-columns: 1fr; } }
.order-summary { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-card); }
.order-summary h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; padding-block: 0.65rem; border-bottom: 1px dashed var(--beige); }
.sum-line:last-of-type { border-bottom: none; }
.sum-line .d { color: var(--ink-soft); font-size: 0.85rem; }
.sum-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.25rem; padding-top: 0.9rem; margin-top: 0.4rem; border-top: 2px solid var(--green-100); color: var(--green-900); }

.order-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--sand); border-radius: var(--radius);
  background: var(--white); padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--green-700); outline-offset: 1px; }
.field .err { color: var(--danger); font-size: 0.84rem; margin-top: 4px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--danger); }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.fulfill-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fulfill-toggle .choice { justify-content: center; padding: 14px; font-size: 1.05rem; border-radius: var(--radius); }
.no-charge-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--green-100); border: 1.5px solid var(--green-300);
  border-radius: var(--radius); padding: 0.9rem 1.1rem; font-weight: 600; font-size: 0.95rem; color: var(--green-900);
}

/* order received */
.received-wrap { max-width: 620px; margin-inline: auto; text-align: center; padding-block: clamp(3rem, 9vw, 6rem); }
.received-wrap .big { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 0.8rem; }
.received-wrap .order-no {
  display: inline-block; background: var(--white); border: 2px dashed var(--green-300);
  border-radius: var(--radius); padding: 0.7rem 1.6rem; font-weight: 800; font-size: 1.3rem;
  color: var(--green-900); margin-block: 1.2rem;
}
.received-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.4rem; }

/* ============ catering / about / static pages ============ */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.page-hero .hero-bg::after { background: linear-gradient(10deg, rgba(15, 30, 21, 0.88) 10%, rgba(15, 30, 21, 0.3) 70%); }
.page-hero .hero-content { padding-block: clamp(2rem, 5vw, 3.4rem); }
.page-hero h1 { font-size: var(--fs-h1); }
.page-hero p { max-width: 36rem; color: rgba(255, 253, 249, 0.88); font-size: 1.1rem; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem 1.4rem 1.4rem; box-shadow: var(--shadow-card); position: relative; }
.step-card::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 5px; background: var(--green-900); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.8rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step-card p { color: var(--ink-soft); font-size: 0.95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: var(--fs-h2); margin-bottom: 0.7rem; }
.split p { color: var(--ink-soft); margin-bottom: 0.8rem; }

.story-quote {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 2rem); font-weight: 500;
  color: var(--green-900); border-inline-start: 4px solid var(--green-300);
  padding-inline-start: 1.2rem; margin-block: 1.4rem; line-height: 1.4;
}

/* ============ footer ============ */
.site-footer { background: var(--green-950); color: rgba(255, 253, 249, 0.8); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.8rem; font-family: var(--font-body); font-weight: 800; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.site-footer a { color: rgba(255, 253, 249, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand img { height: 52px; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.95rem; max-width: 24rem; }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 5px; background: rgba(255, 253, 249, 0.1);
  display: inline-flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255, 253, 249, 0.22); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.1); padding-block: 1.1rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: 0.85rem;
}

/* ============ reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* kosher badge */
.kosher-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid currentColor; border-radius: 5px; padding: 5px 14px;
  font-weight: 800; font-size: 0.9rem;
}

/* ============ custom line icons ============ */
.icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-800); }
.icon-lg { width: 30px; height: 30px; }
.info-card h3 .icon { color: var(--green-800); }
.icon-tile {
  width: 52px; height: 52px; border-radius: 5px; background: var(--green-100);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.7rem;
}
.icon-tile .icon { width: 26px; height: 26px; color: var(--green-900); }

/* ============ splash intro ============ */
.splash {
  position: fixed; inset: 0; z-index: 500; background: var(--green-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
  animation: splash-out 0.55s ease 1.9s forwards;
}
.splash img {
  width: min(52vw, 230px); height: auto;
  animation: splash-logo 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.splash .splash-dots { display: flex; gap: 8px; }
.splash .splash-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-300);
  opacity: 0; animation: splash-dot 1.1s ease infinite;
}
.splash .splash-dots span:nth-child(1) { animation-delay: 0.55s; }
.splash .splash-dots span:nth-child(2) { animation-delay: 0.7s; }
.splash .splash-dots span:nth-child(3) { animation-delay: 0.85s; }
@keyframes splash-logo {
  from { opacity: 0; transform: translateY(22px) scale(0.82); }
  to { opacity: 1; transform: none; }
}
@keyframes splash-dot {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-5px); }
}
@keyframes splash-out {
  to { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .splash { display: none; }
}
