/* אלמוני — יש להניח קובץ woff2 בתיקייה assets/fonts/ (רישוי מול פונטימון/דליי) */
@font-face {
  font-family: "Almoni Neue";
  src:
    local("Almoni Neue Regular"),
    local("Almoni DL 4.5 AAA"),
    url("assets/fonts/AlmoniNeue-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* האקדמיה ללימודי קוסמטיקה — סגנון יוקרתי בהשראת havazingboim.co.il */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --text: rgb(43, 42, 42);
  --gray-700: #444;
  --gray-500: #666;
  --gray-600: #5a5a5a;
  --gray-200: #e8e8e8;
  --gray-100: #f7f5f2;
  --white: #fff;
  --accent: #b8a090;
  --wine: #823b3b;
  --wine-soft: rgba(130, 59, 59, 0.12);
  --wine-mid: rgba(130, 59, 59, 0.38);
  --hero-scrim: rgba(12, 10, 8, 0.45);
}

::selection {
  background: rgba(130, 59, 59, 0.2);
  color: inherit;
}

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

html {
  scroll-behavior: smooth;
  accent-color: var(--wine);
}

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

body {
  margin: 0;
  font-family: "Almoni Neue", "Almoni Neue Regular", "Assistant", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }
}

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

a {
  color: inherit;
}

/* ——— Header (קבוע מעל הכל — שקוף על ההירו, לבן אחרי גלילה) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  direction: ltr;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.25s ease;
}

.site-header--overlay {
  background: transparent;
  color: var(--white);
}

.site-header--overlay .icon-btn {
  color: var(--white);
}

.site-header--overlay .icon-link {
  color: var(--white);
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(130, 59, 59, 0.1);
}

.site-header--solid .icon-btn {
  color: var(--text);
}

.site-header--solid .icon-link {
  color: var(--text);
}

.site-header--solid .brand-wordmark {
  color: var(--text);
}

.brand-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: min(58vw, 22rem);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0;
  pointer-events: auto;
}

/* שורה עליונה — שם באנגלית, בולט */
.brand-wordmark__en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(0.88rem, 3.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.15;
  opacity: 0.96;
}

/* שורה תחתונה — שם המוסד בעברית */
.brand-wordmark__he {
  font-size: clamp(0.62rem, 2.4vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
  opacity: 0.88;
}

.brand-wordmark--dark {
  color: var(--text);
}

.brand-wordmark--dark .brand-wordmark__en {
  opacity: 0.94;
}

.brand-wordmark--dark .brand-wordmark__he {
  opacity: 0.82;
}

.header-quick {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-start;
}

/* לוגו מותג בפינה (כותרת LTR — שמאל המסך) */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo__img {
  height: clamp(2.95rem, 9.2vw, 3.65rem);
  width: auto;
  max-width: min(52vw, 14rem);
  display: block;
  object-fit: contain;
}

/* לוגו לבן עם אלפא — על רקע כותרת לבן: גוון כהה (יין) */
.site-header--solid .header-logo__img--solid {
  display: block;
  filter: brightness(0) saturate(100%) invert(14%) sepia(32%) hue-rotate(314deg) saturate(2.3) brightness(0.78) contrast(1.12);
}

/* לוגו בהיר על רקע הווידאו — לפני גלילה; אחרי גלילה — logo-academy */
.site-header--overlay .header-logo__img--solid {
  display: none;
}

.site-header--overlay .header-logo__img--overlay {
  display: block;
}

.site-header--solid .header-logo__img--overlay {
  display: none;
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
}

.icon-link--location svg {
  display: block;
  width: 22px;
  height: 22px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header--solid .icon-link:hover {
  background: rgba(0, 0, 0, 0.06);
}

.icon-link svg {
  display: block;
}

.icon-btn {
  background: none;
  border: 0;
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.35rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.icon-btn__burger {
  display: block;
  width: 1.35rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.icon-btn--dark {
  color: var(--charcoal);
}

/* ——— Nav overlay — רשימת קישורים בלבד ——— */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-overlay.is-open {
  transform: translateX(0);
}

.nav-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  direction: ltr;
  flex-shrink: 0;
}

.nav-overlay__title {
  font-weight: 600;
  font-size: 1rem;
}

.nav-overlay__spacer {
  width: 2.5rem;
}

.nav-overlay__list {
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.nav-overlay__list a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.nav-overlay__list a:last-child {
  border-bottom: 0;
}

.nav-overlay__list a:hover {
  color: var(--wine);
}

.nav-overlay__mega-wrap {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.nav-overlay__mega-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
  margin: 0;
  padding: 0.2rem 0;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: right;
  direction: rtl;
}

.nav-overlay__mega-btn:hover {
  color: var(--wine);
}

.nav-overlay__mega-chevron {
  display: inline-block;
  font-size: 0.72rem;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.nav-overlay__mega-btn.is-open .nav-overlay__mega-chevron {
  transform: rotate(-180deg);
}

.nav-overlay__mega-panel {
  padding: 0.45rem 0 0.25rem;
  margin-top: 0.35rem;
  border-top: 1px dashed rgba(130, 59, 59, 0.22);
}

.nav-overlay__mega-panel[hidden] {
  display: none !important;
}

.nav-overlay__mega-all {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wine);
  text-decoration: none;
  padding: 0.35rem 0 0.55rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--gray-200);
}

.nav-overlay__mega-all:hover {
  text-decoration: underline;
}

.nav-overlay__mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem 0.65rem;
}

@media (min-width: 380px) {
  .nav-overlay__mega-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav-overlay__mega-list a {
  display: block;
  padding: 0.4rem 0.35rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-bottom: 0;
  border-radius: 6px;
  line-height: 1.35;
}

.nav-overlay__mega-list a:hover {
  color: var(--wine);
  background: var(--wine-soft);
}

/* ——— Hero (מסך מלא + כותרות על הווידאו) ——— */
.hero {
  position: relative;
}

.hero-media {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  background: linear-gradient(155deg, #2a2420, #12100e);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 5, 0.55) 0%,
    rgba(18, 14, 12, 0.35) 38%,
    rgba(10, 8, 7, 0.75) 100%
  );
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.25rem 6rem;
  min-height: 0;
}

.hero-inner {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
  color: var(--white);
}

.hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  margin: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.12rem);
  font-weight: 400;
  opacity: 0.94;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.sound-pill {
  position: relative;
  z-index: 2;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: 0;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.sound-pill__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  position: relative;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.sound-pill__icon::before {
  content: "";
  position: absolute;
  inset: 9px 10px 9px 8px;
  border: solid rgba(255, 255, 255, 0.95);
  border-width: 0 3px 0 0;
  border-radius: 0 50% 50% 0;
}

.sound-pill__icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
  box-shadow: 10px -6px 0 -1px rgba(255, 255, 255, 0.45), 16px 0 0 -1px rgba(255, 255, 255, 0.25);
}

.sound-pill[aria-pressed="true"] .sound-pill__label {
  opacity: 0.9;
}

.page-sub {
  padding-top: 52px;
}

.course-page__hero {
  background: linear-gradient(165deg, #221e1b 0%, #0c0b0a 100%);
  color: var(--white);
  padding: 2.25rem 1.25rem 2rem;
  text-align: center;
  position: relative;
}

.course-page__hero--minimal {
  padding-bottom: 1.75rem;
}

.course-page__lead {
  margin: 0.65rem auto 0;
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.course-page__hero--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.course-page__hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(34, 30, 27, 0.82) 0%, rgba(12, 11, 10, 0.92) 100%);
}

.course-page__hero--photo .course-page__title {
  position: relative;
  z-index: 1;
}

.course-page__title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
}

.course-page__body {
  max-width: 40rem;
  margin: 0 auto;
}

.course-page__stack {
  max-width: 32rem;
  margin: 0 auto;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.course-page--rich .course-visual {
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  max-width: 100%;
}

.course-visual__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.course-panel {
  margin: 0 0 1.1rem;
  padding: 1.2rem 1.15rem 1.25rem;
  text-align: right;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.course-panel--accent {
  background: rgba(255, 252, 248, 0.92);
  border-color: rgba(184, 160, 144, 0.35);
}

.course-panel--quote {
  background: rgba(250, 247, 242, 0.95);
}

.course-panel--bonus {
  border-color: rgba(120, 40, 40, 0.18);
  background: rgba(255, 248, 246, 0.92);
}

.course-panel__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.88;
}

.course-panel__title {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
}

.course-panel--process .course-panel__title {
  font-size: 1.08rem;
}

.course-process {
  margin: 0.35rem 0 0;
  padding: 0;
}

.course-process__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.course-process__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.course-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(145deg, #6b3030 0%, var(--wine) 48%, #5c2828 100%);
  box-shadow: 0 4px 14px rgba(130, 59, 59, 0.28);
  flex-shrink: 0;
}

.course-process__text {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 0.96rem;
}

.course-panel__list {
  margin-top: 0.25rem;
}

.course-panel__list li {
  margin-bottom: 0.5rem;
  padding-right: 0.15rem;
  border-right: 3px solid var(--wine-soft);
}

.course-page--rich .course-panel {
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.065);
  border-color: rgba(0, 0, 0, 0.055);
}

.course-page--rich .course-panel--accent {
  border-color: rgba(130, 59, 59, 0.18);
  box-shadow: 0 12px 40px rgba(130, 59, 59, 0.08);
}

.course-panel__text {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
}

.course-panel ul {
  margin: 0;
  padding: 0 1.1rem 0 0;
  line-height: 1.6;
}

.course-panel li {
  margin-bottom: 0.4rem;
}

.course-panel__quote {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray-700);
}

.course-panel__bonus {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--wine);
}

.course-panel.course-meta {
  background: rgba(255, 255, 255, 0.9);
}

.course-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.course-tagline {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--gray-700);
  margin: 0 0 1rem;
}

.course-intro {
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.course-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.course-bullets {
  margin: 0 0 1.5rem;
  padding: 0 1.25rem 0 0;
  line-height: 1.65;
}

.course-bullets li {
  margin-bottom: 0.35rem;
}

.course-meta {
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.course-meta dt {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  color: var(--gray-700);
}

.course-meta dt:first-child {
  margin-top: 0;
}

.course-meta dd {
  margin: 0.25rem 0 0;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.course-actions .btn {
  min-width: 11rem;
}

.course-error {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray-500);
}

.course-error a {
  color: var(--charcoal);
  font-weight: 600;
}

.course-error a:hover {
  color: var(--wine);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.5rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
  box-shadow: 0 4px 18px rgba(130, 59, 59, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline:hover {
  border-color: var(--wine-mid);
  color: var(--wine);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn--wa {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
  box-shadow: 0 4px 18px rgba(130, 59, 59, 0.3);
}

.btn--block {
  width: 100%;
  max-width: 22rem;
  margin-top: 1rem;
}

/* ——— Section CTA (בונוס) ——— */
.section-cta {
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-block: 1px solid var(--gray-200);
}

.section-cta a {
  display: inline-block;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  padding: 0.5rem 0;
}

.section-cta a:hover {
  text-decoration: underline;
  color: var(--wine);
}

.section-cta--lux {
  background: linear-gradient(180deg, #faf9f7 0%, #f0ebe4 100%);
  border-block-color: rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.25rem;
  box-shadow: inset 0 2px 0 -1px var(--wine-soft);
}

.section-cta--lux a {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.section--lux {
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
}

/* ——— קצת עלינו (מתחת להירו) ——— */
.about-intro {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-intro__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.about-intro__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: 0 auto;
}

.about-intro__media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro__text {
  text-align: center;
}

.section-title--about {
  margin-bottom: 1rem;
  align-items: center;
}

.prose--about p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about-intro__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.75rem;
  }

  .about-intro__media {
    max-width: none;
    margin: 0;
  }

  .about-intro__text {
    text-align: right;
  }

  .section-title--about {
    text-align: right;
    align-items: flex-start;
  }
}

/* ——— במספרים (מתחת לקצת עלינו) ——— */
.stats-by-numbers {
  background: #f9f7f2;
  padding: 2.75rem 1.25rem 3.25rem;
  border-block: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-by-numbers__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stats-by-numbers__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.stats-by-numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-item__num {
  display: block;
  font-size: clamp(3.25rem, 12vw, 4.75rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #d8d4cc;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 2.5rem rgba(130, 59, 59, 0.06);
}

.stat-item__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  max-width: 12rem;
}

.stat-item--span {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 16rem;
}

@media (min-width: 640px) {
  .stats-by-numbers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .stat-item--span {
    grid-column: auto;
    width: auto;
    max-width: none;
  }
}

/* ——— צוות מקצועי — קרוסלה אוטומטית ——— */
.staff-section {
  background: linear-gradient(180deg, #faf9f7 0%, #f3f0ea 100%);
  padding: 2.75rem 0 3.25rem;
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.05);
  scroll-margin-top: 72px;
}

.staff-section__inner {
  max-width: 100%;
}

.staff-section__title {
  margin: 0 1.25rem 2rem;
  text-align: center;
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
}

.staff-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.staff-marquee__track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  width: max-content;
  padding: 0.25rem 1rem 0.75rem;
  animation: staffMarquee 72s linear infinite;
}

.staff-marquee:hover .staff-marquee__track {
  animation-play-state: paused;
}

@keyframes staffMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .staff-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    row-gap: 1.5rem;
  }
}

.staff-card {
  flex: 0 0 auto;
  width: clamp(148px, 38vw, 200px);
  text-align: center;
  direction: rtl;
}

.staff-card__avatar {
  width: clamp(120px, 32vw, 160px);
  height: clamp(120px, 32vw, 160px);
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease;
}

.staff-card:hover .staff-card__avatar {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(130, 59, 59, 0.22);
}

.staff-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.staff-card__name {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.staff-card__role {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray-500);
}

.staff-section__actions {
  margin-top: 1.75rem;
  padding: 0 1.25rem;
  text-align: center;
}

.staff-section__actions .btn {
  min-width: 12rem;
}

/* דף צוות מלא */
.team-page {
  padding: 1rem 1.25rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.team-page__intro {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

.team-page__featured {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.65rem, 3.5vw, 2rem);
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0 0.35rem;
  box-sizing: border-box;
}

.team-page__featured > .staff-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
}

.staff-card--featured .staff-card__avatar {
  width: clamp(118px, 36vw, 200px);
  height: clamp(118px, 36vw, 200px);
}

.staff-card--featured .staff-card__name {
  font-size: clamp(0.95rem, 3.6vw, 1.35rem);
}

.staff-card--featured .staff-card__role {
  font-size: clamp(0.78rem, 2.6vw, 1.05rem);
}

.team-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  justify-items: stretch;
}

@media (max-width: 420px) {
  .team-page__grid {
    grid-template-columns: 1fr;
  }
}

.team-page__grid .staff-card {
  width: 100%;
  max-width: none;
}

.team-page__grid .staff-card__avatar {
  width: 150px;
  height: 150px;
}

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

.team-page__back a {
  font-weight: 600;
  color: var(--gray-700);
}

.team-page__back a:hover {
  color: var(--wine);
}

.legal-page {
  padding-top: 3.25rem;
  padding-bottom: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

.legal-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 700;
  text-align: center;
}

.legal-page__meta {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.legal-page__prose h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-page__prose h2:first-of-type {
  margin-top: 0;
}

.legal-page__prose a {
  color: var(--charcoal);
  font-weight: 600;
}

.legal-page__prose a:hover,
.legal-page__back a:hover {
  color: var(--wine);
}

.legal-page__back {
  margin-top: 2rem;
  text-align: center;
}

.legal-page__back a {
  font-weight: 600;
}

/* ——— Sections ——— */
.section {
  padding: 2.75rem 1.25rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  scroll-margin-top: 72px;
}

.section--muted {
  background: var(--gray-100);
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  text-align: center;
}

.section-title::after {
  content: "";
  width: 1.65rem;
  height: 2px;
  border-radius: 999px;
  background: var(--wine);
  opacity: 0.38;
}

.section-lead {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--gray-500);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.prose {
  max-width: 40rem;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1rem;
}

/* ——— Courses: carousel mobile / grid desktop ——— */
.courses-wrap {
  position: relative;
  max-width: 100%;
  direction: ltr;
}

.courses-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0 0.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.courses-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.course-card {
  direction: rtl;
  flex: 0 0 min(88vw, 320px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.course-card:hover {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(130, 59, 59, 0.07);
  transform: translateY(-2px);
}

.course-card__img {
  aspect-ratio: 4 / 3;
  background-color: #e0d6cc;
  background-image: linear-gradient(135deg, #e0d6cc, #b8a99c);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.course-card:nth-child(3n) .course-card__img {
  background-color: #dcd8e8;
  background-image: linear-gradient(135deg, #dcd8e8, #a89fc0);
}

.course-card:nth-child(3n + 2) .course-card__img {
  background-color: #d8e4e0;
  background-image: linear-gradient(135deg, #d8e4e0, #8fb3a8);
}

.course-card:hover .course-card__img,
.course-card:focus-within .course-card__img {
  transform: scale(1.06);
}

.course-card__name {
  margin: 0;
  padding: 1rem 0.85rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  flex: 1;
}

.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
}

.carousel-btn--prev {
  left: 0.25rem;
}

.carousel-btn--next {
  right: 0.25rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--gray-200);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--wine);
}

@media (max-width: 767px) {
  .courses-wrap {
    padding: 0 0.25rem;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section,
  .section-lead,
  .prose,
  .contact-card,
  .schedule-row {
    text-align: center;
  }

  .schedule-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  /* flex-basis 12rem בעמודה יוצר רווח ענק מתחת לכותרת — רק בשורה אופקית */
  .schedule-row__title {
    flex: 0 1 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .courses-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    overflow: visible;
    padding: 0;
  }

  .course-card {
    flex: none;
    scroll-snap-align: none;
  }

  .carousel-btn,
  .carousel-dots {
    display: none !important;
  }

  .prose {
    text-align: right;
  }

  .section-lead {
    text-align: center;
  }
}

/* ——— Schedule ——— */
.schedule-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
}

.schedule-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.schedule-row__title {
  flex: 1 1 12rem;
  min-width: 0;
  line-height: 1.45;
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-date {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.schedule-date--badge {
  flex-shrink: 0;
  min-width: 3.25rem;
  text-align: center;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wine);
  background: var(--wine-soft);
  border: 1px solid rgba(130, 59, 59, 0.15);
}

/* ——— Testimonials ——— */
.testimonials {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 2.35rem 1.25rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.04),
    inset 0 2px 0 -1px var(--wine-soft);
  text-align: center;
}

.testimonial__google {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.35rem 0.2rem 0.2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.testimonial__google-g {
  display: block;
  flex-shrink: 0;
}

.testimonial__google-text {
  font-family: "Product Sans", "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #5f6368;
}

.testimonial__stars {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fbbc04;
  text-shadow: 0 0 0.5px rgba(251, 188, 4, 0.35);
}

.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.testimonial figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ——— Contact ——— */
.contact-card {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
}

.contact-line {
  margin: 0.5rem 0;
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card a:hover {
  color: var(--wine);
}

/* ——— רילים (וידאו) ——— */
.reels-section {
  background: linear-gradient(180deg, #f9f6f1 0%, #f0ebe4 100%);
  padding: 2.75rem 1rem 3.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reels-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.reels-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.reels-section__ig-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reels-section__ig-mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.reels-section__title {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.reels-section__sub {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.45;
}

.reels-section__sub a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reels-section__sub a:hover {
  color: var(--wine);
}

.reels-grid {
  display: flex;
  gap: 0.85rem;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reel-card {
  margin: 0;
  flex: 0 0 clamp(108px, 30vw, 200px);
  scroll-snap-align: start;
}

.reel-card__frame {
  display: block;
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1614;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.25s ease;
}

.reel-card:hover .reel-card__frame,
.reel-card:focus-within .reel-card__frame {
  border-color: rgba(130, 59, 59, 0.28);
}

.reel-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ——— אינסטגרם (כרטיס פרופיל — לא בשימוש בדף הבית, נשמר לעיצוב עתידי) ——— */
.ig-section {
  background: #f5f2ea;
  padding: 2.75rem 1rem 3.25rem;
}

.ig-section__inner {
  max-width: 520px;
  margin: 0 auto;
}

.ig-section__title {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.ig-section__sub {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.45;
}

.ig-profile-card {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  max-width: 380px;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.ig-profile-card__logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ig-profile-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: left;
}

.ig-profile-card__handle {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ig-profile-card__hint {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.ig-reels {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ig-reel {
  flex: 0 0 clamp(100px, 28vw, 150px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.ig-reel__frame {
  display: block;
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #ddd8d0, #b8b0a6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.25s ease;
}

.ig-reel:hover .ig-reel__frame {
  transform: scale(1.03);
}

.ig-reel__frame--empty::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
}

.ig-reel:nth-child(1) .ig-reel__frame--empty::after {
  content: "ריל 1";
}

.ig-reel:nth-child(2) .ig-reel__frame--empty::after {
  content: "ריל 2";
}

.ig-reel:nth-child(3) .ig-reel__frame--empty::after {
  content: "ריל 3";
}

.ig-reel__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .reels-grid {
    justify-content: center;
    overflow: visible;
    flex-wrap: nowrap;
  }

  .reel-card {
    flex: 0 0 min(200px, 28vw);
  }

  .ig-section__inner {
    max-width: 640px;
  }

  .ig-reels {
    justify-content: center;
    overflow: visible;
    flex-wrap: nowrap;
  }

  .ig-reel {
    flex: 0 0 150px;
  }
}

/* ——— Footer ——— */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.25rem 2.5rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--white);
}

.footer-brand {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-legal {
  margin-top: 1.25rem;
  opacity: 0.75;
  font-size: 0.85rem;
}

.site-footer--lux {
  background: linear-gradient(165deg, #1f1b18 0%, #0a0908 55%, #050504 100%);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 3rem 1.15rem 2.75rem;
  border-top: 1px solid rgba(175, 130, 130, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer--lux .site-footer__inner {
  max-width: 26rem;
  margin: 0 auto;
}

.site-footer--lux .site-footer__inner.site-footer__inner--wide {
  max-width: min(42rem, 94vw);
}

.site-footer__en {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(232, 224, 216, 0.88);
}

.site-footer__brand {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.site-footer__tagline {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__intro {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.25rem;
  margin: 0 0 2rem;
  text-align: right;
}

@media (min-width: 560px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

.site-footer__col-title {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 200, 200, 0.55);
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__list a:hover {
  color: rgba(255, 245, 245, 0.98);
  border-bottom-color: rgba(200, 140, 140, 0.55);
}

.site-footer__hours {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.35rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 520px) {
  .site-footer__bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1.25rem;
  }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.site-footer__legal a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 150, 150, 0.35);
  padding-bottom: 1px;
}

.site-footer__legal a:hover {
  color: rgba(255, 245, 245, 0.95);
  border-bottom-color: rgba(230, 170, 170, 0.55);
}

.footer-legal--bar {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.58;
  max-width: 28rem;
}

.footer-contact {
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.2rem 1.45rem;
  text-align: right;
  border-radius: 12px;
  border: 1px solid rgba(184, 160, 144, 0.38);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-contact__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.footer-contact__hint {
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact__field {
  display: block;
  margin-bottom: 0.85rem;
}

.footer-contact__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.footer-contact input:focus-visible,
.footer-contact textarea:focus-visible {
  outline: 2px solid rgba(200, 140, 140, 0.55);
  outline-offset: 1px;
}

.footer-contact input::placeholder,
.footer-contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.footer-contact__submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  background: var(--wine);
  box-shadow: 0 4px 18px rgba(130, 59, 59, 0.38);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.footer-contact__submit:hover {
  filter: brightness(1.06);
}

.footer-contact__submit:active {
  transform: scale(0.99);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding-top: 1.5rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* פוטר משני / דפים ללא טופס — רשת קישורים מפורטת */
.site-footer__columns--sub {
  margin-bottom: 1.25rem;
}

.site-footer--sub .site-footer__intro {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 1.25rem;
}

.site-footer--sub .site-footer__tagline {
  margin-bottom: 0;
}

.site-footer__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 150, 150, 0.42);
  padding-bottom: 1px;
}

.site-footer__nav a:hover {
  color: rgba(255, 245, 245, 0.98);
  border-bottom-color: rgba(230, 170, 170, 0.65);
}

.site-footer--lux .footer-legal {
  margin-top: 1.5rem;
  opacity: 0.65;
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-footer--lux .footer-legal.footer-legal--bar {
  margin-top: 0;
}

.site-footer--sub {
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.site-footer--sub .site-footer__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.site-footer--sub .site-footer__inner.site-footer__inner--wide {
  max-width: min(40rem, 94vw);
}

/* ——— צף: וואטסאפ ימין | למעלה + נגישות שמאל ——— */
.fab-stack {
  position: fixed;
  bottom: 1.1rem;
  left: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.65rem;
}

.fab-stack__panel {
  position: absolute;
  bottom: calc(100% + 0.45rem);
  left: 0;
  width: min(17.5rem, calc(100vw - 2rem));
  padding: 0.85rem 0.9rem;
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--gray-200);
  text-align: right;
}

.fab-stack__panel[hidden] {
  display: none !important;
}

.a11y-panel__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.a11y-toggle {
  display: block;
  width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--gray-100);
  cursor: pointer;
  color: var(--charcoal);
}

.a11y-toggle:last-of-type {
  margin-bottom: 0.55rem;
}

.a11y-toggle[aria-pressed="true"] {
  border-color: var(--charcoal);
  background: rgba(42, 36, 32, 0.08);
}

.a11y-panel__close {
  width: 100%;
  padding: 0.4rem;
  font-family: inherit;
  font-size: 0.82rem;
  border: 0;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  text-decoration: underline;
}

.fab-wa {
  position: fixed;
  bottom: 1.1rem;
  right: 1rem;
  left: auto;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 18px rgba(37, 211, 102, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.fab-wa svg {
  width: 1.75rem;
  height: 1.75rem;
}

.fab-wa:hover {
  filter: brightness(1.06);
}

.fab-wa:active {
  transform: scale(0.96);
}

.fab-top {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 6px;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fab-a11y {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 0;
  background: #005a9c;
  color: var(--white);
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(0, 90, 156, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.fab-a11y:hover {
  filter: brightness(1.06);
}

.fab-a11y:active {
  transform: scale(0.96);
}

.fab-a11y svg {
  display: block;
  width: 1.72rem;
  height: 1.72rem;
  flex-shrink: 0;
}

/* מצבי נגישות (מופעלים מ־JS) */
html.cc-a11y-font {
  font-size: 112.5%;
}

html.cc-a11y-contrast {
  filter: contrast(1.15) saturate(1.08);
}

html.cc-a11y-motion *,
html.cc-a11y-motion *::before,
html.cc-a11y-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* ——— Cookie ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner a:hover {
  color: var(--wine);
}

.btn-cookie {
  flex-shrink: 0;
  background: var(--charcoal);
  color: var(--white);
  border: 0;
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
}

/* ——— רצועת מותגים (דף הבית, מתחת לקורסים) ——— */
.brand-ticker {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-block: 1px solid var(--gray-200);
}

.brand-ticker__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 8vw, 4.5rem);
  z-index: 2;
  pointer-events: none;
}

.brand-ticker__fade--start {
  inset-inline-start: 0;
  background: linear-gradient(to left, transparent, var(--white));
}

.brand-ticker__fade--end {
  inset-inline-end: 0;
  background: linear-gradient(to right, transparent, var(--white));
}

.brand-ticker__viewport {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.brand-ticker__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1.35rem, 4.5vw, 2.5rem);
  width: max-content;
  padding: 1rem 0;
  animation: brandTicker 90s linear infinite;
}

.brand-ticker__ghost {
  display: contents;
}

.brand-ticker:hover .brand-ticker__track {
  animation-play-state: paused;
}

.brand-ticker__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 150px;
  height: 60px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 640px) {
  .brand-ticker__item {
    width: 180px;
    height: 72px;
  }
}

.brand-ticker__item:hover {
  transform: scale(1.04);
}

.brand-ticker__item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.brand-ticker__item:hover img {
  opacity: 1;
}

@keyframes brandTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-ticker__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    row-gap: 0.75rem;
    column-gap: 1.25rem;
    padding: 1.1rem 1rem;
  }

  .brand-ticker__ghost {
    display: none;
  }
}

html.cc-a11y-motion .brand-ticker__track {
  animation: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  row-gap: 0.75rem;
  column-gap: 1.25rem;
  padding: 1.1rem 1rem;
}

html.cc-a11y-motion .brand-ticker__ghost {
  display: none;
}

/* ——— השתלמויות / אירועים (תצוגה מצומצמת + דף מלא) ——— */
.workshop-preview-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .workshop-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.workshop-preview__all {
  text-align: center;
  margin-top: 1.75rem;
}

.workshop-card {
  text-align: right;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.workshop-card--compact {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.workshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine);
  padding-bottom: 0.45rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid var(--wine-soft);
}

.workshop-card__date {
  background: var(--wine-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.workshop-card__day {
  color: var(--gray-700);
}

.workshop-card__time {
  font-variant-numeric: tabular-nums;
}

.workshop-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.workshop-card__lecturer {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.workshop-card__lecturer-label {
  font-weight: 600;
  color: var(--charcoal);
}

.workshop-card__summary {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--gray-700);
  flex: 1;
}

.workshop-card__price {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal);
}

.workshop-card__price-label {
  font-weight: 700;
  color: var(--wine);
}

.workshop-card__price--muted {
  font-weight: 500;
  color: var(--gray-500);
}

.workshop-card__price--note {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}

.workshop-card__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.workshop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.workshop-card__actions .workshop-card__cta {
  margin-top: 0;
}

.workshops-page {
  padding: 0 1.25rem 2.75rem;
  max-width: 52rem;
  margin: 0 auto;
  /* בורגונדי עמוק יותר — רק בענף הזה (לא משפיע על תצוגת הבית) */
  --wine: #5a2626;
  --wine-soft: rgba(90, 38, 38, 0.15);
  --wine-mid: rgba(90, 38, 38, 0.44);
}

.workshops-page__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workshops-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.65rem;
  max-width: 38rem;
  margin: 0 auto 1.85rem;
  padding: 0 0.2rem;
}

.workshops-filter__btn {
  flex: 1 1 auto;
  min-width: min(6.5rem, 32%);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.58rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid var(--wine);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 3px 14px rgba(90, 38, 38, 0.1);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.workshops-filter__btn:hover {
  background: var(--wine-soft);
}

.workshops-filter__btn.is-active {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(90, 38, 38, 0.32);
}

.workshops-filter__empty {
  margin: 0;
  padding: 2.25rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-radius: 16px;
  border: 1px dashed rgba(90, 38, 38, 0.22);
  background: rgba(255, 255, 255, 0.55);
}

.workshops-filter--kind {
  max-width: 22rem;
  margin-top: 2.1rem;
  margin-bottom: 1.35rem;
}

.workshops-filter--kind .workshops-filter__btn {
  flex: 1 1 42%;
  min-width: 0;
}

.workshops-tiles-wrap {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.workshops-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 1rem 1.1rem;
  direction: rtl;
}

.workshop-tile {
  display: block;
  text-align: center;
  padding: 1.05rem 0.75rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(90, 38, 38, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.055);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.workshop-tile:hover {
  box-shadow: 0 8px 26px rgba(90, 38, 38, 0.12);
  transform: translateY(-2px);
  border-color: rgba(90, 38, 38, 0.28);
}

.workshop-tile:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}

.workshop-tile__title {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.workshop-tile__date {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}

.workshop-tile__slot {
  margin: 0.4rem 0 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--wine);
}

.workshops-tiles__empty {
  margin: 0;
  padding: 1.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-radius: 14px;
  border: 1px dashed rgba(90, 38, 38, 0.2);
  background: rgba(255, 255, 255, 0.6);
  grid-column: 1 / -1;
}

.workshop-card--full {
  padding: 0;
  overflow: hidden;
}

.workshop-card__head {
  padding: 1.15rem 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(130, 59, 59, 0.06) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.workshop-card__meta--block {
  border-bottom: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.workshop-card--full .workshop-card__title {
  font-size: 1.15rem;
}

.workshop-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.workshop-card__lead {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.workshop-card__bullets {
  margin: 0 0 1rem;
  padding: 0 1.1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
}

.workshop-card__bullets li {
  margin-bottom: 0.4rem;
}

.workshop-card__price--large {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.workshop-card__price-note-full {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.workshops-page__back {
  text-align: center;
  margin-top: 2.25rem;
}

.workshops-page__back a {
  font-weight: 600;
  color: var(--gray-700);
}

/* דף השתלמויות — רקע עדין + כרטיסים ו־hero יוקרתיים */
body.page-workshops {
  background: linear-gradient(180deg, #faf8f5 0%, #f4f0ea 50%, #ebe6df 100%);
  font-family: "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.page-workshops .site-footer__en {
  font-family: inherit;
  font-weight: 500;
}

.workshops-page > .course-page__hero {
  margin: 0 0 0.15rem;
  padding: 2.7rem 1.5rem 2.45rem;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(168deg, #161210 0%, #0a0908 45%, #1a1010 100%);
  border-bottom: 1px solid rgba(90, 38, 38, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.14),
    inset 0 -1px 0 rgba(255, 248, 242, 0.04);
  position: relative;
  overflow: hidden;
}

.workshops-page > .course-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(90, 38, 38, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.workshops-page > .course-page__hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(11rem, 70%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 160, 144, 0.45) 18%,
    rgba(220, 200, 185, 0.85) 50%,
    rgba(184, 160, 144, 0.45) 82%,
    transparent
  );
  pointer-events: none;
}

.workshops-page > .course-page__hero .course-page__title {
  position: relative;
  z-index: 1;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1.45rem, 4.8vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.workshops-page .workshop-card--full {
  scroll-margin-top: 5.5rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 18px 46px rgba(0, 0, 0, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.workshops-page .workshop-card--full::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--wine) 0%, rgba(184, 160, 144, 0.7) 50%, var(--wine) 100%);
  opacity: 0.95;
}

.workshops-page .workshop-card__head {
  padding: 1.35rem 1.4rem 1.1rem;
  background: linear-gradient(180deg, var(--wine-soft) 0%, rgba(255, 255, 255, 0.98) 88%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.workshops-page .workshop-card__body {
  padding: 1.2rem 1.4rem 1.45rem;
  background: linear-gradient(180deg, #fffefc 0%, #f9f7f4 100%);
}

.workshops-page .workshop-card--full .workshop-card__title {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.workshops-page .workshop-card__date {
  border: 1px solid rgba(90, 38, 38, 0.1);
  font-variant-numeric: tabular-nums;
}

.workshops-page__back {
  margin-top: 2.75rem;
}

.workshops-page__back a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.workshops-page__back a:hover {
  color: var(--charcoal);
  border-bottom-color: var(--wine-mid);
}

/* ——— עוזרת אתר (שאלות על מועדים וקורסים) ——— */
.site-assistant {
  position: relative;
  z-index: 55;
}

/* מעל כפתור הוואטסאפ (ימין למטה) — אותו ציר אופקי */
.site-assistant__fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: calc(1.1rem + 3.5rem + 0.5rem);
  z-index: 55;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(145deg, #6b3030 0%, var(--wine) 55%, #5c2828 100%);
  color: rgba(255, 250, 248, 0.98);
  box-shadow:
    0 4px 18px rgba(130, 59, 59, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, filter 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-assistant__fab:hover {
  filter: brightness(1.06);
}

.site-assistant__fab:active {
  transform: scale(0.96);
}

.site-assistant__fab-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.site-assistant__panel[hidden] {
  display: none !important;
}

.site-assistant__panel {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: calc(1.1rem + 3.5rem + 0.5rem + 3.5rem + 0.45rem);
  z-index: 56;
  width: min(22.5rem, calc(100vw - 2rem));
  max-height: min(32rem, 78vh);
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(130, 59, 59, 0.12);
  overflow: hidden;
  text-align: right;
}

.site-assistant__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, rgba(130, 59, 59, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.site-assistant__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.site-assistant__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
}

.site-assistant__close:hover {
  background: rgba(130, 59, 59, 0.1);
}

.site-assistant__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 1rem 0.75rem;
  justify-content: flex-start;
  max-height: min(11rem, 32vh);
  overflow-y: auto;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
}

.site-assistant__choice-btn {
  text-align: right;
}

.site-assistant__chip {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(130, 59, 59, 0.38);
  background: #f7f5f2;
  color: var(--wine);
  cursor: pointer;
  max-width: 100%;
  text-align: right;
  line-height: 1.25;
}

.site-assistant__chip:hover {
  border-color: var(--wine-mid);
  background: rgba(130, 59, 59, 0.1);
}

.site-assistant__messages {
  flex: 1;
  min-height: 9rem;
  max-height: min(22rem, 50vh);
  overflow-y: auto;
  padding: 0.75rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: linear-gradient(180deg, #e8e5e1 0%, #ded9d4 100%);
}

/* שורת צ'אט: עוזרת מימין (ב־RTL), לקוח משמאל */
.site-assistant__chat-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.42rem;
}

.site-assistant__chat-row--assistant {
  max-width: 100%;
}

.site-assistant__chat-row--user {
  justify-content: flex-end;
  width: 100%;
}

.site-assistant__msg-avatar {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #6b3030 0%, var(--wine) 55%, #5c2828 100%);
  color: rgba(255, 250, 248, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(130, 59, 59, 0.28);
}

.site-assistant__msg-avatar-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.site-assistant__typing {
  align-self: flex-start;
  max-width: min(92%, 19rem);
}

.site-assistant__typing-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 1rem 1rem 0.35rem 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.site-assistant__typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.site-assistant__typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wine);
  opacity: 0.35;
  animation: siteAssistantDot 1.1s ease-in-out infinite;
}

.site-assistant__typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.site-assistant__typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes siteAssistantDot {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-assistant__typing-dots span {
    animation: none;
    opacity: 0.75;
  }
}

html.cc-a11y-motion .site-assistant__typing-dots span {
  animation: none;
  opacity: 0.75;
}

.site-assistant__msg {
  font-size: 0.88rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.site-assistant__msg-body {
  padding: 0.55rem 0.78rem;
  border-radius: 1rem 1rem 0.35rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: right;
}

.site-assistant__msg--user {
  align-self: flex-end;
  max-width: min(88%, 18.5rem);
}

.site-assistant__msg-body--user {
  background: linear-gradient(180deg, #fffefd 0%, #faf7f5 100%);
  border: 1px solid rgba(130, 59, 59, 0.28);
  border-radius: 1rem 1rem 1rem 0.35rem;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(90, 38, 38, 0.08);
}

.site-assistant__msg--bot {
  align-self: flex-start;
  max-width: min(94%, 20rem);
}

.site-assistant__msg--bot .site-assistant__msg-body {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: var(--gray-700);
}

.site-assistant__msg--bot a {
  color: var(--wine);
  font-weight: 600;
}

.summer-new-banner {
  padding: clamp(1rem, 2vw, 1.6rem);
  background: linear-gradient(135deg, rgba(130, 59, 59, 0.08), rgba(184, 160, 144, 0.16));
}

.summer-new-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  border: 1px solid rgba(130, 59, 59, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: clamp(1rem, 2.4vw, 2rem);
  box-shadow: 0 14px 30px rgba(130, 59, 59, 0.12);
}

.summer-new-banner__badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--wine);
}

.summer-new-banner__title {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.25;
  color: var(--charcoal);
}

.summer-new-banner__text {
  margin: 0.5rem 0 0;
  color: var(--gray-700);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.summer-new-banner__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

