/* ==========================================================================
   Lucia (לוציה) — Bread Menu
   Palette matches the printed catalog:
     --ink     near-black warm ink      (headings, body text)
     --muted   warm gray                (secondary / english labels)
     --line    hairline rule            (dividers)
     --accent  rust / craft-label brown (labels, highlights)
   ========================================================================== */

:root {
  --ink: #24231f;
  --muted: #8c8578;
  --line: #d8d3c8;
  --accent: #5794c8;
  --paper: #ffffff;
  --paper-soft: #faf9f6;
  --warn: #b4472c;

  --font-he: "Assistant", sans-serif;
  --font-en-display: "Cormorant Garamond", serif;

  --header-h: 64px;
  --max-w: 720px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  font-family: var(--font-he);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.he { direction: rtl; unicode-bidi: isolate; }
.en { direction: ltr; unicode-bidi: isolate; }

::selection { background: var(--accent); color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(36, 35, 31, 0.06); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.brand-logo { height: 46px; width: 46px; object-fit: contain; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: calc(var(--header-h) + 56px) 24px 48px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-logo { width: 148px; height: 148px; margin: 0 auto 12px; object-fit: contain; }
.hero-since { font-size: 11px; letter-spacing: 0.3em; color: var(--muted); margin-bottom: 22px; }
.hero-rule { width: 60px; height: 2px; background: var(--accent); margin: 0 auto 22px; }
.hero h1 .he { font-size: 30px; font-weight: 800; }
.hero-sub { font-family: var(--font-en-display); font-style: italic; color: var(--muted); font-size: 15px; margin-top: 8px; }

.hero-cta-group {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-cta-group .hero-cta { margin-top: 0; }

.hero-cta {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: background .25s ease, color .25s ease;
}
.hero-cta:hover { background: var(--accent); color: #fff; }
.hero-cta .he { font-weight: 700; }
.hero-cta .en { display: none; }

/* filled variant — used for the primary "order in advance" action */
.hero-cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(156,91,50,0.28);
}
.hero-cta-primary:hover { background: #85481f; color: #fff; }

/* ==========================================================================
   TOP MENU (all breads, first thing visible on landing)
   ========================================================================== */
.menu-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6px 16px 40px;
  scroll-margin-top: var(--header-h);
}

.menu-title {
  margin: 8px 4px 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.menu-title .he { display: block; font-size: 19px; font-weight: 700; }
.menu-title .en { display: block; font-family: var(--font-en-display); font-style: italic; color: var(--muted); font-size: 13px; margin-top: 2px; }

.menu-search-wrap {
  position: relative;
  margin: 0 4px 18px;
}
.menu-search-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.menu-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 40px 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--font-he);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.menu-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156,91,50,0.12);
}
.menu-search-input::-webkit-search-cancel-button { cursor: pointer; }

.menu-search-empty {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 4px 18px;
}
.menu-search-empty[hidden] { display: none; }

.menu-group-label[hidden] { display: none; }
.menu-list[hidden] { display: none; }
.menu-list li[hidden] { display: none; }

.menu-group-label {
  margin: 22px 4px 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.menu-group-label .en { color: var(--muted); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; }

/* Trelovsky page — strong, unmistakable visual break between category
   blocks (cakes / cookies / sugar-free), so customers never confuse
   which section they're browsing. */
.trelovsky-category-block { margin-bottom: 8px; }
.trelovsky-category-block.category-divider {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 3px solid var(--accent);
  position: relative;
}
.trelovsky-group-label {
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 10px 16px;
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.trelovsky-group-label .he { font-weight: 800; }
.trelovsky-group-label .en {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

/* compact tile grid — 2 columns even on small phones, so browsing
   the whole bread menu takes far less scrolling. Tapping a tile jumps
   straight to that bread's (accordion) entry further down the page. */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 8px 8px 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
.menu-card:active { transform: scale(0.97); }
.menu-card:hover,
.menu-card:focus-visible,
.menu-card.active {
  background: var(--paper-soft);
  border-color: var(--accent);
}

.menu-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: 0 3px 10px rgba(36,35,31,0.14), inset 0 0 0 1px rgba(20,18,14,0.06);
}
.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Applied to photos sourced from our supplier's catalog so they read as
   part of the same warm, minimalist visual language as our own product
   photography, rather than looking like they came from elsewhere. */
.menu-thumb img.supplier-photo,
.bread-summary-thumb img.supplier-photo,
.bread-image-wrap img.supplier-photo {
  filter: saturate(0.82) sepia(0.14) contrast(0.96) brightness(1.04);
}
.menu-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.menu-info { width: 100%; min-width: 0; }
.menu-name.he { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.sold-out-badge {
  display: inline-block;
  margin-inline-start: 5px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--warn);
  border: 1px solid var(--warn);
  border-radius: 999px;
  padding: 1px 6px;
  vertical-align: middle;
}
.menu-name.en { display: block; font-family: var(--font-en-display); font-style: italic; color: var(--muted); font-size: 10.5px; margin-top: 1px; }
.menu-desc {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-price {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 3px;
}
.menu-price .half-note {
  font-weight: 400;
  color: var(--muted);
  font-size: 10.5px;
}

/* chevron doesn't fit the tile layout — the whole card is tappable */
.menu-arrow { display: none; }

/* ---------- compact 3-column browse grid (used on Biscotti / Anat Tralovsky pages) ---------- */
.menu-list.compact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-list.compact-grid > li {
  flex: 1 1 calc((100% - 16px) / 3);
  box-sizing: border-box;
  list-style: none;
}
.menu-list.compact-grid .menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 100%;
  box-sizing: border-box;
}
.menu-list.compact-grid .menu-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 9px;
}
.menu-list.compact-grid .menu-thumb.placeholder { font-size: 16px; }
.menu-list.compact-grid .menu-info { width: 100%; }
.menu-list.compact-grid .menu-name.he {
  font-size: 10.5px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-list.compact-grid .menu-name.en,
.menu-list.compact-grid .menu-desc { display: none; }
.menu-list.compact-grid .menu-price {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1px;
}
.menu-list.compact-grid .menu-arrow { display: none; }

/* ==========================================================================
   SANDWICH MENU (compact, minimal — own page: sandwiches.html)
   ========================================================================== */
.sandwich-page { padding-top: 6px; }

.sandwich-list { display: flex; flex-direction: column; margin: 4px 0 6px; }

.sandwich-row {
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
}
.sandwich-list .sandwich-row:last-child { border-bottom: none; }

.sandwich-name.he { font-size: 14px; font-weight: 700; line-height: 1.4; }
.sandwich-name .sandwich-note {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  font-size: 12px;
}
.sandwich-ing.he {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.5;
}

/* sandwich rows that have a photo */
.sandwich-row.has-photo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sandwich-photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: 0 3px 10px rgba(36,35,31,0.14), inset 0 0 0 1px rgba(20,18,14,0.06);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.sandwich-photo:hover,
.sandwich-photo:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 5px 16px rgba(36,35,31,0.22), inset 0 0 0 1px rgba(20,18,14,0.06);
  outline: none;
}
.sandwich-photo:active { transform: scale(0.95); }
.sandwich-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.sandwich-info { flex: 1 1 auto; min-width: 0; }

/* ==========================================================================
   LIGHTBOX — tap a sandwich photo to see it full-size
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}
.lightbox-img {
  max-width: min(90vw, 560px);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
  background: var(--paper-soft);
  transform: scale(0.94);
  transition: transform .25s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .15s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-close:active { transform: scale(0.9); }
.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  max-width: 88vw;
}

/* ==========================================================================
   FLOATING "BACK TO MENU" BUTTON
   ========================================================================== */
.back-to-menu-fab {
  position: fixed;
  bottom: 20px;
  left: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(36,35,31,0.28);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-menu-fab.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-menu-fab:hover { background: var(--accent); }

/* ==========================================================================
   BREAD SECTIONS
   ========================================================================== */
main { max-width: var(--max-w); margin: 0 auto; }

/* ---------- accordion: collapsed by default, tap to expand ---------- */
.bread-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}
.bread-section:first-of-type { border-top: none; }

.bread-section > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  -webkit-tap-highlight-color: transparent;
}
.bread-section > summary::-webkit-details-marker { display: none; }
.bread-section > summary::marker { content: ""; }
.bread-section > summary:hover,
.bread-section > summary:focus-visible { background: var(--paper-soft); }
.bread-section[open] > summary { border-bottom: 1px solid var(--line); }

.bread-summary-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: 0 3px 10px rgba(36,35,31,0.14), inset 0 0 0 1px rgba(20,18,14,0.06);
}
.bread-summary-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bread-summary-thumb.placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.bread-summary-text { flex: 1 1 auto; min-width: 0; text-align: right; }
.bread-summary-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.bread-summary-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}
.bread-summary-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bread-summary-arrow {
  flex: 0 0 auto;
  color: var(--line);
  font-size: 20px;
  transform: scaleX(-1);
  transition: transform .2s ease;
}
.bread-section[open] .bread-summary-arrow { transform: scaleX(-1) rotate(90deg); color: var(--accent); }

.bread-section > .bread-inner {
  padding: 22px 20px 30px;
  text-align: center;
}

.bread-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bread-name.he { font-size: 27px; font-weight: 800; margin-bottom: 4px; }
.bread-name-en { font-size: 14px; letter-spacing: 0.14em; color: var(--accent); font-weight: 700; margin-bottom: 3px; }
.bread-tag-en { font-family: var(--font-en-display); font-style: italic; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.bread-subtitle.he { font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.bread-price.he {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-top: -8px;
  margin-bottom: 18px;
}
.bread-price .half-note {
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
}

.bread-image-wrap {
  width: min(78vw, 300px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: 0 10px 30px rgba(36,35,31,0.08);
}
.bread-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bread-image-wrap.placeholder-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bread-image-wrap.placeholder-wrap .placeholder-emoji {
  font-size: 72px;
}

.bread-weight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 22px;
}
.bread-weight .label { font-size: 10px; letter-spacing: 0.24em; color: var(--muted); }
.bread-weight .he { font-size: 17px; font-weight: 700; }

.bread-grid {
  text-align: right;
  border-top: 2px solid var(--accent);
  padding-top: 22px;
}

.bread-block { margin-bottom: 26px; }
.bread-block h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.bread-block h3 .he { color: var(--accent); font-weight: 700; font-size: 15px; }
.bread-block h3 .en { color: var(--muted); text-transform: uppercase; font-size: 11px; }

.bi-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.bi-list li:last-child { border-bottom: none; }
.bi-list li .en { color: var(--muted); font-size: 12.5px; font-style: italic; }
.bi-list.dash li::before { content: "—"; color: var(--accent); order: 99; }
html[dir="rtl"] .bi-list.dash li { flex-direction: row-reverse; justify-content: flex-end; }

.bi-list li.allergen { font-weight: 700; }
.bi-list li.allergen .warn { color: var(--warn); }

.bread-block p.he { font-size: 15.5px; margin-bottom: 6px; }
.bread-block p.en-body {
  font-family: var(--font-en-display);
  font-style: italic;
  color: var(--muted);
  font-size: 14.5px;
  direction: ltr;
  text-align: left;
}
.bread-block p.italic { font-style: italic; }

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 30px 0 8px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  font-size: 12.5px;
  color: var(--muted);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.back-to-top:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.back-to-top .en { display: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  text-align: center;
  padding: 60px 20px 70px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.footer-logo { width: 72px; height: 72px; margin: 0 auto 14px; opacity: 0.85; }
.site-footer p.he { font-size: 15px; font-weight: 600; }
.site-footer p.en { font-family: var(--font-en-display); font-style: italic; color: var(--muted); font-size: 13px; margin-top: 2px; }
.footer-back { margin-top: 22px; }

/* ==========================================================================
   SCROLL-REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   RESPONSIVE — larger screens
   ========================================================================== */
@media (min-width: 460px) {
  .menu-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
  .bread-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
  }
  .bread-block.full { grid-column: 1 / -1; }

  .menu-list { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

@media (min-width: 860px) {
  :root { --max-w: 880px; }
  .bread-image-wrap { width: 320px; }
  .menu-list { grid-template-columns: repeat(5, 1fr); }
}

/* ==========================================================================
   ADDITIONS — sandwich notes & orders
   ========================================================================== */
.menu-love {
  margin: 14px 4px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}


/* header phone */
.header-inner { position: relative; justify-content: flex-start; }
.brand { position: absolute; left: 50%; transform: translateX(-50%); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.header-phone svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.header-phone .num { color: var(--accent); font-weight: 800; letter-spacing: 0.03em; }
.header-phone:hover .num, .header-phone:focus-visible .num { text-decoration: underline; }
@media (max-width: 400px) {
  .header-phone { font-size: 12.5px; gap: 5px; }
}

/* grano / our bread section */
.grano-section {
  max-width: var(--max-w);
  margin: 40px auto 8px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.grano-img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(36,35,31,0.08);
}
.grano-text { max-width: 340px; }
.grano-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.grano-body { font-size: 15.5px; font-weight: 500; line-height: 1.6; }
@media (max-width: 560px) {
  .grano-section { flex-direction: column; text-align: center; gap: 16px; }
  .grano-text { max-width: 100%; }
}

/* hero grano annotation */
.hero-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* header social icons */
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-inline-start: 10px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(36,35,31,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.header-icon svg { width: 17px; height: 17px; }
.header-icon:hover, .header-icon:focus-visible { transform: scale(1.12); box-shadow: 0 4px 12px rgba(36,35,31,0.25); }
.header-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.header-icon.fb { background: #1877F2; }
.header-icon.gg { background: #EA4335; }
@media (max-width: 560px) {
  /* mobile: hide the small logo so the phone + social icons are fully visible */
  .brand { display: none; }
  .header-phone { font-size: 12px; gap: 4px; }
  .header-phone svg { width: 13px; height: 13px; }
  .header-icon { width: 26px; height: 26px; margin-inline-start: 6px; }
  .header-icon svg { width: 14px; height: 14px; }
}
@media (max-width: 360px) {
  .header-phone .he { display: none; }  /* very narrow: icon + number only */
}

/* day-old bread annotation */
.day-old-note {
  margin: 28px 4px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}
.day-old-note::before { content: "% "; color: var(--accent); font-weight: 800; }

/* team section — compact, top of page */
.team-section {
  max-width: var(--max-w);
  margin: 0 auto 34px;
  padding: 20px 20px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
}
.team-title {
  flex-basis: 100%;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
.team-member {
  flex: 1 1 180px;
  max-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 16px;
}
.team-img-wrap, .team-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(36,35,31,0.10);
}
.team-img-wrap {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-img-placeholder { font-size: 30px; font-weight: 800; color: var(--accent); opacity: .55; }
.team-name { font-size: 14.5px; font-weight: 700; }
.team-bio { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.team-langs {
  font-family: var(--font-en-display);
  font-style: italic;
  color: var(--muted);
  font-size: 12px;
  direction: ltr;
}
@media (max-width: 560px) {
  .team-section { gap: 2px 14px; }
  .team-member { flex: 1 1 100%; max-width: 340px; margin-bottom: 14px; }
}

/* quick announcement pill */
.announce-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin: 0 auto 26px;
}
.announce-wrap .announce { margin: 0; }
.announce-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: block;
}

.announce {
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto 26px;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
