/* ==========================================================================
   Agency Core — מערכת עיצוב לאתרי סוכנות
   RTL, mobile-first, ללא תלות בספריות חיצוניות.
   כל הצבעים והמידות דרך משתני CSS כדי ששכפול לאתר חדש = החלפת ערכים בלבד.
   ========================================================================== */

:root {
	/* --- מותג (זה מה שמחליפים באתר חדש) ---
	   כל הגוונים נבדקו מול WCAG AA על הרקעים הכהים.
	   שים לב: טקסט לבן על ורוד נכשל בתקן (2.4-4.3), ולכן
	   הטקסט על משטח ורוד הוא תמיד --on-brand הכהה. */
	--brand: #ff4d94;
	--brand-soft: #ff8ec0;
	--brand-deep: #e84a89;
	--on-brand: #1a0710;
	--brand-glow: rgba(255, 77, 148, 0.24);

	/* --- משטחים --- */
	--bg: #0b0b0d;
	--surface: #141417;
	--surface-2: #1c1c21;
	--surface-3: #26262c;
	--line: rgba(255, 255, 255, 0.09);
	--line-strong: rgba(255, 255, 255, 0.16);

	/* --- טקסט --- */
	--text: #f4f4f5;
	--text-dim: #a9a9b2;
	/* #6f6f79 היה יפה אך נכשל ב-WCAG AA (3.41 מול 4.5) בטקסט קטן —
	   בשימוש בתגיות, בפירורי הלחם ובפוטר, ולכן הובהר. */
	--text-faint: #909099;

	/* --- פעולה --- */
	/* קצות הגרדיאנטים נבחרו כך שטקסט --on-brand הכהה עובר AA על שניהם.
	   טקסט לבן נכשל על ירוק בדיוק כמו על ורוד (1.98-4.14). */
	--wa: #25d366;
	--wa-deep: #149a8a;
	--call: #34d06f;
	--call-deep: #17a34a;

	/* --- מידות --- */
	--r-sm: 10px;
	--r: 16px;
	--r-lg: 22px;
	--r-full: 999px;

	--pad: clamp(16px, 4vw, 28px);
	--maxw: 1200px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
	--shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.6);

	/* גובה סרגל הפעולה במובייל — משמש גם כריפוד תחתון לגוף העמוד */
	--cta-h: 68px;
}

/* --------------------------------------------------------------------------
   איפוס
   -------------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	line-height: 1.2;
	font-weight: 700;
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

::selection {
	background: var(--brand);
	color: #000;
}

:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 3px;
	border-radius: 4px;
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--bg);
}
::-webkit-scrollbar-thumb {
	background: var(--surface-3);
	border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--brand-deep);
}

/* --------------------------------------------------------------------------
   פריסה
   -------------------------------------------------------------------------- */

.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--pad);
}

.section {
	padding-block: clamp(40px, 7vw, 80px);
}

.section--tight {
	padding-block: clamp(28px, 4vw, 48px);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(20px, 3vw, 32px);
	flex-wrap: wrap;
}

.section-title {
	font-size: clamp(24px, 4.5vw, 38px);
	margin: 0;
	letter-spacing: -0.02em;
}

.section-title span {
	color: var(--brand);
}

.section-sub {
	color: var(--text-dim);
	margin: 6px 0 0;
	font-size: 15px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(11, 11, 13, 0.82);
	backdrop-filter: blur(16px) saturate(1.4);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 62px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

/* הלוגו מוצג שלם — לכן ההדר גבוה מספיק כדי להכיל אותו בלי חיתוך */
.logo--head {
	height: 52px;
	width: auto;
	display: block;
}

@media (min-width: 600px) {
	.logo--head {
		height: 64px;
	}
}

.site-header__inner {
	min-height: 74px;
}

@media (min-width: 600px) {
	.site-header__inner {
		min-height: 86px;
	}
}

.logo--full {
	width: 230px;
	height: auto;
	display: block;
}

.nav {
	display: none;
	margin-inline-start: auto;
	gap: 4px;
}

.nav a {
	padding: 8px 13px;
	border-radius: var(--r-full);
	color: var(--text-dim);
	font-size: 15px;
	font-weight: 500;
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
	color: var(--brand);
	background: rgba(255, 255, 255, 0.05);
}

.header-cta {
	margin-inline-start: auto;
}

.nav-toggle {
	margin-inline-start: auto;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	border: 1px solid var(--line);
	color: var(--brand);
}

@media (min-width: 900px) {
	.nav {
		display: flex;
	}
	.nav-toggle {
		display: none;
	}
	.header-cta {
		margin-inline-start: 0;
	}
}

/* תפריט נגלל למובייל */
.nav-drawer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s var(--ease);
	border-top: 0 solid var(--line);
	background: var(--surface);
}

.nav-drawer[data-open="true"] {
	grid-template-rows: 1fr;
	border-top-width: 1px;
}

.nav-drawer__inner {
	overflow: hidden;
}

.nav-drawer ul {
	list-style: none;
	margin: 0;
	padding: 10px var(--pad) 18px;
	display: grid;
	gap: 2px;
}

.nav-drawer a {
	display: block;
	padding: 11px 12px;
	border-radius: var(--r-sm);
	color: var(--text-dim);
	font-weight: 500;
}

.nav-drawer a:hover {
	background: var(--surface-2);
	color: var(--brand);
}

@media (min-width: 900px) {
	.nav-drawer {
		display: none;
	}
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--r-full);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	white-space: nowrap;
	transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.22s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.07);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.btn:active {
	transform: translateY(0);
}

.btn svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
	flex: none;
}

.btn--brand {
	background: linear-gradient(135deg, var(--brand-soft), var(--brand));
	color: var(--on-brand);
}

.btn--wa {
	background: linear-gradient(135deg, var(--wa), var(--wa-deep));
	color: var(--on-brand);
}

.btn--call {
	background: linear-gradient(135deg, var(--call), var(--call-deep));
	color: var(--on-brand);
}

.btn--ghost {
	border: 1px solid var(--line-strong);
	color: var(--text);
}

.btn--ghost:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.btn--sm {
	padding: 9px 16px;
	font-size: 14.5px;
}

.btn--block {
	display: flex;
	width: 100%;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(48px, 9vw, 104px);
	isolation: isolate;
}

/* --------------------------------------------------------------------------
   Hero עם תצלום רקע
   שתי שכבות הצללה: אנכית לקריאות הטקסט, ואופקית שמכהה את צד הטקסט
   כדי שהניגודיות תעמוד בתקן גם על החלקים הבהירים של התמונה.
   -------------------------------------------------------------------------- */

.hero.hero--photo {
	padding-block: clamp(64px, 11vw, 140px);
}

.hero.hero--photo .hero__bg {
	position: absolute;
	inset: 0;
	z-index: -3;
}

.hero.hero--photo .hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 28%;
}

/* --veil נקבע לכל תמונה בנפרד לפי הבהירות הממוצעת שלה:
   תצלום כהה מקבל הצללה חלשה כדי שלא ייעלם, בהיר מקבל חזקה
   כדי שהטקסט מעליו יישאר קריא. */
.hero.hero--photo {
	--veil: 0.63;
}

.hero.hero--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(to bottom,
			rgba(11, 11, 13, calc(var(--veil) * 0.88)) 0%,
			rgba(11, 11, 13, calc(var(--veil) * 0.32)) 42%,
			var(--bg) 97%),
		linear-gradient(to left,
			rgba(11, 11, 13, calc(var(--veil) * 1.5)) 0%,
			rgba(11, 11, 13, calc(var(--veil) * 1.15)) 38%,
			rgba(11, 11, 13, calc(var(--veil) * 0.29)) 72%);
}

/* מבטל את הרשת הדקורטיבית כשיש תצלום */
.hero.hero--photo::after {
	content: none;
}

.hero.hero--photo .hero__grid {
	grid-template-columns: 1fr;
}

.hero.hero--photo .hero__copy {
	max-width: 40rem;
}

@media (max-width: 979px) {
	.hero.hero--photo::before {
		background:
			linear-gradient(to bottom,
				rgba(11, 11, 13, calc(var(--veil) * 0.98)) 0%,
				rgba(11, 11, 13, calc(var(--veil) * 0.67)) 40%,
				var(--bg) 96%);
	}
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(90% 120% at 78% 0%, rgba(255, 77, 148, 0.18), transparent 62%),
		radial-gradient(80% 100% at 8% 100%, rgba(255, 77, 148, 0.08), transparent 60%),
		var(--bg);
}

/* רשת עדינה ברקע — עומק בלי תמונה כבדה */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 68%);
	-webkit-mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 68%);
	opacity: 0.5;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	/* בלי nowrap שם עיר דו-מילתי כמו "תל אביב" נשבר לשתי שורות בתוך התג */
	white-space: nowrap;
	border-radius: var(--r-full);
	background: rgba(255, 77, 148, 0.13);
	border: 1px solid rgba(255, 77, 148, 0.32);
	color: var(--brand);
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 18px;
}

/* אייקון בתוך התג — גודל קבוע, אחרת הוא מתרחב ודוחס את הטקסט */
.hero__eyebrow svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	flex: none;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3ee07a;
	box-shadow: 0 0 0 0 rgba(62, 224, 122, 0.7);
	animation: pulse 2.2s infinite;
	flex: none;
}

@keyframes pulse {
	70% {
		box-shadow: 0 0 0 9px rgba(62, 224, 122, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(62, 224, 122, 0);
	}
}

.hero h1 {
	font-size: clamp(31px, 6.4vw, 60px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
	max-width: 16ch;
}

.hero h1 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--brand-soft), var(--brand), var(--brand-deep));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	font-size: clamp(16px, 2.2vw, 19px);
	color: var(--text-dim);
	max-width: 52ch;
	margin-bottom: 26px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-bottom: 30px;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	color: var(--text-dim);
	font-size: 14.5px;
}

.hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.hero__trust svg {
	width: 17px;
	height: 17px;
	fill: var(--brand);
	flex: none;
}

/* --------------------------------------------------------------------------
   Hero: פריסה דו-טורית + קולאז' מהרקדניות
   הקולאז' מחליף תמונת רקע כבדה — הוא גם מציג את המוצר וגם נטען מהר.
   -------------------------------------------------------------------------- */

.hero__grid {
	display: grid;
	gap: clamp(28px, 5vw, 52px);
	align-items: center;
}

@media (min-width: 980px) {
	.hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.hero__art {
	display: none;
	position: relative;
	padding-block: 10px;
}

@media (min-width: 980px) {
	.hero__art {
		display: block;
	}
}

/* זוהר ורוד מאחורי הקולאז' */
.hero__art::before {
	content: "";
	position: absolute;
	inset: -12% -6%;
	background: radial-gradient(closest-side, var(--brand-glow), transparent 72%);
	filter: blur(6px);
	z-index: 0;
}

.hero__stack {
	position: relative;
	z-index: 1;
	display: grid;
	/* הכרטיס האמצעי רחב יותר — מדרג ברור במקום שלושה כרטיסים זהים */
	grid-template-columns: 0.86fr 1.18fr 0.86fr;
	gap: 12px;
	align-items: center;
}

.hero__shot {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line-strong);
	box-shadow: var(--shadow-lg);
	background: var(--surface);
	transition: transform 0.5s var(--ease);
}

.hero__shot img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

/* הכרטיס האמצעי גבוה ומוגבה — יוצר מדרג ברור */
.hero__shot:nth-child(1) {
	transform: rotate(-5deg) translateY(22px);
}
.hero__shot:nth-child(2) {
	transform: scale(1.06) translateY(-8px);
	z-index: 2;
	border-color: rgba(255, 77, 148, 0.5);
	box-shadow: var(--shadow-lg), 0 0 34px var(--brand-glow);
}
.hero__shot:nth-child(3) {
	transform: rotate(5deg) translateY(22px);
}

.hero__stack:hover .hero__shot:nth-child(1) {
	transform: rotate(-7deg) translateY(14px);
}
.hero__stack:hover .hero__shot:nth-child(3) {
	transform: rotate(7deg) translateY(14px);
}

/* תג צף — בקצה החיצוני של הקולאז', כדי שלא יכסה פנים */
.hero__badge {
	position: absolute;
	z-index: 3;
	bottom: -6px;
	inset-inline-end: 4px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: var(--r-full);
	background: rgba(11, 11, 13, 0.86);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--line-strong);
	font-size: 13.5px;
	font-weight: 600;
	box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
	.hero__shot {
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   שבב ערים
   -------------------------------------------------------------------------- */

.chips {
	display: flex;
	gap: 9px;
	overflow-x: auto;
	padding-block: 4px 12px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.chips::-webkit-scrollbar {
	display: none;
}

.chip {
	flex: none;
	padding: 9px 17px;
	border-radius: var(--r-full);
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--text-dim);
	font-size: 14.5px;
	font-weight: 600;
	transition: all 0.22s var(--ease);
}

.chip:hover,
.chip[aria-current="page"] {
	background: var(--brand);
	border-color: var(--brand);
	color: var(--on-brand);
}

.chip__n {
	opacity: 0.6;
	font-size: 12.5px;
	margin-inline-start: 4px;
}

/* --------------------------------------------------------------------------
   אזורי שירות — כל היישובים, מקובצים לפי אזור
   -------------------------------------------------------------------------- */

.areas {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.area {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 20px 18px;
}

.area h3 {
	font-size: 15px;
	color: var(--brand);
	margin-bottom: 12px;
	letter-spacing: 0.02em;
}

.area ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.area a {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	padding: 6px 12px;
	border-radius: var(--r-full);
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--text-dim);
	font-size: 14px;
	transition: all 0.22s var(--ease);
}

.area a:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: var(--on-brand);
}

.area a b {
	font-size: 11.5px;
	font-weight: 600;
	opacity: 0.6;
}

/* --------------------------------------------------------------------------
   רשת כרטיסים
   -------------------------------------------------------------------------- */

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
	gap: clamp(12px, 2vw, 22px);
}

@media (min-width: 700px) {
	.grid {
		grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	}
}

.card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.card:hover,
.card:focus-within {
	transform: translateY(-5px);
	border-color: rgba(255, 77, 148, 0.45);
	box-shadow: var(--shadow-lg), 0 0 30px var(--brand-glow);
}

.card__media {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--surface-2);
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
	transform: scale(1.06);
}

/* הצללה תחתונה כדי שהשם ייקרא על כל תמונה */
.card__media::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 55%;
	background: linear-gradient(to top, rgba(10, 10, 12, 0.92), transparent);
	pointer-events: none;
}

.card__badge {
	position: absolute;
	top: 10px;
	inset-inline-end: 10px;
	z-index: 2;
	padding: 5px 11px;
	border-radius: var(--r-full);
	background: linear-gradient(135deg, var(--brand-soft), var(--brand));
	color: var(--on-brand);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.02em;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.card__live {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: var(--r-full);
	background: rgba(8, 8, 10, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(62, 224, 122, 0.42);
	color: #6ff0a1;
	font-size: 11.5px;
	font-weight: 700;
}

.card__caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 2;
	padding: 12px 14px;
}

.card__name {
	font-size: 19px;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.card__meta {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	margin: 1px 0 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.card__body {
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.card__desc {
	font-size: 13.5px;
	color: var(--text-dim);
	line-height: 1.55;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__cities {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: auto;
}

.tag {
	font-size: 11.5px;
	padding: 3px 9px;
	border-radius: var(--r-full);
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--text-faint);
}

.card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
}

.card__actions .btn {
	padding: 10px 8px;
	font-size: 14px;
}

/* קישור־על: כל הכרטיס לחיץ בלי לעטוף את הכפתורים */
.card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.card__actions,
.card__badge,
.card__live {
	position: relative;
	z-index: 3;
}

/* --------------------------------------------------------------------------
   סרגל פעולה דביק במובייל
   -------------------------------------------------------------------------- */

.cta-bar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 950;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
	background: rgba(11, 11, 13, 0.93);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-top: 1px solid var(--line);
}

.cta-bar .btn {
	padding: 13px 10px;
}

@media (min-width: 900px) {
	.cta-bar {
		display: none;
	}
}

body {
	padding-bottom: var(--cta-h);
}

@media (min-width: 900px) {
	body {
		padding-bottom: 0;
	}
}

/* --------------------------------------------------------------------------
   עמוד רקדנית
   -------------------------------------------------------------------------- */

.profile {
	display: grid;
	gap: clamp(20px, 4vw, 44px);
	padding-block: clamp(24px, 4vw, 46px);
}

@media (min-width: 860px) {
	.profile {
		grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
		align-items: start;
	}
}

.profile__media {
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	position: relative;
}

.profile__media img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

/* --------------------------------------------------------------------------
   גלריית רקדנית — תמונה ראשית + תמונות ממוזערות
   -------------------------------------------------------------------------- */

.gallery__main {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
}

.gallery__main img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

/* מחליף תמונה ב-CSS בלבד: הרדיו המסומן קובע מה מוצג */
.gallery input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gallery__slide {
	display: none;
}

/* nth-of-type ולא nth-child: תג הספירה (span) הוא הילד הראשון ב-__main,
   והשקופיות הן ה-div-ים — ספירה לפי סוג התג פוגעת בהן נכון. */
.gallery input:nth-of-type(1):checked ~ .gallery__main .gallery__slide:nth-of-type(1),
.gallery input:nth-of-type(2):checked ~ .gallery__main .gallery__slide:nth-of-type(2),
.gallery input:nth-of-type(3):checked ~ .gallery__main .gallery__slide:nth-of-type(3),
.gallery input:nth-of-type(4):checked ~ .gallery__main .gallery__slide:nth-of-type(4),
.gallery input:nth-of-type(5):checked ~ .gallery__main .gallery__slide:nth-of-type(5) {
	display: block;
}

.gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
	gap: 8px;
	margin-top: 10px;
}

.gallery__thumbs label {
	display: block;
	border-radius: var(--r-sm);
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
	opacity: 0.62;
}

.gallery__thumbs label:hover {
	opacity: 1;
}

.gallery__thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.gallery input:nth-of-type(1):checked ~ .gallery__thumbs label:nth-child(1),
.gallery input:nth-of-type(2):checked ~ .gallery__thumbs label:nth-child(2),
.gallery input:nth-of-type(3):checked ~ .gallery__thumbs label:nth-child(3),
.gallery input:nth-of-type(4):checked ~ .gallery__thumbs label:nth-child(4),
.gallery input:nth-of-type(5):checked ~ .gallery__thumbs label:nth-child(5) {
	border-color: var(--brand);
	opacity: 1;
}

/* טבעת פוקוס למקלדת */
.gallery input:focus-visible ~ .gallery__thumbs label {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.gallery__count {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	z-index: 2;
	padding: 5px 11px;
	border-radius: var(--r-full);
	background: rgba(8, 8, 10, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--line-strong);
	color: var(--text);
	font-size: 12px;
	font-weight: 600;
}

.profile h1 {
	font-size: clamp(28px, 5vw, 44px);
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.profile__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.fact {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: var(--r-full);
	background: var(--surface-2);
	border: 1px solid var(--line);
	font-size: 14px;
	color: var(--text-dim);
}

.fact b {
	color: var(--text);
	font-weight: 600;
}

.profile__lead {
	font-size: 17px;
	color: var(--text-dim);
	margin-bottom: 24px;
}

.profile__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: clamp(16px, 3vw, 24px);
}

.panel + .panel {
	margin-top: 14px;
}

.panel h2 {
	font-size: 18px;
	margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   בלוקים תומכים
   -------------------------------------------------------------------------- */

.features {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 22px 20px;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.feature:hover {
	border-color: rgba(255, 77, 148, 0.38);
	transform: translateY(-3px);
}

.feature__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: rgba(255, 77, 148, 0.14);
	margin-bottom: 13px;
}

.feature__icon svg {
	width: 21px;
	height: 21px;
	fill: var(--brand);
}

.feature h3 {
	font-size: 17px;
	margin-bottom: 5px;
}

.feature p {
	font-size: 14.5px;
	color: var(--text-dim);
	margin: 0;
}

.steps {
	counter-reset: s;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	list-style: none;
	padding: 0;
	margin: 0;
}

.steps li {
	counter-increment: s;
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 20px 18px 18px;
}

.steps li::before {
	content: counter(s);
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--brand);
	color: var(--on-brand);
	font-weight: 800;
	font-size: 15px;
	margin-bottom: 10px;
}

.steps h3 {
	font-size: 16px;
	margin-bottom: 4px;
}

.steps p {
	font-size: 14px;
	color: var(--text-dim);
	margin: 0;
}

/* שאלות נפוצות */
.faq {
	display: grid;
	gap: 9px;
}

.faq details {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
}

.faq summary {
	padding: 16px 18px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	color: var(--brand);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.28s var(--ease);
	flex: none;
}

.faq details[open] summary::after {
	transform: rotate(45deg);
}

.faq .faq__a {
	padding: 0 18px 16px;
	color: var(--text-dim);
	font-size: 15px;
	margin: 0;
}

/* --------------------------------------------------------------------------
   פירורי לחם
   -------------------------------------------------------------------------- */

.breadcrumb {
	padding-block: 14px 0;
	font-size: 13.5px;
	color: var(--text-faint);
}

/* בתוך ה-hero: בלי ריפוד עליון (הסקשן כבר מרופד) ובצבע בהיר יותר,
   כי מתחתיו יש תצלום ולא רקע אחיד. */
.breadcrumb--hero {
	padding-block: 0;
	margin-bottom: 14px;
	color: var(--text-dim);
}

.breadcrumb--hero a {
	color: var(--text-dim);
}

.breadcrumb--hero a:hover {
	color: var(--brand);
}

.breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.breadcrumb li + li::before {
	content: "‹";
	margin-inline-end: 6px;
	opacity: 0.5;
}

.breadcrumb a {
	color: var(--text-dim);
}

.breadcrumb a:hover {
	color: var(--brand);
}

/* --------------------------------------------------------------------------
   טקסט זורם (עמודי ערים ואירועים)
   -------------------------------------------------------------------------- */

.prose {
	max-width: 68ch;
	color: var(--text-dim);
	font-size: 16.5px;
	line-height: 1.75;
}

.prose h2 {
	color: var(--text);
	font-size: clamp(21px, 3vw, 27px);
	margin-top: 1.6em;
}

.prose h2:first-child {
	margin-top: 0;
}

.prose strong {
	color: var(--text);
	font-weight: 600;
}

.prose ul {
	padding-inline-start: 1.1em;
	margin: 0 0 1em;
}

.prose li {
	margin-bottom: 0.4em;
}

/* --------------------------------------------------------------------------
   המלצות
   -------------------------------------------------------------------------- */

.reviews {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 22px 20px;
	position: relative;
}

.review__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 10px;
}

.review__stars svg {
	width: 15px;
	height: 15px;
	fill: var(--brand);
}

.review p {
	font-size: 15px;
	color: var(--text-dim);
	margin: 0 0 12px;
	line-height: 1.65;
}

.review cite {
	font-style: normal;
	font-size: 13.5px;
	color: var(--text-faint);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   מחירון
   -------------------------------------------------------------------------- */

.pricing {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	align-items: start;
}

.price-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.price-card:hover {
	border-color: rgba(255, 77, 148, 0.44);
	transform: translateY(-3px);
}

.price-card--featured {
	border-color: var(--brand);
	box-shadow: 0 0 30px var(--brand-glow);
}

.price-card__tag {
	position: absolute;
	inset-inline-end: 18px;
	top: -11px;
	background: var(--brand);
	color: var(--on-brand);
	font-size: 11.5px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: var(--r-full);
}

.price-card {
	position: relative;
}

.price-card h3 {
	font-size: 20px;
	margin: 0;
}

.price-card__dur {
	font-size: 13.5px;
	color: var(--brand);
	font-weight: 600;
}

.price-card p {
	font-size: 14.5px;
	color: var(--text-dim);
	margin: 0;
}

.price-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
	font-size: 14.5px;
	color: var(--text-dim);
}

.price-card li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.price-card li::before {
	content: "✓";
	color: var(--brand);
	font-weight: 700;
	flex: none;
}

.price-note {
	margin-top: 16px;
	font-size: 14.5px;
	color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   הצהרה משפטית וגיל
   -------------------------------------------------------------------------- */

.legal {
	background: var(--surface-2);
	border: 1px solid var(--line-strong);
	border-radius: var(--r);
	padding: 18px 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.legal__badge {
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--brand);
	color: var(--on-brand);
	font-weight: 900;
	font-size: 14px;
	letter-spacing: -0.02em;
}

.legal p {
	margin: 0;
	font-size: 14.5px;
	color: var(--text-dim);
	line-height: 1.65;
}

.legal strong {
	color: var(--text);
}

/* --------------------------------------------------------------------------
   קרדיט מפתח
   -------------------------------------------------------------------------- */

.credit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.credit a {
	color: var(--text-dim);
	border-bottom: 1px dotted var(--line-strong);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.credit a:hover {
	color: var(--brand);
	border-color: var(--brand);
}

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

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--surface);
	padding-block: clamp(32px, 5vw, 52px) 26px;
	margin-top: clamp(40px, 6vw, 72px);
}

.footer-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	margin-bottom: 28px;
}

.footer-col h3 {
	font-size: 15px;
	color: var(--brand);
	margin-bottom: 12px;
	letter-spacing: 0.02em;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}

/* :not(.btn) חיוני — אחרת הכלל הזה דורס את צבע הטקסט של הכפתורים
   (ספציפיות 0,1,1 מול 0,1,0) והם יוצאים אפורים על רקע צבעוני. */
.footer-col a:not(.btn) {
	color: var(--text-dim);
	font-size: 14.5px;
	transition: color 0.2s var(--ease);
}

.footer-col a:not(.btn):hover {
	color: var(--brand);
}

.footer-bottom {
	border-top: 1px solid var(--line);
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	color: var(--text-faint);
	font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   כפתורים צפים: וואטסאפ + נגישות
   -------------------------------------------------------------------------- */

.floaters {
	position: fixed;
	inset-inline-end: 16px;
	bottom: 16px;
	z-index: 960;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* במובייל סרגל ה-CTA כבר מכיל וואטסאפ — הצף מוסתר, הנגישות נשארת */
@media (max-width: 899px) {
	.floaters {
		bottom: calc(var(--cta-h) + 14px);
	}
	.fab--wa {
		display: none;
	}
}

.fab {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
	border: 0;
	padding: 0;
}

.fab:hover {
	transform: scale(1.07);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.fab svg {
	width: 29px;
	height: 29px;
	fill: var(--on-brand);
}

.fab--wa {
	background: linear-gradient(135deg, var(--wa), var(--wa-deep));
	animation: fab-pulse 2.6s infinite;
}

.fab--a11y {
	background: var(--surface-2);
	border: 1px solid var(--line-strong);
}

.fab--a11y svg {
	fill: var(--brand);
	width: 27px;
	height: 27px;
}

.fab--a11y[aria-expanded="true"] {
	background: var(--brand);
}

.fab--a11y[aria-expanded="true"] svg {
	fill: var(--on-brand);
}

@keyframes fab-pulse {
	0% {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.55);
	}
	70% {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* --------------------------------------------------------------------------
   פאנל נגישות
   -------------------------------------------------------------------------- */

.a11y-panel {
	position: fixed;
	inset-inline-end: 16px;
	bottom: 88px;
	z-index: 970;
	width: min(310px, calc(100vw - 32px));
	max-height: min(70vh, 560px);
	overflow-y: auto;
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	padding: 18px;
	display: none;
}

@media (max-width: 899px) {
	.a11y-panel {
		bottom: calc(var(--cta-h) + 86px);
	}
}

.a11y-panel[data-open="true"] {
	display: block;
}

.a11y-panel h2 {
	font-size: 17px;
	margin: 0 0 4px;
}

.a11y-panel__sub {
	font-size: 12.5px;
	color: var(--text-faint);
	margin: 0 0 14px;
}

.a11y-opt {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 12px;
	margin-bottom: 6px;
	border-radius: var(--r-sm);
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--text-dim);
	font-size: 14.5px;
	font-weight: 500;
	text-align: start;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
	min-height: 44px;
}

.a11y-opt:hover {
	border-color: var(--brand);
	color: var(--text);
}

.a11y-opt[aria-pressed="true"] {
	background: rgba(255, 77, 148, 0.14);
	border-color: var(--brand);
	color: var(--text);
}

.a11y-opt__state {
	margin-inline-start: auto;
	font-size: 12px;
	color: var(--text-faint);
}

.a11y-opt[aria-pressed="true"] .a11y-opt__state {
	color: var(--brand);
	font-weight: 700;
}

.a11y-panel__foot {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
}

.a11y-panel__foot a {
	font-size: 13px;
	color: var(--brand);
}

/* --------------------------------------------------------------------------
   מצבי הנגישות — נדלקים ע"י מחלקות על <html>
   -------------------------------------------------------------------------- */

html.a11y-font-1 body {
	font-size: 18px;
}
html.a11y-font-2 body {
	font-size: 20px;
}
html.a11y-font-3 body {
	font-size: 22px;
}

/* ניגודיות מוגברת: מחזק טקסט משני ומסיר שקיפויות שמורידות ניגודיות */
html.a11y-contrast {
	--text-dim: #e6e6ea;
	--text-faint: #cfcfd6;
	--line: rgba(255, 255, 255, 0.3);
	--line-strong: rgba(255, 255, 255, 0.5);
	--surface: #000;
	--surface-2: #0d0d10;
	--bg: #000;
}

html.a11y-contrast .hero__bg,
html.a11y-contrast .card__media::after {
	opacity: 0.25;
}

html.a11y-contrast .btn,
html.a11y-contrast .chip,
html.a11y-contrast .tag {
	border: 1px solid #fff;
}

/* הדגשת קישורים */
html.a11y-links a:not(.btn):not(.fab):not(.brand) {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
}

/* גופן קריא: מרווח אותיות ושורות מוגדל, ללא גופן דקורטיבי */
html.a11y-readable body,
html.a11y-readable .btn {
	font-family: Arial, "Segoe UI", sans-serif !important;
	letter-spacing: 0.04em;
	word-spacing: 0.1em;
	line-height: 1.9;
}

/* עצירת אנימציות */
html.a11y-still *,
html.a11y-still *::before,
html.a11y-still *::after {
	animation: none !important;
	transition: none !important;
	scroll-behavior: auto !important;
}

/* סמן גדול */
html.a11y-cursor,
html.a11y-cursor * {
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M8 4l26 15-11 3-4 12z' fill='%23fff' stroke='%23000' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E") 6 4, auto;
}

/* --------------------------------------------------------------------------
   הופעה בגלילה
   -------------------------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(18px);
}

.reveal.is-in {
	opacity: 1;
	transform: none;
	transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

/* עזר */
.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;
}

/* "דלג לתוכן" חייב להיות גלוי כשמגיעים אליו במקלדת */
a.sr-only:focus {
	position: fixed;
	top: 10px;
	inset-inline-start: 10px;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 20px;
	clip: auto;
	background: var(--brand);
	color: var(--on-brand);
	border-radius: var(--r-full);
	font-weight: 700;
	box-shadow: var(--shadow);
}

/* יעדי מגע: קישורי רשימה חייבים 24px לפחות (WCAG 2.2 – 2.5.8) */
.footer-col ul a,
.area ul a,
.nav-drawer a {
	min-height: 24px;
	display: inline-flex;
	align-items: center;
}

.footer-col ul {
	gap: 2px;
}

.footer-col ul a {
	padding-block: 4px;
}

.breadcrumb a {
	display: inline-block;
	padding-block: 3px;
}
