/* =============================================
   טעם האושר - עיצוב "אורגני פרימיום, בהיר"
   ============================================= */

:root {
  /* צבעים - גוונים של תוצרת טרייה על רקע שמנת חם */
  --cream:        #FDF8EE;  /* רקע ראשי */
  --cream-deep:   #FBF3E4;  /* רקע סקשנים מתחלפים */
  --green-900:    #1E4A2C;  /* ירוק עלים עמוק - טקסט כהה וכותרות */
  --green-700:    #2E6B3E;  /* ירוק ראשי */
  --green-500:    #3A7D44;  /* ירוק כפתורים */
  --leaf:         #9CC069;  /* ירוק עלה בהיר - דקורציה */
  --citrus:       #F08A24;  /* כתום הדרים - CTA ראשי */
  --citrus-deep:  #D97014;  /* כתום כהה - hover */
  --tomato:       #CE4327;  /* אדום עגבנייה - אקצנט נקודתי */
  --sun:          #FBC02D;  /* צהוב שמש - דקורציה */
  --wood:         #7C5A3A;  /* חום עץ - עיגון */
  --ink:          #2B2418;  /* טקסט גוף - חום-שחור חם */
  --ink-soft:     #5d543f;  /* טקסט משני */
  --white:        #FFFFFF;
  --whatsapp:     #1FAF54;

  /* טיפוגרפיה */
  --font-display: 'Secular One', 'Assistant', sans-serif;
  --font-body: 'Assistant', sans-serif;

  /* עומק ועיגול - רך ואורגני */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-blob: 58% 42% 46% 54% / 52% 55% 45% 48%;
  --shadow-soft: 0 6px 24px rgba(124, 90, 58, 0.10);
  --shadow-lift: 0 14px 40px rgba(124, 90, 58, 0.18);

  --container: 1140px;
  --header-h: 72px;
}

/* ===== בסיס ===== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px - עברית נוחה לקריאה */
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Secular One מגיע במשקל אחד */
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--green-700); }

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* ===== כפתורים ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  min-height: 48px;
  padding: 0.65em 1.5em;
  touch-action: manipulation;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 3px;
}

.btn-lg { font-size: 1.125rem; padding: 0.8em 1.9em; }
.btn-sm { font-size: 0.95rem; min-height: 44px; padding: 0.45em 1.2em; }

.btn-primary {
  background: var(--citrus);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(240, 138, 36, 0.35);
}
.btn-primary:hover { background: var(--citrus-deep); box-shadow: 0 10px 26px rgba(240, 138, 36, 0.45); }

.btn-secondary {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-secondary:hover { background: var(--green-700); color: var(--white); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(31, 175, 84, 0.35);
}
.btn-whatsapp:hover { background: #178a42; }

/* ===== ניווט עליון ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(124, 90, 58, 0.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--green-900);
  text-decoration: none;
}

.nav-logo-icon { width: 38px; height: 38px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a:not(.btn) {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--citrus);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn):focus-visible::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 70% 55% at 85% 8%, rgba(251, 192, 45, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(156, 192, 105, 0.18), transparent 65%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: var(--white);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  margin: 0 0 1.3rem;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 5.2rem);
  margin-bottom: 0.35em;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  color: var(--green-700);
  line-height: 1.45;
  margin-bottom: 0.8em;
}

.hero-tagline strong { color: var(--citrus-deep); }

.hero-text {
  max-width: 34em;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 1.8em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* קומפוזיציית תמונות חופפות */
.hero-photos {
  position: relative;
  min-height: 320px;
}

.hero-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
}

.hero-photo-main {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transform: rotate(1.5deg);
}

.hero-photo-float {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -12%;
  inset-inline-start: -4%;
  transform: rotate(-5deg);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.hero-photos:hover .hero-photo-float { transform: rotate(-2deg) translateY(-6px); }

.hero-deco {
  position: absolute;
  width: clamp(44px, 6vw, 72px);
  height: auto;
  pointer-events: none;
}

.hero-deco-leaf { top: -8%; inset-inline-start: -3%; transform: rotate(-15deg); }
.hero-deco-citrus { top: -10%; inset-inline-end: -2%; transform: rotate(12deg); }

/* מחיצת גל בתחתית ה-hero */
.wave-divider {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  line-height: 0;
}

.wave-divider svg { width: 100%; height: clamp(36px, 6vw, 90px); display: block; }

/* ===== סקשנים כלליים ===== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.section-cream { background: var(--cream-deep); }

.section-head {
  text-align: center;
  max-width: 42em;
  margin: 0 auto clamp(2.2rem, 5vw, 3.5rem);
}

.section-kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--citrus-deep);
  background: rgba(240, 138, 36, 0.12);
  padding: 0.3em 1em;
  border-radius: 999px;
  margin: 0 0 0.9rem;
}

.section-kicker-light {
  color: var(--sun);
  background: rgba(251, 192, 45, 0.15);
}

.section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }

.section-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}

/* ===== על המקום ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  margin: 0;
  position: relative;
  max-width: 430px;
  justify-self: center;
}

.about-photo::before {
  /* כתם צבע אורגני מאחורי התמונה */
  content: '';
  position: absolute;
  inset: -7% -9%;
  background: linear-gradient(140deg, var(--leaf), var(--sun));
  border-radius: var(--radius-blob);
  opacity: 0.4;
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-blob);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.about-photo-tag {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  text-align: center;
  padding: 0.7em 1.1em;
  margin: -1.6rem auto 0;
  width: fit-content;
  max-width: 90%;
  transform: rotate(-1.5deg);
}

.about-content .section-kicker { margin-bottom: 0.6rem; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.about-points li:hover { transform: translateX(-4px); }

.about-points .icon {
  width: 1.5em;
  height: 1.5em;
  color: var(--green-500);
}

/* ===== כרטיסי מוצרים ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-card img,
.product-card-video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.product-card-body { padding: 1.3rem 1.4rem 1.5rem; }

.product-card h3 { font-size: 1.3rem; margin-bottom: 0.4em; }

.product-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

.card-link {
  display: inline-block;
  margin-top: 0.8em;
  font-weight: 700;
  color: var(--citrus-deep);
  text-decoration: none;
}

.card-link:hover { text-decoration: underline; }

/* ===== גלריית מגשים ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 5px solid var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:nth-child(odd) { transform: rotate(-1.2deg); }
.gallery-grid img:nth-child(even) { transform: rotate(1.2deg); }

.gallery-grid img:hover {
  transform: rotate(0) scale(1.04);
  box-shadow: var(--shadow-lift);
  z-index: 1;
  position: relative;
}

.center-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.center-cta-note {
  color: var(--ink-soft);
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
}

/* ===== משלוחים ===== */
.delivery-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.delivery-areas {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.delivery-areas li {
  background: var(--cream-deep);
  border: 1.5px solid var(--leaf);
  color: var(--green-900);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.35em 1.05em;
  font-size: 0.98rem;
}

.delivery-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 1rem 0 0;
}

.delivery-photo { margin: 0; }

.delivery-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: rotate(-1.5deg);
}

/* ===== ביקורות ===== */
.section-green {
  background:
    radial-gradient(ellipse 60% 70% at 15% 10%, rgba(156, 192, 105, 0.18), transparent 60%),
    var(--green-900);
}

.section-green .section-title { color: var(--cream); }

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

.review-card {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.6rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.25s ease;
}

.review-card:hover { transform: translateY(-5px); }

.review-card:nth-child(2) { transform: rotate(0.8deg); }
.review-card:nth-child(2):hover { transform: rotate(0.8deg) translateY(-5px); }

.review-stars {
  color: var(--citrus);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

.review-card p {
  font-size: 1.05rem;
  margin: 0;
  flex-grow: 1;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.98rem;
}

.review-source {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ===== צור קשר ===== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.4rem;
}

.contact-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2rem;
  margin-bottom: 0.6em;
}

.contact-block h3 .icon { color: var(--citrus-deep); }

.contact-block p { margin: 0 0 0.6em; }

.contact-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green-700);
  text-decoration: none;
  direction: ltr;
  display: inline-block;
}

.contact-phone:hover { color: var(--citrus-deep); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  text-align: start;
  padding: 0.5em 0.2em;
  border-bottom: 1px dashed rgba(124, 90, 58, 0.25);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }

.hours-table th { font-weight: 700; color: var(--green-900); }
.hours-table td { color: var(--ink-soft); font-weight: 600; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

/* ===== פוטר ===== */
.site-footer {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.nav-logo-footer { color: var(--cream); font-size: 1.6rem; }

.footer-brand p {
  color: rgba(253, 248, 238, 0.75);
  margin: 0.9rem 0 0;
}

.site-footer h3 {
  color: var(--sun);
  font-size: 1.1rem;
  margin-bottom: 0.8em;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer a:not(.nav-logo) {
  color: rgba(253, 248, 238, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:not(.nav-logo):hover { color: var(--sun); }

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 238, 0.15);
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(253, 248, 238, 0.6);
}

/* ===== אנימציות חשיפה בגלילה ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* שמירה על סיבובים מקוריים אחרי חשיפה */
.reveal.is-visible.hero-photos,
.reveal.is-visible.about-photo,
.reveal.is-visible.delivery-photo { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .product-card, .gallery-grid img, .review-card, .about-points li { transition: none; }
}

/* ===== משלוחים ישירים ===== */
.section-direct {
  background:
    radial-gradient(ellipse 55% 50% at 95% 5%, rgba(240, 138, 36, 0.13), transparent 55%),
    radial-gradient(ellipse 50% 55% at 5% 95%, rgba(156, 192, 105, 0.13), transparent 55%),
    var(--cream-deep);
}

.direct-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--green-900);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 2.2rem;
  box-shadow: var(--shadow-soft);
  border-inline-start: 6px solid var(--citrus);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.direct-tagline-arrow {
  width: 2rem;
  height: auto;
  color: var(--citrus);
  flex-shrink: 0;
}

.direct-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.direct-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.direct-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.direct-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(240, 138, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--citrus-deep);
}

.direct-feature-icon svg { width: 26px; height: 26px; }

.direct-feature h3 { font-size: 1.2rem; margin-bottom: 0.4em; }

.direct-feature p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

.direct-cta { text-align: center; }

.direct-cta-text {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}

/* ===== רספונסיב: טאבלט ומעלה ===== */
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== רספונסיב: מובייל - תפריט נפתח ===== */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(124, 90, 58, 0.18);
    padding: 0.6rem 1.4rem 1.2rem;
    display: none;
  }

  .nav-menu.is-open { display: flex; }

  .nav-menu li { border-bottom: 1px solid rgba(124, 90, 58, 0.12); }
  .nav-menu li:last-child { border-bottom: none; }

  .nav-menu a:not(.btn) {
    display: block;
    padding: 0.9rem 0.2rem;
    font-size: 1.1rem;
  }

  .nav-menu a:not(.btn)::after { display: none; }

  .nav-cta-item { padding-top: 0.9rem; }
  .nav-cta-item .btn { width: 100%; }

  .hero-photos { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

/* =============================================================
   ✦ שכבת חוויה קולנועית — Page loader, frame-scroll, אפקטים
   ============================================================= */

/* ===== מסך טעינה ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(240, 138, 36, 0.10), transparent 70%),
    var(--cream);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(78vw, 280px);
}
.loader-mark {
  width: 64px; height: 64px;
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.82; }
}
.loader-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
.loader-track {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(124, 90, 58, 0.16);
  overflow: hidden;
}
.loader-fill {
  width: 0%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--citrus));
  transition: width 0.25s ease;
}
.loader-pct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* ===== בר התקדמות גלילה ===== */
.scroll-progress {
  position: fixed;
  top: 0; inset-inline: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right center; /* RTL */
  background: linear-gradient(90deg, var(--leaf), var(--citrus), var(--tomato));
  z-index: 200;
  pointer-events: none;
}

/* ===== שכבת רעש עדינה ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== סמן מותאם (דסקטופ עם עכבר בלבד) ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 9000;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--citrus-deep);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(240, 138, 36, 0.55);
  box-shadow: 0 0 18px rgba(240, 138, 36, 0.25);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  background: rgba(240, 138, 36, 0.10);
}

/* =============================================================
   ✦ Hero קולנועי — קנבס פריימים דביק
   ============================================================= */
.cine {
  --cine-height: 350vh;          /* גובה הגלילה הכולל (ניתן לכוונון) */
  position: relative;
  height: var(--cine-height);
  background: var(--cream);
}
.cine-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.cine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--cream);
}

/* שכבת טקסט מעל הקנבס */
.cine-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2vh) 1.25rem 6vh;
  text-align: center;
  pointer-events: none;
}
.cine-overlay > * { grid-area: 1 / 1; }

/* בלוק פתיחה */
.cine-intro {
  max-width: 760px;
  align-self: start;
  margin-top: 4vh;
  /* גרדיאנט שמנת עדין מאחורי הטקסט = קריאות מעל כל פריים */
  position: relative;
}
.cine-intro::before {
  content: '';
  position: absolute;
  inset: -8% -12%;
  z-index: -1;
  background: radial-gradient(ellipse 65% 70% at 50% 45%, rgba(253, 248, 238, 0.78), rgba(253, 248, 238, 0) 72%);
}
.cine-title {
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 0.98;
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(3.4rem, 13vw, 9rem);
  display: flex;
  justify-content: center;
  gap: 0.22em;
  flex-wrap: wrap;
  text-shadow: 0 2px 26px rgba(253, 248, 238, 0.9);
}
.cine-title .word { overflow: hidden; display: inline-block; padding-bottom: 0.05em; }
.cine-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
body.is-ready .cine-title .word > span { transform: translateY(0); }
body.is-ready .cine-title .word:nth-child(2) > span { transition-delay: 0.12s; }

.cine-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  color: #14110a;                 /* שחור חם */
  font-weight: 700;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  /* הילה זוהרת בהירה מאחורי הטקסט — קריאות מעל כל פריים (text-shadow עובר בירושה ל-strong) */
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 22px rgba(255, 255, 255, 0.85),
    0 0 40px rgba(253, 248, 238, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.9);
}
.cine-tagline strong { color: #14110a; }
body.is-ready .cine-tagline { opacity: 1; transform: translateY(0); }

/* בלוק סיום (כפתורים) — מצב מוסתר עד שהגלילה מגיעה לסוף, נשלט ב-JS */
.cine-outro {
  align-self: end;
  margin-bottom: 3vh;
  max-width: 720px;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  position: relative;
}
.cine-outro::before {
  content: '';
  position: absolute;
  inset: -14% -16%;
  z-index: -1;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(253, 248, 238, 0.82), rgba(253, 248, 238, 0) 74%);
}
.cine-outro-text {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: #14110a;                 /* שחור חם */
  margin: 0 0 1.25rem;
  /* הילה זוהרת בהירה מאחורי הטקסט — קריאות מעל כל פריים */
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 22px rgba(255, 255, 255, 0.85),
    0 0 40px rgba(253, 248, 238, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.9);
}
.cine-outro .hero-actions { justify-content: center; pointer-events: auto; }

/* רמז גלילה */
.cine-cue {
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2vh;
  transition: opacity 0.4s ease;
}
.cine-cue svg { width: 22px; height: 22px; animation: cueBounce 1.8s ease-in-out infinite; }
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* זוהר עדין לכפתורים הראשיים בחוויה הקולנועית */
.cine-outro .btn-primary {
  box-shadow: 0 10px 30px rgba(240, 138, 36, 0.35), 0 0 60px rgba(240, 138, 36, 0.18);
}

/* מעבר חלק לכפתורים מגנטיים */
.magnetic { transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1); will-change: transform; }

/* ===== מובייל / סקציה קולנועית ===== */
@media (max-width: 760px) {
  .cine { --cine-height: 300vh; }
  .cine-intro { margin-top: 2vh; }
}

/* ===== כיבוד העדפת תנועה מופחתת ===== */
@media (prefers-reduced-motion: reduce) {
  .cine { --cine-height: auto; height: auto; }
  .cine-sticky { position: relative; height: auto; min-height: 70vh; }
  .cine-canvas { position: relative; height: 70vh; }
  .cine-intro { margin-top: 0; }
  .cine-title .word > span { transform: none; transition: none; }
  .cine-tagline { opacity: 1; transform: none; transition: none; }
  .cine-outro { opacity: 1; transform: none; position: static; pointer-events: auto; margin-top: 1.5rem; }
  .cine-cue { display: none; }
  .loader-mark, .cine-cue svg { animation: none; }
}

/* =============================================================
   ✦ באנר עוגיות
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 8000;
  background: rgba(30, 74, 44, 0.97);
  color: var(--white);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner.is-hidden { display: none; }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1 1 300px;
}
.cookie-inner a { color: var(--sun); }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-actions .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.cookie-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* =============================================================
   ✦ כפתור + פאנל נגישות
   ============================================================= */
.a11y-toggle {
  position: fixed;
  bottom: 1.25rem;
  inset-inline-start: 1.25rem;
  z-index: 7000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--green-700);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.a11y-toggle:hover { background: var(--green-900); transform: scale(1.08); }
.a11y-toggle svg { width: 28px; height: 28px; }

.a11y-panel {
  position: fixed;
  bottom: 5rem;
  inset-inline-start: 1.25rem;
  z-index: 7001;
  width: min(320px, calc(100vw - 2.5rem));
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  overflow: hidden;
}
.a11y-panel[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  background: var(--green-700);
  color: var(--white);
}
.a11y-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.a11y-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
}
.a11y-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.9rem;
}
.a11y-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 0.4rem;
  border: 1.5px solid rgba(124, 90, 58, 0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.a11y-btn:hover { border-color: var(--green-500); background: var(--white); }
.a11y-btn.is-active { border-color: var(--green-700); background: rgba(58, 125, 68, 0.1); }
.a11y-btn-icon { font-size: 1.3rem; line-height: 1; }
.a11y-btn-reset {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border-color: var(--tomato);
  color: var(--tomato);
}
.a11y-btn-reset:hover { background: rgba(206, 67, 39, 0.06); }

.a11y-statement-link {
  display: block;
  text-align: center;
  padding: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  border-top: 1px solid rgba(124, 90, 58, 0.12);
}

/* מצבי נגישות גלובליים */
html.a11y-high-contrast {
  filter: contrast(1.45);
}
html.a11y-high-contrast body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-high-contrast .site-header {
  background: rgba(0,0,0,0.95) !important;
}
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-highlight-links a {
  outline: 3px solid var(--citrus) !important;
  outline-offset: 2px;
  text-decoration: underline !important;
}
html.a11y-stop-animations *, html.a11y-stop-animations *::before, html.a11y-stop-animations *::after {
  animation-duration: 0s !important;
  transition-duration: 0s !important;
}

/* =============================================================
   ✦ קישורים משפטיים בפוטר
   ============================================================= */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--white); }
