:root {
  --bg-deep: #0c1520;
  --bg-card: #141e2a;
  --bg-soft: #fff;
  --text: #1a1f26;
  --text-muted: #4a5568;
  --text-on-dark: #e8e4dc;
  --text-on-dark-muted: #a8b0bc;
  --accent: #0382B8;
  --accent-hover: #0499d4;
  --sea: #2a5c6b;
  --sea-light: #3d7a8c;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-h, 72px) + 0.5rem);
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-soft);
}

h1, h2, h3 {
  font-family: "Rubik", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--sea); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }

/* Sticky site header */
.site-header {
  --site-header-h: 72px;
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 37, 64, 0.1);
  box-shadow: 0 4px 20px rgba(12, 21, 32, 0.06);
}
.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--site-header-h);
  padding-block: 0.65rem;
}
.site-header__brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #0c2540;
}
.site-header__brand img {
  height: 42px;
  width: auto;
  display: block;
}
.site-header__brand:hover { text-decoration: none; }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(12, 37, 64, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #0c2540;
  cursor: pointer;
}
.site-header__menu-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.site-header__menu-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.site-header__menu-icon::before { top: -7px; }
.site-header__menu-icon::after { top: 7px; }
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon {
  background: transparent;
}
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.15rem;
}
.site-header__list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #0c2540;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-radius: 6px;
}
.site-header__list a:hover {
  color: var(--accent);
  text-decoration: none;
}
.site-header__list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.site-header__cta.btn-primary {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
  white-space: nowrap;
  background: #fff;
  color: #c9a000;
  border: 2px solid #d4af37;
  box-shadow: none;
}
.site-header__cta.btn-primary:hover {
  background: #fffef2;
  color: #a68400;
  border-color: #a68400;
  text-decoration: none;
}
.site-header__cta.btn-primary:focus-visible {
  outline: 3px solid #c9a000;
  outline-offset: 2px;
}
@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
  }
  .site-header__brand {
    order: 1;
  }
  .site-header__actions {
    order: 2;
    margin-inline-start: auto;
  }
  .site-header__nav {
    order: 3;
    flex: 1 1 100%;
    display: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(12, 37, 64, 0.1);
    justify-content: stretch;
  }
  .site-header__nav.is-open {
    display: block;
  }
  .site-header__menu-toggle {
    display: inline-flex;
  }
  .site-header__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .site-header__list a {
    padding: 0.65rem 0.35rem;
  }
  .site-header__list li {
    border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  }
  .site-header__list li:last-child {
    border-bottom: none;
  }
}
body.site-nav-open {
  overflow: hidden;
}
@media (min-width: 961px) {
  body.site-nav-open {
    overflow: unset;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-on-dark);
}
.brand:hover { text-decoration: none; }
.brand img {
  height: 60px;
  width: auto;
  display: block;
}
/* logo.webp — אם הלוגו כהה על רקע כהה, אפשר להחזיר: filter: brightness(0) invert(1); */
/* Hero */
.hero {
  --hero-text: #0c2540;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--bg-deep);
  color: var(--hero-text);
  padding-block: 4rem 3rem;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  background: url("../img/hero.webp") center bottom / cover no-repeat;
  will-change: transform;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
  background: linear-gradient(to top, var(--bg-soft), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.hero h1 {
  font-size: clamp(1.75rem, 2.4vw + 1.05rem, 3.25rem);
  line-height: 1.12;
  max-width: 14ch;
  margin: 0 auto 1rem;
  color: var(--hero-text);
}
.hero .sub {
  font-size: 1.25rem;
  color: var(--hero-text);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--hero-text);
  border: 1px solid rgba(12, 37, 64, 0.2);
}
.hero .btn-secondary:hover {
  background: #fff;
  color: var(--hero-text);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(3, 130, 184, 0.35);
}
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; }
.btn-secondary {
  background: rgba(0,0,0,.5);
  color: var(--text-on-dark);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.hero-pill {
  background: rgba(255, 255, 255, 1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
}
.hero-pill strong { color: var(--accent); display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }

@media (max-width: 720px) {
  .hero {
    padding-block: 2.25rem 1.75rem;
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px));
  }
  .hero-inner {
    padding: 1.65rem 1.4rem;
    border-radius: 16px;
  }
  .hero h1 {
    font-size: clamp(2.05rem, 6.5vw + 0.75rem, 2.85rem);
    max-width: none;
    margin-bottom: 0.85rem;
    line-height: 1.14;
  }
  .hero .sub {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }
  .hero-cta {
    display: none;
  }
  .hero-pills {
    display: none;
  }
  .hero-parallax-bg {
    inset: -12% -10%;
    background-position: center 42%;
  }
  .hero::after {
    height: 72px;
  }
}

@media (max-width: 400px) {
  .hero-inner {
    padding: 1.45rem 1.15rem;
    border-radius: 14px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 6.5vw + 0.55rem, 2.45rem);
  }
}

/* Scroll-in reveal (stagger via --reveal-delay on [data-reveal-stagger] children) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sections */
section {
  padding-block: 4rem;
}
section.alt { background: #ebe7de; }

/* Opening + image */
.opening-section {
  background: var(--bg-soft);
}
.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .opening-grid {
    grid-template-columns: 1fr;
  }
  .opening-visual {
    order: -1;
  }
}
.opening-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}
.opening-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.opening-text .section-head { margin-bottom: 1.25rem; }

/* Why now: white band + image on visual right (RTL first column) */
.why-now-section {
  background: #fff;
}
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .why-now-grid {
    grid-template-columns: 1fr;
  }
  .why-now-copy {
    order: -1;
  }
}
.why-now-copy {
  min-width: 0;
  max-width: 42rem;
}
.why-now-copy .section-head {
  margin-bottom: 1.25rem;
}
.why-now-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
}
.why-now-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Audience + image (dark section) */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-visual {
    order: -1;
  }
}
.audience-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.audience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.audience-text .section-head { margin-bottom: 1.25rem; }

/* Parallax sections (routes, faq) */
.parallax-strip {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
}
.parallax-strip .parallax-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.06);
}

.parallax-strip.parallax-routes .parallax-bg::after {
  background: rgba(18, 42, 58, 0.55);
}

.parallax-strip .wrap {
  position: relative;
  z-index: 1;
}
.parallax-routes .parallax-bg {
  background-image: url("../img/routes.webp");
}
.parallax-faq .parallax-bg {
  background-image: url("../img/opening.webp");
}
.parallax-strip.parallax-faq .parallax-bg::after {
  background: linear-gradient(180deg, rgba(14, 26, 38, 0.52) 0%, rgba(10, 20, 32, 0.68) 100%);
}

/* Booking types — split cards */
.booking-types-section {
  position: relative;
}
.booking-types-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}
a.booking-block.booking-block--split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  box-shadow:
    0 2px 4px rgba(12, 37, 64, 0.04),
    0 16px 40px rgba(12, 37, 64, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.booking-block-index {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--accent) 0%, #026a96 100%);
  box-shadow: 0 4px 14px rgba(3, 130, 184, 0.35);
  pointer-events: none;
}
.booking-block-media {
  position: relative;
  min-height: 11rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(3, 130, 184, 0.12) 0%, rgba(12, 37, 64, 0.06) 100%);
}
.booking-block-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.booking-block-media img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
a.booking-block--split:hover .booking-block-media img {
  transform: scale(1.04);
}
.booking-block-inner {
  padding: 1.5rem 1.65rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  border-inline-start: 3px solid rgba(3, 130, 184, 0.2);
}
.booking-block-inner h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: #0c2540;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.booking-block-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
a.booking-block--split:hover {
  border-color: rgba(3, 130, 184, 0.35);
  box-shadow:
    0 4px 8px rgba(3, 130, 184, 0.08),
    0 22px 48px rgba(12, 37, 64, 0.12);
  transform: translateY(-3px);
}
a.booking-block--split:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.booking-block-cta {
  margin-top: 1.15rem;
  padding-top: 0;
  align-self: flex-start;
}
.booking-block-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  background: rgba(3, 130, 184, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(3, 130, 184, 0.22);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.booking-block-cta-label::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}
a.booking-block--split:hover .booking-block-cta-label {
  background: rgba(3, 130, 184, 0.16);
  border-color: rgba(3, 130, 184, 0.4);
  color: #026a96;
}
@media (max-width: 720px) {
  a.booking-block.booking-block--split {
    grid-template-columns: 1fr;
  }
  .booking-block-inner {
    border-inline-start: none;
    border-top: 3px solid rgba(3, 130, 184, 0.2);
    padding: 1.35rem 1.25rem 1.5rem;
  }
  .booking-block-media {
    min-height: 10rem;
    aspect-ratio: 16 / 9;
  }
  .booking-block-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
section.dark {
  background: var(--bg-deep);
  color: var(--text-on-dark);
}
section.dark h2 { color: #fff; }
section.dark .lead { color: var(--text-on-dark-muted); }

/* לבן + טקסט כהה: קהלים + יתרונות בלבד */
.section-light {
  background: #fff;
  color: var(--text);
}
.section-light h2 { color: #0c2540; }
.section-light .lead { color: var(--text-muted); }
.section-light .audience-visual,
.section-light .benefits-visual {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.section-light .benefit-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.section-light .benefit-item h3 { color: #0c2540; }
.section-light .benefit-item p { color: var(--text-muted); }

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); margin: 0 0 0.75rem; }

/* כפתורי מעבר לטופס אחרי בלוקי טקסט */
.text-block-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.opening-text .text-block-cta {
  margin-top: 1.35rem;
}
.lead { margin: 0; color: var(--text-muted); font-size: 1.05rem; }

.parallax-routes .routes-section-head h2,
#packages.parallax-routes .section-head h2 {
  color: var(--text);
}
.parallax-routes .packages-intro .lead {
  color: var(--text);
}
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.block {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.block h3 { margin-top: 0; font-size: 1.35rem; }

.summary-line {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(42, 92, 107, 0.08);
  border-radius: var(--radius);
  border-right: 4px solid var(--sea);
  font-weight: 500;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.list-check li {
  padding: 0.5rem 0;
  padding-right: 1.75rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.list-check li:last-child { border-bottom: none; }
.list-check li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--sea);
  font-weight: 700;
}

/* Benefits: text + image (same rhythm as audience) */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .benefits-layout {
    grid-template-columns: 1fr;
  }
}
.benefits-copy {
  min-width: 0;
  max-width: 48rem;
}
.benefits-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.benefits-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}
.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(3, 130, 184, 0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.benefit-item h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.benefit-item p { margin: 0; color: var(--text-on-dark-muted); font-size: 0.98rem; }

.info-box {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 48rem;
}

.info-box-title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #0c2540;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.important-faq-section {
  background: #fff;
}

.important-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .important-faq-grid {
    grid-template-columns: 1fr;
  }
}
.important-faq-grid .info-box {
  max-width: none;
  margin: 0;
}
.important-faq-grid .faq-column {
  min-width: 0;
}

/* Packages */
.packages-intro {
  margin-bottom: 2rem;
  max-width: 40rem;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  /* נשאר overflow:hidden מה-.parallax-strip — רקע פרלקס עם inset/scale לא ירחיב את רוחב המסמך */
  #packages .wrap {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding-inline: 0;
    box-sizing: border-box;
  }
  #packages .packages-intro,
  #packages .packages-footnote {
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px))
      max(1.25rem, env(safe-area-inset-right, 0px));
  }
  /* גלילה אופקית: LTR על המיכל + row-reverse כדי שהכרטיס הראשון יישב מימין (כמו RTL), בלי באגי scrollLeft/snap בדפדפנים */
  .package-grid {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    gap: 0.85rem;
    align-items: stretch;
    direction: ltr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    /* פיזי: ימין = מרווח מהקצה, שמאל = peek לכרטיס הבא */
    padding-inline: unset;
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    scroll-padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    scroll-padding-left: max(2rem, env(safe-area-inset-left, 0px));
    margin-inline: 0;
    grid-template-columns: unset;
  }
  .package-grid .package-card {
    direction: rtl;
    /* אחוזים יחסית למיכל — לא vw, כדי שלא ייחרג מ־100% עם padding */
    flex: 0 0 min(88%, 20rem);
    max-width: none;
    min-width: 0;
    scroll-snap-align: end;
  }
}
a.package-card {
  text-decoration: none;
  color: inherit;
}
a.package-card:hover {
  text-decoration: none;
}
.package-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.package-card-media {
  flex-shrink: 0;
  height: 9.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}
.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.package-card-inner {
  padding: 1.25rem 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.package-blurb {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}
a.package-card:hover {
  border-color: rgba(3, 130, 184, 0.35);
  box-shadow: 0 12px 36px rgba(3, 130, 184, 0.12);
  transform: translateY(-2px);
}
a.package-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.package-card-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem 0.6rem;
  margin-bottom: 0.35rem;
}
.package-card-heading h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  color: var(--text);
  font-family: "Rubik", system-ui, sans-serif;
  line-height: 1.25;
}
.package-tag {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
.package-price {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.package-price .from {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.package-price .amount {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--sea);
  line-height: 1.1;
}
.package-price .unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.package-includes li {
  padding: 0.4rem 0;
  padding-right: 1.35rem;
  position: relative;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.package-includes li:last-child { border-bottom: none; }
.package-includes li::before {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: 700;
}
.package-card .btn {
  width: 100%;
  margin-top: auto;
  text-decoration: none;
  pointer-events: none;
}
.package-card .btn-primary:hover { text-decoration: none; }
.packages-footnote {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(42, 92, 107, 0.06);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: white;
  max-width: 52rem;
}

/* FAQ (עמודה במקטע חשוב לדעת) */
.faq-column-heading {
  font-family: "Rubik", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #0c2540;
  margin: 0 0 0.85rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.faq details.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: border-color 0.35s ease, box-shadow 0.4s ease;
}
.faq details.faq-item[open] {
  border-color: rgba(3, 130, 184, 0.32);
  box-shadow: 0 10px 32px rgba(42, 92, 107, 0.12);
}

.faq details.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.35s ease;
}
.faq details.faq-item summary::-webkit-details-marker { display: none; }
.faq details.faq-item summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--sea);
  border-bottom: 2px solid var(--sea);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.25s ease;
}
.faq details.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq details.faq-item summary:hover {
  background: rgba(42, 92, 107, 0.06);
}
.faq details.faq-item[open] summary {
  background: rgba(42, 92, 107, 0.08);
}

/* גובה האנימציה מנוהל ב-JS (scrollHeight) — כאן רק overflow ומעבר */
.faq .faq-answer {
  overflow: hidden;
  transition: height 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.faq .faq-answer-inner {
  animation: faq-answer-reveal 0.48s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes faq-answer-reveal {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq details.faq-item:not([open]) .faq-answer-inner {
  animation: none;
}
.faq .faq-answer-inner p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .faq .faq-answer {
    transition: none;
    will-change: auto;
  }
  .faq .faq-answer-inner {
    animation: none;
  }
  .faq details.faq-item summary::after {
    transition: none;
  }
}

/* Form + parallax */
.parallax-strip.form-parallax .parallax-bg {
  background-image: url("../img/form-section.webp");
  background-position: center center;
}

.form-section {
  position: relative;
}
.form-card-lead {
  margin-bottom: 0;
  color: var(--text-muted);
}
.form-step-meta {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-step-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.75rem;
}
.form-step-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(42, 92, 107, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}
.form-step-dot.is-active {
  background: var(--sea);
  transform: scale(1.25);
}
.form-step-line {
  width: 2.5rem;
  height: 2px;
  background: rgba(42, 92, 107, 0.15);
  margin-inline: 0.35rem;
}
.form-step-caption {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.form-step-panel {
  margin-top: 1rem;
}
.form-step-panel[hidden] {
  display: none !important;
}
.form-field {
  margin-bottom: 0.25rem;
}
.field-error {
  display: block;
  min-height: 1.25rem;
  font-size: 0.8rem;
  color: #b42318;
  margin-top: 0.3rem;
}
input.input-invalid,
select.input-invalid,
textarea.input-invalid {
  border-color: #c94a3f;
  background: #fff8f7;
}
.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.form-nav .btn {
  min-width: 7rem;
}
/* .btn מגדיר display — בלי זה [hidden] לא מסתיר את הכפתורים */
.form-nav button[hidden] {
  display: none !important;
}
.form-nav-end {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
/* בשלב ראשון מוצג רק «הבא» — יישור לכיוון אותו צד כמו כשיש גם «הקודם» */
.form-nav:has(.form-btn-prev[hidden]) {
  justify-content: flex-end;
}

.form-submit-status {
  margin: 0.5rem 0 0;
  min-height: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}
.form-submit-status.is-success {
  color: var(--sea);
}
.form-submit-status.is-error {
  color: #b42318;
}

.flatpickr-calendar {
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Rubik", system-ui, sans-serif;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--sea);
  border-color: var(--sea);
}
.flatpickr-day:hover {
  background: rgba(42, 92, 107, 0.15);
  border-color: transparent;
}
.flatpickr-months .flatpickr-month {
  height: 2.25rem;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 600;
}
.flatpickr-calendar.open {
  z-index: 10050 !important;
}

.form-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
  max-width: 640px;
  margin-inline: auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}
.form-card h2 { margin-top: 0; }
.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fafaf8;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--sea);
  outline-offset: 1px;
}
textarea { min-height: 100px; resize: vertical; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn-primary { width: 100%; padding: 1rem; }


/* Thank-you page */
.thank-you-page .form-card {
  text-align: center;
}

.thank-you-header {
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.thank-you-header .wrap {
  display: flex;
  justify-content: center;
}
.thank-you-brand img {
  height: 60px;
  width: auto;
}
.thank-you-note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.thank-you-cta {
  margin: 1.75rem 0 0;
}

footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #e5e1d8;
}
footer .footer-legal {
  margin: 0.75rem 0 0;
}
footer .footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .footer-legal a:hover,
footer .footer-legal a:focus-visible {
  color: var(--text);
}

/* Legal / privacy page */
.legal-page .legal-card {
  text-align: start;
  max-width: 42rem;
  margin-inline: auto;
}
.legal-page .legal-card h1 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 0 0 0.25rem;
}
.legal-updated {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.legal-content p,
.legal-content ul {
  margin: 0.6rem 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.98rem;
}
.legal-content ul {
  padding-inline-start: 1.25rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Floating decor (img/floating) — side gutters only; parallax via JS [data-parallax-float] */
.has-floating-decor {
  position: relative;
}
.has-floating-decor > .wrap {
  position: relative;
  z-index: 1;
}
.parallax-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
  will-change: transform;
}
.parallax-float img {
  display: block;
  width: clamp(40px, 6.5vw, 76px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 12px 24px rgba(8, 30, 50, 0.16));
}
.parallax-float--lg img {
  width: clamp(48px, 7.5vw, 88px);
}
.parallax-float--sm img {
  width: clamp(34px, 5.5vw, 64px);
}
/* Logical sides — RTL: inline-start = right, inline-end = left */
.parallax-float--side-start {
  top: 22%;
  bottom: auto;
  inset-inline-start: clamp(0.15rem, 2.5vw, 1.25rem);
  inset-inline-end: auto;
}
.parallax-float--side-start-low {
  top: auto;
  bottom: 16%;
  inset-inline-start: clamp(0.15rem, 2.5vw, 1.25rem);
  inset-inline-end: auto;
}
.parallax-float--side-end {
  top: 28%;
  bottom: auto;
  inset-inline-end: clamp(0.15rem, 2.5vw, 1.25rem);
  inset-inline-start: auto;
}
.parallax-float--side-end-low {
  top: auto;
  bottom: 20%;
  inset-inline-end: clamp(0.15rem, 2.5vw, 1.25rem);
  inset-inline-start: auto;
}
@media (max-width: 720px) {
  .parallax-float {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-float {
    will-change: auto;
  }
}

/* ——— נגישות: קישור דילוג, רכיב צד, מצבי תצוגה ——— */
.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;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  z-index: 100001;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #000;
  outline-offset: 2px;
}

#main-content:focus {
  outline: none;
}
#main-content:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 0.25rem;
}

.a11y-toolbar__backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(12, 21, 32, 0.45);
  border: none;
  padding: 0;
  margin: 0;
}

.a11y-toolbar {
  position: static;
  z-index: auto;
  font-family: inherit;
  line-height: 1.4;
}

.a11y-toolbar__toggle {
  position: fixed;
  bottom: 18%;
  inset-inline-end: 0;
  z-index: 100001;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem 0.65rem 0.75rem;
  margin: 0;
  border: none;
  border-start-start-radius: 999px;
  border-start-end-radius: 0;
  border-end-start-radius: 999px;
  border-end-end-radius: 0;
  background: #0c2540;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.22);
  min-height: 44px;
  min-width: 44px;
}
body.a11y-panel-open .a11y-toolbar__toggle {
  inset-inline-end: min(20rem, 100vw);
}
.a11y-toolbar__toggle:hover {
  background: #153a5c;
}
.a11y-toolbar__toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.a11y-toolbar__toggle[aria-expanded="true"] {
  background: var(--accent);
}

.a11y-toolbar__toggle-icon {
  display: flex;
  flex-shrink: 0;
}

.a11y-toolbar__panel {
  position: fixed;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: min(20rem, 100vw);
  max-width: 100%;
  z-index: 100000;
  background: #fafaf8;
  color: var(--text);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  padding: 1rem 1.1rem 1.5rem;
  overflow-y: auto;
  border-inline-start: 3px solid var(--accent);
}
.a11y-toolbar__panel[hidden] {
  display: none !important;
}

.a11y-toolbar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.a11y-toolbar__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.a11y-toolbar__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}
.a11y-toolbar__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-toolbar__intro {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.a11y-toolbar__group {
  margin-bottom: 1.1rem;
}
.a11y-toolbar__group--stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.a11y-toolbar__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.a11y-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.a11y-btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}
.a11y-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-toolbar__option {
  width: 100%;
  text-align: start;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}
.a11y-toolbar__option[aria-pressed="true"] {
  border-color: var(--accent);
  background: rgba(3, 130, 184, 0.1);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.a11y-toolbar__option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-toolbar__footer {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.a11y-toolbar__reset {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  background: var(--text-muted);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.a11y-toolbar__reset:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* גודל טקסט */
html.a11y-font-step-1 { font-size: 110%; }
html.a11y-font-step-2 { font-size: 125%; }
html.a11y-font-step-3 { font-size: 142%; }

/* הדגשת קישורים */
html.a11y-highlight-links a {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
  font-weight: 600 !important;
}
html.a11y-highlight-links a:focus-visible {
  outline: 3px solid currentColor !important;
  outline-offset: 3px;
}

/* הפחתת תנועה — כולל דריסת פרלקס מוטמע ב-inline */
html.a11y-reduce-motion .scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
html.a11y-reduce-motion .hero-parallax-bg,
html.a11y-reduce-motion [data-parallax-float],
html.a11y-reduce-motion .parallax-strip .parallax-bg {
  transform: none !important;
}
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* ניגודיות גבוהה */
html.a11y-high-contrast {
  --text: #000;
  --text-muted: #1a1a1a;
  --text-on-dark: #fff;
  --text-on-dark-muted: #f0f0f0;
  --bg-soft: #fff;
  --bg-deep: #000;
  --bg-card: #1a1a1a;
  --accent: #0066cc;
  --accent-hover: #004499;
  --sea: #004499;
  --sea-light: #0066cc;
  --border: #000;
}
html.a11y-high-contrast body {
  background: #fff;
  color: #000;
}
html.a11y-high-contrast .hero {
  --hero-text: #000;
  background: #000;
  color: #fff;
}
html.a11y-high-contrast .hero-inner {
  background: #fff;
  border: 3px solid #000;
  color: #000;
}
html.a11y-high-contrast .hero .sub,
html.a11y-high-contrast .hero h1 {
  color: #000;
}
html.a11y-high-contrast .hero .btn-secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
html.a11y-high-contrast .btn-primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}
html.a11y-high-contrast .btn-primary:hover,
html.a11y-high-contrast .btn-primary:focus-visible {
  background: #fff;
  color: #000;
}
html.a11y-high-contrast section.alt {
  background: #e8e8e8;
}
html.a11y-high-contrast .package-card,
html.a11y-high-contrast .form-card,
html.a11y-high-contrast .booking-block {
  border: 2px solid #000;
}
html.a11y-high-contrast input,
html.a11y-high-contrast select,
html.a11y-high-contrast textarea {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}
html.a11y-high-contrast footer {
  background: #000;
  color: #fff;
  border-top: 3px solid #fff;
}
html.a11y-high-contrast a {
  color: #0000ee;
}
html.a11y-high-contrast .hero a {
  color: #0000ee;
}
html.a11y-high-contrast .site-header {
  background: #fff;
  border-bottom: 3px solid #000;
}
html.a11y-high-contrast .site-header__list a {
  color: #000;
}
html.a11y-high-contrast .site-header__menu-toggle {
  border: 2px solid #000;
  background: #fff;
  color: #000;
}
html.a11y-high-contrast .site-header__cta.btn-primary {
  background: #fff;
  color: #000;
  border: 3px solid #000;
  box-shadow: none;
}
html.a11y-high-contrast .site-header__cta.btn-primary:hover,
html.a11y-high-contrast .site-header__cta.btn-primary:focus-visible {
  background: #fff;
  color: #000;
  border-color: #000;
}

@media (max-width: 720px) {
  .a11y-toolbar__toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .a11y-toolbar__toggle {
    gap: 0;
    justify-content: center;
    border-start-start-radius: 999px;
    border-start-end-radius: 0;
    border-end-start-radius: 999px;
    border-end-end-radius: 0;
    padding-inline: 0.65rem;
  }
}
