/* ============================================================
   DESIGN DNA — TelAviv Bites
   Vibe      : Bold street-food market energy, mosaic collage
   Palette   : --accent #e85d04 · --bg #fff8f0 · --text #1a1a1a
   Typography: "Bebas Neue" (display) · "Nunito" (body)
   Hero      : Irregular CSS grid mosaic tiles + orange title block
   Header    : Sticky cream bar, pill-shaped nav links
   Cookie    : Bottom full-width announcement bar
   Layout    : 1280px max, 8-col grid, warm food-market sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --bg: #fff8f0;
  --text: #1a1a1a;
  --muted: #7a6b5c;
  --accent: #e85d04;
  --accent2: #f48226;
  --line: #f0ddd0;
  --radius: 12px;
  --maxw: 1280px;
  --hh: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.55rem; }

/* ── LAYOUT ── */
.tb-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.tb-section { padding: 5rem 0; }
.tb-section-sm { padding: 3rem 0; }

/* ── HEADER ── */
.tb-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 2px solid var(--line);
  height: var(--hh);
}
.tb-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem;
}
.tb-logo { display: flex; align-items: center; gap: 0.6rem; }
.tb-logo-badge {
  width: 40px; height: 40px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff;
}
.tb-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.05em; }
.tb-logo-name em { color: var(--accent); font-style: normal; }

.tb-nav { display: flex; align-items: center; gap: 0.3rem; }
.tb-nav a {
  padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.tb-nav a:hover, .tb-nav a.tb-active { background: var(--accent); color: #fff; }
.tb-nav .tb-nav-order {
  background: var(--accent); color: #fff;
  padding: 0.45rem 1.2rem; margin-left: 0.4rem;
}

.tb-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.tb-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.tb-mnav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0; z-index: 199;
  background: var(--bg); border-bottom: 2px solid var(--line);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.2rem;
}
.tb-mnav.open { display: flex; }
.tb-mnav a { padding: 0.7rem 0; font-weight: 700; border-bottom: 1px solid var(--line); }
.tb-mnav a:last-child { border-bottom: none; }

/* ── HERO MOSAIC ── */
.tb-hero { padding: 2.5rem 0 4rem; }
.tb-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 210px 210px;
  gap: 0.9rem;
}
.tb-tile { border-radius: var(--radius); overflow: hidden; position: relative; }
.tb-tile img { width: 100%; height: 100%; object-fit: cover; }
.tb-t1 { grid-column: 1/5; grid-row: 1/3; }
.tb-t2 { grid-column: 5/8; grid-row: 1/2; }
.tb-t3 { grid-column: 8/10; grid-row: 1/2; }
.tb-ttxt {
  grid-column: 10/13; grid-row: 1/3;
  background: var(--accent); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
  border-radius: var(--radius);
}
.tb-ttxt h1 { color: #fff; margin-bottom: 0.8rem; }
.tb-ttxt p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.5; }
.tb-ttxt-cta {
  display: inline-block; background: #fff; color: var(--accent);
  padding: 0.65rem 1.6rem; border-radius: 50px; font-weight: 800; font-size: 0.95rem;
  align-self: flex-start;
}
.tb-t4 { grid-column: 5/8; grid-row: 2/3; }
.tb-t5 { grid-column: 8/10; grid-row: 2/3; }
.tb-t6 { grid-column: 10/12; grid-row: 2/3; display: none; }

/* ── WHY US ── */
.tb-why { background: var(--text); }
.tb-why .tb-section-label { color: var(--accent); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.8rem; }
.tb-why h2 { color: #fff; margin-bottom: 3rem; }
.tb-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tb-why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; }
.tb-why-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.tb-why-card h3 { color: var(--accent); font-size: 1.3rem; margin-bottom: 0.5rem; }
.tb-why-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ── MENU PREVIEW ── */
.tb-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.tb-section-head .tb-label { font-size: 0.8rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; }
.tb-view-more { font-weight: 800; color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; font-size: 0.95rem; }
.tb-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tb-food-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; }
.tb-food-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(232,93,4,0.14); }
.tb-food-img { height: 220px; overflow: hidden; }
.tb-food-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tb-food-card:hover .tb-food-img img { transform: scale(1.06); }
.tb-food-body { padding: 1.4rem; }
.tb-food-tag { font-size: 0.72rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.tb-food-body h3 { margin-bottom: 0.4rem; font-size: 1.35rem; }
.tb-food-body p { color: var(--muted); font-size: 0.92rem; }
.tb-food-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.tb-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--accent); }
.tb-order-link { font-size: 0.85rem; font-weight: 800; color: var(--accent); }

/* ── DELIVERY BANNER ── */
.tb-delivery { background: var(--accent); padding: 4rem 0; text-align: center; }
.tb-delivery h2 { color: #fff; margin-bottom: 0.8rem; }
.tb-delivery p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2rem; }
.tb-zones { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.tb-zone { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); padding: 0.4rem 1.1rem; border-radius: 50px; font-weight: 700; font-size: 0.88rem; color: #fff; }
.tb-btn-wh { display: inline-block; background: #fff; color: var(--accent); padding: 0.85rem 2.4rem; border-radius: 50px; font-weight: 800; font-size: 1rem; transition: transform 0.2s; }
.tb-btn-wh:hover { transform: translateY(-2px); }

/* ── STORIES TEASER ── */
.tb-stories-home { background: #ffeedd; }
.tb-stories-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.tb-story-mini { display: flex; gap: 1.2rem; align-items: flex-start; }
.tb-story-thumb { width: 110px; height: 110px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.tb-story-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tb-story-date { font-size: 0.75rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.tb-story-mini h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.tb-story-mini p { color: var(--muted); font-size: 0.88rem; }

/* ── CTA STRIP ── */
.tb-cta-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.tb-cta-photo { overflow: hidden; }
.tb-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.tb-cta-copy { background: #1a1a1a; padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.tb-cta-copy h2 { color: var(--accent); margin-bottom: 1rem; }
.tb-cta-copy p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; line-height: 1.7; }
.tb-btn-accent { display: inline-block; background: var(--accent); color: #fff; padding: 0.85rem 2.4rem; border-radius: 50px; font-weight: 800; font-size: 1rem; align-self: flex-start; transition: background 0.2s; }
.tb-btn-accent:hover { background: var(--accent2); }

/* ── FOOTER ── */
.tb-footer { background: #111; color: rgba(255,255,255,0.75); padding: 4.5rem 0 2rem; }
.tb-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tb-ft-brand p { font-size: 0.9rem; line-height: 1.75; margin: 1rem 0; }
.tb-ft-brand .tb-logo-badge { background: var(--accent); }
.tb-ft-social { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.tb-ft-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: border-color 0.2s; }
.tb-ft-social a:hover { border-color: var(--accent); color: var(--accent); }
.tb-ft-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.tb-ft-col li { margin-bottom: 0.6rem; }
.tb-ft-col li a { font-size: 0.9rem; transition: color 0.2s; }
.tb-ft-col li a:hover { color: var(--accent); }
.tb-ft-addr { font-size: 0.9rem; line-height: 1.9; }
.tb-ft-addr strong { color: #fff; display: block; margin-bottom: 0.4rem; }
.tb-ft-addr a { color: var(--accent); }
.tb-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }
.tb-footer-bottom a:hover { color: var(--accent); }

/* ── COOKIE BAR ── */
.tb-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #111; color: #fff;
  border-top: 3px solid var(--accent);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transition: transform 0.35s;
}
.tb-cookie.tb-hidden { transform: translateY(110%); }
.tb-cookie p { font-size: 0.88rem; opacity: 0.82; flex: 1; min-width: 220px; }
.tb-cookie a { color: var(--accent); text-decoration: underline; }
.tb-cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.tb-ck-accept {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 0.5rem 1.4rem; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
  font-family: 'Nunito', sans-serif; transition: background 0.2s;
}
.tb-ck-accept:hover { background: var(--accent2); }
.tb-ck-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.88rem;
  font-family: 'Nunito', sans-serif;
}

/* ── PAGE HERO ── */
.tb-page-hero { background: var(--accent); padding: 3.5rem 0 3rem; }
.tb-page-hero .tb-bc { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.5rem; }
.tb-page-hero .tb-bc a:hover { opacity: 1; }
.tb-page-hero h1 { color: #fff; }
.tb-page-hero p { color: rgba(255,255,255,0.85); margin-top: 0.6rem; font-size: 1.05rem; max-width: 600px; }

/* ── INNER PAGE GENERIC ── */
.tb-about-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tb-about-duo img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tb-value-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.tb-val { display: flex; gap: 0.8rem; align-items: flex-start; }
.tb-val-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }
.tb-val p { font-size: 0.97rem; color: var(--muted); }
.tb-team-section { background: #ffeedd; }
.tb-team4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.tb-member img { border-radius: var(--radius); width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 1rem; }
.tb-member h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.tb-member p { color: var(--muted); font-size: 0.88rem; }

/* ── MENU FULL PAGE ── */
.tb-filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.tb-filt { padding: 0.45rem 1.1rem; border-radius: 50px; border: 2px solid var(--line); background: transparent; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; transition: all 0.2s; }
.tb-filt.on, .tb-filt:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.tb-menu-cat-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin: 2.5rem 0 1.5rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--accent); display: inline-block; }
.tb-cards3-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── STORIES FULL PAGE ── */
.tb-stories-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--line); margin-bottom: 3rem; }
.tb-sf-img { overflow: hidden; }
.tb-sf-img img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.tb-sf-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.tb-sf-tag { font-size: 0.75rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.tb-sf-body h2 { font-size: 2rem; margin-bottom: 0.8rem; }
.tb-sf-body p { color: var(--muted); font-size: 0.97rem; line-height: 1.7; margin-bottom: 1.5rem; }
.tb-story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.tb-story-card { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tb-story-card img { width: 100%; height: 200px; object-fit: cover; }
.tb-sc-body { padding: 1.4rem; }
.tb-sc-body .tb-tag { font-size: 0.72rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.tb-sc-body h3 { margin: 0.4rem 0; }
.tb-sc-body p { color: var(--muted); font-size: 0.9rem; }

/* ── CONTACT ── */
.tb-contact-two { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.tb-form-field { margin-bottom: 1.4rem; }
.tb-form-field label { display: block; font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; }
.tb-form-field input, .tb-form-field textarea, .tb-form-field select {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--line); border-radius: var(--radius);
  background: #fff; font-family: 'Nunito', sans-serif; font-size: 0.97rem; color: var(--text);
  transition: border-color 0.2s;
}
.tb-form-field input:focus, .tb-form-field textarea:focus { outline: none; border-color: var(--accent); }
.tb-form-field textarea { resize: vertical; min-height: 140px; }
.tb-info-box h3 { margin-bottom: 1.5rem; }
.tb-info-line { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.tb-info-ico { width: 42px; height: 42px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.tb-info-text strong { display: block; margin-bottom: 0.2rem; }
.tb-info-text p { color: var(--muted); font-size: 0.92rem; }
.tb-hours-table { margin-top: 2rem; }
.tb-hours-table h4 { margin-bottom: 1rem; }
.tb-hours-table table { width: 100%; border-collapse: collapse; }
.tb-hours-table td { padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
.tb-hours-table td:last-child { text-align: right; color: var(--muted); }

/* ── PRIVACY ── */
.tb-prose { max-width: 820px; }
.tb-prose h2 { font-size: 1.9rem; margin: 2.5rem 0 0.8rem; color: var(--accent); }
.tb-prose h3 { font-size: 1.3rem; margin: 1.8rem 0 0.6rem; font-family: 'Nunito', sans-serif; font-weight: 800; }
.tb-prose p, .tb-prose li { font-size: 0.97rem; color: var(--muted); line-height: 1.85; }
.tb-prose ul { padding-left: 1.5rem; list-style: disc; margin: 0.8rem 0; }
.tb-prose li { margin-bottom: 0.4rem; }
.tb-prose a { color: var(--accent); text-decoration: underline; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .tb-mosaic { grid-template-columns: repeat(6, 1fr); grid-template-rows: 190px 190px 190px; }
  .tb-t1 { grid-column: 1/4; grid-row: 1/3; }
  .tb-t2 { grid-column: 4/7; grid-row: 1/2; }
  .tb-t3 { display: none; }
  .tb-ttxt { grid-column: 4/7; grid-row: 2/3; }
  .tb-t4 { grid-column: 1/4; grid-row: 3/4; }
  .tb-t5 { grid-column: 4/7; grid-row: 3/4; }
  .tb-why-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-cards3, .tb-cards3-menu { grid-template-columns: repeat(2, 1fr); }
  .tb-stories-grid2 { grid-template-columns: 1fr; }
  .tb-cta-strip { grid-template-columns: 1fr; }
  .tb-cta-photo { height: 280px; }
  .tb-footer-grid { grid-template-columns: 1fr 1fr; }
  .tb-contact-two { grid-template-columns: 1fr; }
  .tb-about-duo { grid-template-columns: 1fr; }
  .tb-team4 { grid-template-columns: repeat(2, 1fr); }
  .tb-stories-featured { grid-template-columns: 1fr; }
  .tb-story-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE 560px ── */
@media (max-width: 560px) {
  .tb-nav { display: none; }
  .tb-burger { display: flex; }
  .tb-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 200px 150px; }
  .tb-t1 { grid-column: 1/2; grid-row: 1/2; }
  .tb-t2 { grid-column: 2/3; grid-row: 1/2; }
  .tb-ttxt { grid-column: 1/3; grid-row: 2/3; }
  .tb-t4 { grid-column: 1/2; grid-row: 3/4; }
  .tb-t5 { grid-column: 2/3; grid-row: 3/4; }
  .tb-why-grid { grid-template-columns: 1fr; }
  .tb-cards3, .tb-cards3-menu { grid-template-columns: 1fr; }
  .tb-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tb-section { padding: 3rem 0; }
  .tb-footer-bottom { flex-direction: column; text-align: center; }
  .tb-cta-copy { padding: 2.5rem 1.5rem; }
  .tb-team4 { grid-template-columns: repeat(2, 1fr); }
}
