/* ==========================================================================
   פיני נעים — מערכת עיצוב
   ירוק עשבים עמוק כמשטח הדומיננטי, שנהב חם כמשטח תוכן,
   פליז לחותם הכשרות, פטל עמוק לקריאות לפעולה.
   ========================================================================== */

:root {
	/* צבעים */
	--ink:        #131C17;
	--olive:      #24382C;
	--olive-lit:  #2F4739;
	--herb:       #6E8B73;
	--ivory:      #FBF8F1;
	--ivory-dim:  #F1EBDF;
	--brass:      #B08D3F;
	--brass-lit:  #D9BE7A;
	--berry:      #7A2E3E;
	--berry-lit:  #963D4F;

	/* טיפוגרפיה */
	--display: "Frank Ruhl Libre", "Times New Roman", serif;
	--body:    "Assistant", "Segoe UI", system-ui, sans-serif;

	--fs-hero:  clamp(2.6rem, 7vw, 5.2rem);
	--fs-h2:    clamp(1.9rem, 4vw, 3rem);
	--fs-h3:    clamp(1.3rem, 2.4vw, 1.75rem);
	--fs-lead:  clamp(1.05rem, 1.7vw, 1.3rem);
	--fs-body:  1.0625rem;
	--fs-small: 0.875rem;

	/* מרווחים */
	--gap:      clamp(1rem, 2.5vw, 2rem);
	--section:  clamp(4rem, 9vw, 8rem);
	--wrap:     1180px;
	--wrap-narrow: 760px;

	--radius: 2px;
	--shadow: 0 18px 50px -24px rgba(19, 28, 23, .5);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   איפוס
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
	margin: 0;
	direction: rtl;
	font-family: var(--body);
	font-size: var(--fs-body);
	line-height: 1.75;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 .5em;
	letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--ivory);
	padding: .75rem 1.25rem;
	z-index: 999;
}
.skip-link:focus { inset-inline-start: 0; }

.sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   פריסה
   ========================================================================== */

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section); }
.section--dark { background: var(--olive); color: var(--ivory); }
.section--dim  { background: var(--ivory-dim); }

/* כותרת סקשן עם עינית */
.eyebrow {
	font-family: var(--body);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: none;
	color: var(--brass);
	margin: 0 0 .9rem;
	display: flex;
	align-items: center;
	gap: .75rem;
}
.eyebrow::after {
	content: "";
	flex: 1;
	height: 1px;
	background: currentColor;
	opacity: .35;
}
.section--dark .eyebrow { color: var(--brass-lit); }

.section-title { font-size: var(--fs-h2); margin-bottom: .6em; }
.lead { font-size: var(--fs-lead); font-weight: 300; line-height: 1.65; }

/* ==========================================================================
   כפתורים
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .85rem 1.75rem;
	font-family: var(--body);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: .04em;
	border: 1px solid transparent;
	border-radius: var(--radius);
	text-decoration: none;
	cursor: pointer;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--berry); color: var(--ivory); }
.btn--primary:hover { background: var(--berry-lit); }

.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-lit); }

.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: currentColor; }
.section--dark .btn--ghost:hover { color: var(--olive); }
.btn--ghost:hover span { mix-blend-mode: difference; }

.btn__icon { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ==========================================================================
   כותרת עליונה
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--olive);
	color: var(--ivory);
	border-bottom: 1px solid rgba(251, 248, 241, .12);
}

.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	min-height: 76px;
}

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex: none; }
.brand img { max-height: 48px; width: auto; }
.brand__text { font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.brand__sub {
	display: block;
	font-family: var(--body);
	font-size: .68rem;
	font-weight: 400;
	letter-spacing: .18em;
	color: var(--brass-lit);
	line-height: 1;
	margin-top: .25rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav ul { display: flex; gap: clamp(1rem, 2vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav a {
	font-size: .95rem;
	font-weight: 400;
	text-decoration: none;
	padding-block: .35rem;
	position: relative;
}
.nav a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 1px;
	background: var(--brass-lit);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.nav a:hover::after,
.nav .current-menu-item > a::after { transform: scaleX(1); }

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid rgba(251, 248, 241, .3);
	color: inherit;
	padding: .5rem .8rem;
	border-radius: var(--radius);
	cursor: pointer;
	font-family: var(--body);
	font-size: .9rem;
}

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.nav {
		position: fixed;
		inset: 76px 0 auto 0;
		background: var(--olive);
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem 1.75rem 2.5rem;
		gap: 0;
		border-bottom: 1px solid rgba(251, 248, 241, .12);
		transform: translateY(-120%);
		transition: transform .4s var(--ease);
		max-height: calc(100vh - 76px);
		overflow-y: auto;
	}
	.nav[data-open="true"] { transform: translateY(0); }
	.nav ul { flex-direction: column; gap: 0; }
	.nav li { border-bottom: 1px solid rgba(251, 248, 241, .1); }
	.nav a { display: block; padding: .95rem 0; font-size: 1.05rem; }
	.nav .btn { margin-top: 1.25rem; justify-content: center; }
}

/* ==========================================================================
   גיבור
   ========================================================================== */

.hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: grid;
	align-items: end;
	background: var(--olive);
	color: var(--ivory);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	opacity: .42;
	filter: saturate(.85);
}
.hero__inner { position: relative; padding-block: clamp(3rem, 8vw, 6rem); }
.hero h1 {
	font-size: var(--fs-hero);
	max-width: 16ch;
	margin-bottom: .35em;
	text-wrap: balance;
}
.hero__lead { font-size: var(--fs-lead); font-weight: 300; max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* חותם הכשרות — האלמנט החוזר של האתר */
.seal {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--brass-lit);
	border: 1px solid currentColor;
	border-radius: 100px;
	padding: .45rem 1.1rem .45rem .8rem;
	margin-bottom: 1.5rem;
}
.seal__mark {
	width: 1.5rem; height: 1.5rem;
	border: 1px solid currentColor;
	border-radius: 50%;
	display: grid; place-items: center;
	font-family: var(--display);
	font-size: .8rem;
	line-height: 1;
	flex: none;
}
.seal--ink { color: var(--brass); }

/* ==========================================================================
   תפריט — האלמנט החתימתי: כרטיס תפריט עם נקודות מובילות
   ========================================================================== */

.menu-section + .menu-section { margin-top: clamp(3rem, 6vw, 5rem); }

.menu-section__head {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: .9rem;
	border-bottom: 2px solid var(--olive);
}
.menu-section__head h2 { font-size: var(--fs-h3); margin: 0; }
.menu-section__count {
	font-size: var(--fs-small);
	color: var(--herb);
	font-weight: 600;
	margin-inline-start: auto;
}

.menu-list { list-style: none; margin: 0; padding: 0; }

.dish {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(19, 28, 23, .1);
	position: relative;
}
.dish:last-child { border-bottom: 0; }

.dish__thumb {
	width: 84px;
	height: 84px;
	object-fit: cover;
	border-radius: var(--radius);
	background: var(--ivory-dim);
	filter: saturate(.9);
	transition: filter .4s var(--ease), transform .4s var(--ease);
}
.dish:hover .dish__thumb { filter: saturate(1.05); transform: scale(1.04); }

.dish__thumb--empty {
	display: grid;
	place-items: center;
	color: var(--herb);
	font-family: var(--display);
	font-size: 1.5rem;
	border: 1px dashed rgba(19, 28, 23, .18);
}

.dish__body { min-width: 0; }

.dish__name {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 .15rem;
	position: relative;
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-repeat: no-repeat;
	background-position: right bottom;
	transition: background-size .4s var(--ease);
}
.dish:hover .dish__name { background-size: 100% 1px; }

.dish__desc {
	font-size: .95rem;
	font-weight: 300;
	color: #4A5852;
	margin: .2rem 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dish__meta { display: flex; align-items: center; gap: 1rem; flex: none; }

.dish__price {
	font-family: var(--display);
	font-size: 1.15rem;
	font-weight: 700;
	white-space: nowrap;
}
.dish__price small { font-family: var(--body); font-size: .7rem; font-weight: 400; color: var(--herb); display: block; }

.dish__cta {
	display: inline-grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--olive);
	color: var(--ivory);
	text-decoration: none;
	transition: background .3s var(--ease), transform .3s var(--ease);
	flex: none;
}
.dish__cta:hover { background: var(--berry); transform: scale(1.08); }
.dish__cta svg { width: 19px; height: 19px; fill: currentColor; }

@media (max-width: 640px) {
	.dish { grid-template-columns: 64px 1fr; gap: .9rem; }
	.dish__thumb { width: 64px; height: 64px; }
	.dish__meta { grid-column: 2; justify-content: flex-start; margin-top: .5rem; }
	.dish__price { font-size: 1.05rem; }
}

/* ניווט קטגוריות דביק */
.menu-nav {
	position: sticky;
	top: 76px;
	z-index: 50;
	background: var(--ivory);
	border-bottom: 1px solid rgba(19, 28, 23, .12);
	padding-block: .85rem;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.menu-nav ul {
	display: flex;
	gap: 1.4rem;
	list-style: none;
	margin: 0; padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	color: var(--herb);
	transition: color .25s var(--ease);
}
.menu-nav a:hover { color: var(--berry); }

/* ==========================================================================
   רשת קטגוריות בדף הבית
   ========================================================================== */

.cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	background: rgba(251, 248, 241, .16);
	border: 1px solid rgba(251, 248, 241, .16);
}
.cat-card {
	position: relative;
	display: block;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--olive);
	text-decoration: none;
	color: inherit;
	min-height: 190px;
	overflow: hidden;
	transition: background .4s var(--ease);
}
.cat-card:hover { background: var(--olive-lit); }
.cat-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: .18;
	transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.cat-card:hover .cat-card__img { opacity: .32; transform: scale(1.06); }
.cat-card__inner { position: relative; display: flex; flex-direction: column; height: 100%; }
.cat-card h3 { font-size: 1.35rem; margin: 0 0 .3rem; }
.cat-card__n { font-size: .8rem; color: var(--brass-lit); letter-spacing: .1em; }
.cat-card__go { margin-top: auto; font-size: .85rem; color: var(--brass-lit); }

/* ==========================================================================
   שירותים
   ========================================================================== */

.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.service { border-top: 2px solid var(--brass); padding-top: 1.25rem; }
.service h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.service p { font-size: .95rem; font-weight: 300; margin: 0; }

/* ==========================================================================
   סיפור השף
   ========================================================================== */

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.pull {
	font-family: var(--display);
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	line-height: 1.45;
	border-inline-start: 3px solid var(--brass);
	padding-inline-start: 1.25rem;
	margin: 2rem 0;
	color: var(--olive);
}
.section--dark .pull { color: var(--ivory); }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-inline-start: 1.2em; }
.prose li { margin-bottom: .5em; }

/* ==========================================================================
   פרטי קשר
   ========================================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-item h3 {
	font-family: var(--body);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: .14em;
	color: var(--brass);
	margin-bottom: .5rem;
}
.contact-item p, .contact-item a { font-size: 1.05rem; text-decoration: none; }
.contact-item a:hover { color: var(--berry); }

/* ==========================================================================
   כרזת סיום
   ========================================================================== */

.cta-band {
	background: var(--berry);
	color: var(--ivory);
	text-align: center;
	padding-block: clamp(3.5rem, 8vw, 6rem);
}
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: .5em; }
.cta-band p { max-width: 44ch; margin-inline: auto; margin-bottom: 2rem; font-weight: 300; }

/* ==========================================================================
   כותרת תחתונה
   ========================================================================== */

.site-footer { background: var(--ink); color: var(--ivory); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
	font-family: var(--body);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: .14em;
	color: var(--brass-lit);
	margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { text-decoration: none; font-weight: 300; opacity: .85; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }

.footer-quote {
	font-family: var(--display);
	font-size: 1.15rem;
	color: var(--brass-lit);
	margin-top: 1.25rem;
	font-weight: 400;
}

.footer-bottom {
	border-top: 1px solid rgba(251, 248, 241, .14);
	padding-block: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	font-size: .82rem;
	opacity: .7;
}

.social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social a {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	border: 1px solid rgba(251, 248, 241, .25);
	border-radius: 50%;
	transition: background .3s var(--ease), border-color .3s var(--ease);
}
.social a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* כפתור וואטסאפ צף */
.wa-float {
	position: fixed;
	inset-block-end: 1.25rem;
	inset-inline-start: 1.25rem;
	z-index: 90;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 8px 24px -6px rgba(0,0,0,.4);
	transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ==========================================================================
   חשיפה בגלילה
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   עמוד מנה בודדת
   ========================================================================== */

.dish-single { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 800px) { .dish-single { grid-template-columns: 1fr; } }
.dish-single__img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.dish-single h1 { font-size: var(--fs-h2); }
.dish-single__price { font-family: var(--display); font-size: 1.9rem; font-weight: 700; margin: 1rem 0 1.5rem; }
.dish-single__back { font-size: .9rem; color: var(--herb); text-decoration: none; display: inline-block; margin-bottom: 1.5rem; }
.dish-single__back:hover { color: var(--berry); }

.breadcrumb { font-size: .85rem; color: var(--herb); margin-bottom: 1.5rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--berry); }

/* ==========================================================================
   רשת קוביות מנות — לעמודי קטגוריה
   כל תמונה יושבת ביחס קבוע 4:5 עם object-fit, כך שגם צילומי טלפון
   ביחסים שונים לא מעוותים את הגריד.
   ========================================================================== */

.tile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
}

.tile {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(19, 28, 23, .09);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:hover {
	border-color: var(--brass);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -28px rgba(19, 28, 23, .55);
}

.tile__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--ivory-dim);
	overflow: hidden;
	display: block;
}
.tile__frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .7s var(--ease);
}
.tile:hover .tile__frame img { transform: scale(1.05); }

/* מצב ללא תמונה — לא נשבר, מציג מונוגרמה */
.tile__frame--empty {
	display: grid;
	place-items: center;
	background:
		repeating-linear-gradient(135deg, var(--ivory-dim) 0 12px, #EDE6D8 12px 24px);
}
.tile__frame--empty span {
	font-family: var(--display);
	font-size: 2.4rem;
	color: var(--herb);
	opacity: .55;
}

.tile__badge {
	position: absolute;
	inset-block-start: .6rem;
	inset-inline-start: .6rem;
	background: rgba(19, 28, 23, .82);
	color: var(--ivory);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .06em;
	padding: .25rem .6rem;
	border-radius: 100px;
	backdrop-filter: blur(4px);
}

.tile__body {
	padding: .95rem 1.05rem 1.05rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: .3rem;
}

.tile__name {
	font-family: var(--display);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.tile__name a { text-decoration: none; }
.tile__name a:hover { color: var(--berry); }

.tile__desc {
	font-size: .875rem;
	font-weight: 300;
	color: #55635C;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.4em;
}

.tile__foot {
	margin-top: auto;
	padding-top: .75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	border-top: 1px solid rgba(19, 28, 23, .08);
}
.tile__price { font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.tile__price small { font-family: var(--body); font-size: .68rem; font-weight: 400; color: var(--herb); }

.tile__acts { display: flex; gap: .4rem; }
.tile__act {
	width: 34px; height: 34px;
	display: grid; place-items: center;
	border-radius: 50%;
	text-decoration: none;
	transition: transform .25s var(--ease), background .25s var(--ease);
}
.tile__act svg { width: 16px; height: 16px; fill: currentColor; }
.tile__act:hover { transform: scale(1.1); }
.tile__act--wa { background: #25D366; color: #fff; }
.tile__act--tel { background: var(--olive); color: var(--ivory); }

@media (max-width: 480px) {
	.tile-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
	.tile__body { padding: .75rem .8rem .85rem; }
	.tile__name { font-size: .92rem; }
	.tile__desc { display: none; }
}

/* ==========================================================================
   זוג פעולות יצירת קשר — וואטסאפ + חיוג
   ========================================================================== */

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
}
.contact-actions .btn { flex: 0 1 auto; }

.btn--wa { background: #25D366; color: #06331B; }
.btn--wa:hover { background: #1FBE5A; }

.btn--tel { background: var(--brass); color: var(--ink); }
.btn--tel:hover { background: var(--brass-lit); }

/* זוג כפתורים צפים במובייל */
.wa-float { display: grid; }

.float-stack {
	position: fixed;
	inset-block-end: 1rem;
	inset-inline-start: 1rem;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.float-stack a {
	width: 54px; height: 54px;
	border-radius: 50%;
	display: grid; place-items: center;
	box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .45);
	transition: transform .28s var(--ease);
	text-decoration: none;
}
.float-stack a:hover { transform: scale(1.08); }
.float-stack svg { width: 26px; height: 26px; fill: currentColor; }
.float-stack .fs-wa  { background: #25D366; color: #fff; }
.float-stack .fs-tel { background: var(--olive); color: var(--ivory); }

@media (max-width: 520px) {
	.float-stack { flex-direction: row; inset-inline: 1rem auto; }
	.float-stack a { width: 50px; height: 50px; }
}

/* ==========================================================================
   פס אמון מתחת לגיבור
   ========================================================================== */

.trust {
	background: var(--ink);
	color: var(--ivory);
	padding-block: 1.15rem;
	border-bottom: 1px solid rgba(251, 248, 241, .1);
}
.trust ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1rem, 4vw, 3rem);
	list-style: none;
	margin: 0; padding: 0;
	font-size: .82rem;
	letter-spacing: .06em;
}
.trust li { display: flex; align-items: center; gap: .5rem; opacity: .9; }
.trust li::before {
	content: "";
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--brass);
	flex: none;
}

/* ==========================================================================
   כרטיסי אמון / איך זה עובד
   ========================================================================== */

.steps { counter-reset: st; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { counter-increment: st; position: relative; padding-top: 2.75rem; }
.step::before {
	content: counter(st);
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	font-family: var(--display);
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--brass);
	line-height: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .93rem; font-weight: 300; margin: 0; }

/* ==========================================================================
   סרגל מחירים בעמוד מנה
   ========================================================================== */

.note {
	background: var(--ivory-dim);
	border-inline-start: 3px solid var(--brass);
	padding: 1rem 1.15rem;
	font-size: .92rem;
	margin: 1.5rem 0;
}
.note strong { font-weight: 600; }

/* ==========================================================================
   תיקוני ליטוש — אחרי בדיקה חזותית
   ========================================================================== */

/* גיבור: שכבת מעבר שמבטיחה קריאוּת מעל כל תמונה,
   ומרקם עדין כשעדיין לא הועלתה תמונה */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 85% 10%, rgba(176, 141, 63, .18), transparent 60%),
		linear-gradient(to top, rgba(19, 28, 23, .92) 0%, rgba(19, 28, 23, .45) 45%, rgba(19, 28, 23, .15) 100%);
	pointer-events: none;
	z-index: 1;
}
.hero__inner { z-index: 2; }
.hero__media { z-index: 0; }

/* חותם הכשרות — לא נשבר על טקסט ארוך */
.seal {
	flex-wrap: nowrap;
	max-width: 100%;
	line-height: 1.3;
	text-align: start;
}
@media (max-width: 560px) {
	.seal {
		border-radius: 6px;
		align-items: flex-start;
		padding: .55rem .9rem;
		font-size: .72rem;
	}
	.seal__mark { margin-top: .05rem; }
}

/* פעולות הגיבור — שורה נקייה */
.hero__actions { align-items: center; row-gap: .85rem; }
.hero__actions .contact-actions { gap: .75rem; }

@media (max-width: 560px) {
	.hero { min-height: min(88vh, 640px); }
	.hero__actions,
	.hero__actions .contact-actions { width: 100%; }
	.hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* כפתור התפריט במובייל — נראה וברור */
.nav-toggle {
	background: rgba(251, 248, 241, .1);
	border-color: rgba(251, 248, 241, .45);
	font-weight: 600;
	letter-spacing: .04em;
}
.nav-toggle:hover { background: rgba(251, 248, 241, .2); }

/* בהדר במובייל מציגים רק את כפתור החיוג, וואטסאפ יושב בתפריט */
@media (max-width: 900px) {
	.header-bar > .contact-actions { display: none; }
	.nav .contact-actions { flex-direction: column; align-items: stretch; margin-top: 1.25rem; }
	.nav .contact-actions .btn { justify-content: center; }
}

/* קוביות: גובה כותרת אחיד כדי שהשורה התחתונה תתיישר */
.tile__name { min-height: 2.6em; }
@media (max-width: 480px) { .tile__name { min-height: 2.4em; } }

/* פס האמון — ריווח נעים במובייל */
@media (max-width: 620px) {
	.trust { padding-block: 1rem; }
	.trust ul { gap: .5rem 1.25rem; font-size: .76rem; }
}

/* רשת הקטגוריות — גובה אחיד ומראה מלוטש */
.cat-card { display: flex; }
.cat-card__inner { width: 100%; }

/* טיפוגרפיה: מניעת יתמות בכותרות */
.section-title, .hero h1 { text-wrap: balance; }

/* הדפסה — התפריט כדף מודפס נקי */
@media print {
	.site-header, .site-footer, .float-stack, .cta-band,
	.menu-nav, .tile__acts, .dish__cta, .contact-actions { display: none !important; }
	body { background: #fff; color: #000; }
	.section { padding-block: 1rem; }
	.tile { break-inside: avoid; border-color: #ccc; }
}

/* ==========================================================================
   סרגל נגישות
   ========================================================================== */

.a11y {
	position: fixed;
	inset-block-end: 1rem;
	inset-inline-end: 1rem;
	z-index: 95;
	font-family: var(--body);
}

.a11y__toggle {
	width: 50px; height: 50px;
	border-radius: 50%;
	border: 2px solid var(--ivory);
	background: #1B4C8C;
	color: #fff;
	display: grid; place-items: center;
	cursor: pointer;
	box-shadow: 0 8px 22px -8px rgba(0, 0, 0, .45);
	transition: transform .25s var(--ease);
}
.a11y__toggle:hover { transform: scale(1.08); }
.a11y__toggle svg { width: 26px; height: 26px; fill: currentColor; }

.a11y__panel {
	position: absolute;
	inset-block-end: calc(100% + .65rem);
	inset-inline-end: 0;
	width: 220px;
	background: #fff;
	color: var(--ink);
	border: 1px solid rgba(19, 28, 23, .18);
	border-radius: 6px;
	padding: .85rem;
	box-shadow: 0 20px 46px -20px rgba(0, 0, 0, .4);
	display: flex;
	flex-direction: column;
	gap: .35rem;
}
.a11y__panel[hidden] { display: none; }
.a11y__panel h2 {
	font-family: var(--body);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--herb);
	margin: 0 0 .35rem;
}
.a11y__panel button,
.a11y__panel a {
	font-family: var(--body);
	font-size: .9rem;
	text-align: start;
	padding: .5rem .65rem;
	border: 1px solid rgba(19, 28, 23, .12);
	border-radius: 4px;
	background: var(--ivory);
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s var(--ease), border-color .2s var(--ease);
}
.a11y__panel button:hover,
.a11y__panel a:hover { background: var(--ivory-dim); border-color: var(--brass); }
.a11y__panel button[aria-pressed="true"] { background: var(--olive); color: var(--ivory); border-color: var(--olive); }

/* --- מצבי נגישות פעילים --- */

html[data-a11y-font="1"] body { font-size: 1.15rem; }
html[data-a11y-font="2"] body { font-size: 1.3rem; }
html[data-a11y-font="3"] body { font-size: 1.45rem; }
html[data-a11y-font="-1"] body { font-size: .95rem; }

html[data-a11y-links="on"] a:not(.btn):not(.tile__act):not(.a11y__panel a) {
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
	text-underline-offset: 2px;
	font-weight: 600;
}

html[data-a11y-motion="off"] *,
html[data-a11y-motion="off"] *::before,
html[data-a11y-motion="off"] *::after {
	animation: none !important;
	transition: none !important;
	scroll-behavior: auto !important;
}
html[data-a11y-motion="off"] .reveal { opacity: 1 !important; transform: none !important; }

html[data-a11y-contrast="on"] {
	--ink: #000;
	--olive: #000;
	--olive-lit: #111;
	--ivory: #fff;
	--ivory-dim: #fff;
	--herb: #333;
	--brass: #A66E00;
	--brass-lit: #FFD24A;
	--berry: #8A0025;
	--berry-lit: #A60030;
}
html[data-a11y-contrast="on"] .tile,
html[data-a11y-contrast="on"] .note { border-color: #000; }
html[data-a11y-contrast="on"] .hero::before {
	background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .7));
}
html[data-a11y-contrast="on"] .dish__desc,
html[data-a11y-contrast="on"] .tile__desc { color: #222; }

@media (max-width: 520px) {
	.a11y { inset-block-end: .9rem; inset-inline-end: .9rem; }
	.a11y__toggle { width: 46px; height: 46px; }
	.a11y__panel { width: 200px; }
}

@media print { .a11y { display: none !important; } }
