:root {
  --msc-warm-grey: #8B8178;
      --msc-yellow: #EED484;
      --bg-dark: #000000;
      --text-main: #111111;
      --text-muted: #8B8178;
      --card-bg: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      /* בסיס כללי – טקסט עברי */
      font-family: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Helvetica Neue", sans-serif;
      background-color: #ffffff;
      color: var(--text-main);
      line-height: 1.6;
    }

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

    /* HEADER + LOGO */
    header {
      position: fixed;
      top: 0;
      inset-inline: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 24px;
      background-color: #000000;
      pointer-events: none; /* so hero stays fully clickable if needed */
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      pointer-events: auto;
    }

    .logo {
      max-width: 220px;
      height: auto;
      filter: none;
      display: block;
    }

    .header-tagline {
      color: white;
      font-size: 15px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-align: center;
    }

    .header-tagline span {
      display: block;
      font-weight: 500;
    }

    .header-tagline strong {
      font-weight: 700;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      background-image: url("P2P_1597.jpg");
      background-size: cover;
      background-position: center center;
    }

    /* עדין מאוד – רק לשיפור קריאות הטקסט */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.70)
      );
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      padding: 120px 16px 80px;
      max-width: 900px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f9f9f9;
      margin-bottom: 12px;
    }

    .eyebrow-line {
      width: 40px;
      height: 2px;
      background-color: var(--msc-yellow);
      border-radius: 999px;
    }

    .hero-title {
      font-size: clamp(30px, 5vw, 40px);
      font-weight: 800;
      margin-bottom: 12px;
      text-shadow: 0 8px 20px rgba(0,0,0,0.45);
    }

    .hero-subtitle {
      font-size: 17px;
      max-width: 620px;
      margin: 0 auto 24px;
      color: #f3f3f3;
      text-shadow: 0 4px 14px rgba(0,0,0,0.4);
    }

    .hero-meta {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #f5f5f5;
      opacity: 0.9;
      margin-bottom: 26px;
    }

    .hero-meta strong {
      color: var(--msc-yellow);
    }

    .cta-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background-color: var(--msc-yellow);
      color: #000000;
      border-radius: 999px;
      padding: 11px 26px;
      font-size: 15px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(0,0,0,0.45);
      background-color: var(--msc-yellow);
    }

    .btn-primary span.arrow {
      font-size: 18px;
      transform: translateY(1px);
    }

    
    .btn-secondary {
      background-color: transparent;
      color: var(--msc-yellow);
      border-radius: 999px;
      padding: 10px 22px;
      font-size: 14px;
      border: 1px solid var(--msc-yellow);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: none;
      transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      background-color: var(--msc-yellow);
      color: #000000;
      border-color: var(--msc-yellow);
    }


    main {
      max-width: 1120px;
      margin: 0 auto;
      padding: 40px 16px 72px;
    }

    section {
      margin-bottom: 52px;
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: 24px;
      font-weight: 800;
    }

    .section-kicker {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.1);
      font-size: 12px;
      color: var(--text-muted);
      background-color: #ffffff;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background-color: var(--msc-yellow);
    }

    .cols-2 {
      display: grid;
      grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .card {
      background-color: var(--card-bg);
      border-radius: 20px;
      padding: 20px 20px 18px;
      box-shadow: 0 14px 40px rgba(15,23,42,0.08);
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      color: var(--text-muted);
    }

    .card ul {
      margin-top: 8px;
      padding-right: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .card li {
      margin-bottom: 4px;
    }

    .stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 10px;
    }

    .stat-pill {
      background: #000;
      color: #fff;
      border-radius: 999px;
      padding: 7px 13px;
      font-size: 12px;
    }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 10px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background-color: #000;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 0%, rgba(0,0,0,0.2), transparent 45%);
      pointer-events: none;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    /* FOOTER CTA */
    .footer-cta {
      text-align: center;
      margin-top: 10px;
    }

    .footer-cta p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .footer-legal {
      text-align: center;
      font-size: 11px;
      color: #999;
      margin-top: 24px;
    }

    @media (max-width: 840px) {
      .cols-2 {
        grid-template-columns: minmax(0,1fr);
      }

      header {
        padding-inline: 12px;
      }

      .header-inner {
        gap: 10px;
      }

      .header-tagline {
        font-size: 13px;
      }

      .hero-content {
        padding-top: 120px;
      }
    }

    @media (max-width: 520px) {
      .hero {
        min-height: 88vh;
        background-position: center 30%;
      }

      .hero-title {
        font-size: 26px;
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .cta-row {
        flex-direction: column;
        align-items: center;
      }

      .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      main {
        padding-inline: 12px;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }


/* MSC values section overrides */

  .section-header-center {
    justify-content: center;
    text-align: center;
  }

  .section-header-center > div {
    align-items: center;
  }

  .section-underline {
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background-color: var(--msc-yellow);
    margin: 10px auto 0;
  }

  .msc-values-intro {
    max-width: 680px;
    margin: 0 auto 10px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
  }

  .msc-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 18px 0 16px;
  }

  .msc-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .msc-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 3px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 4px;
  }

  .msc-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--msc-yellow);
    box-shadow:
      0 0 0 4px rgba(238, 212, 132, 0.25),
      -32px 0 0 0 rgba(238, 212, 132, 0.18),
      32px 0 0 0 rgba(238, 212, 132, 0.18);
  }

  .msc-value-title {
    font-size: 15px;
    margin: 0;
  }

  .msc-value-text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
  }

  .msc-values-quote {
    text-align: center;
    margin: 8px auto 18px;
    max-width: 720px;
  }

  .msc-quote-text {
    font-size: 14px;
    margin: 0 0 4px;
    font-style: italic;
  }

  .msc-quote-author {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
  }

  .section-subheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 6px;
  }

  .section-subtitle {
    font-size: 16px;
    margin: 2px 0 0;
  }

  .culture-event-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 14px;
  }

  @media (max-width: 640px) {
    .msc-values-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
    }

    .section-subheader {
      flex-direction: column;
      align-items: flex-start;
    }
  }




/* MSC values badges + quote layout */
.msc-values-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.msc-value-badge {
  background-color: rgba(238, 212, 132, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.msc-values-quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 22px;
}

.msc-quote-text-wrapper {
  flex: 1.6;
}

.msc-quote-author-wrapper {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.msc-quote-text-en {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.msc-quote-divider {
  width: 2px;
  height: 48px;
  background-color: var(--msc-yellow);
  margin-bottom: 4px;
}

.msc-quote-author-en {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.msc-quote-author-role {
  font-size: 13px;
  margin: 0;
  color: var(--text-muted);
}

.culture-event-intro-spaced {
  margin-top: 18px;
  margin-bottom: 16px;
}

.gallery-grid {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .msc-values-quote-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .msc-quote-divider {
    height: 32px;
  }

  .msc-quote-text-en {
    font-size: 16px;
  }
}



.culture-gallery-title {
  font-size: 18px;
  margin: 0 0 6px;
}



.msc-values-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px 18px;
  justify-items: center;
  margin: 16px 0 20px;
}

.msc-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.msc-value-icon-img {
  width: 64px;
  height: 64px;
  display: block;
}

.msc-value-card-title {
  font-size: 14px;
  margin: 0;
}




/* MSC values layout - closer to global design */
.msc-values-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 20px 0 24px;
}

.msc-value-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.msc-value-row-reverse {
  flex-direction: row-reverse;
}

.msc-value-iconwrap {
  flex: 0 0 auto;
}

.msc-value-icon-img {
  width: 80px;
  height: 80px;
  display: block;
}

.msc-value-text {
  flex: 1;
}

.msc-value-title {
  font-size: 18px;
  margin: 0 0 6px;
}

.msc-value-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .msc-value-row,
  .msc-value-row-reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .msc-value-icon-img {
    width: 64px;
    height: 64px;
  }
}



/* MSC values icons strip - simple vertical stack under each icon */
.msc-values-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px 24px;
  justify-items: center;
  margin: 20px 0 22px;
}

.msc-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.msc-value-icon-img {
  width: 72px;
  height: 72px;
  display: block;
}

.msc-value-card-title {
  font-size: 14px;
  margin: 0;
}

/* Founder quote - centered, clean */
.msc-values-quote-row {
  margin: 16px 0 24px;
  text-align: center;
}

.msc-quote-text-wrapper {
  margin-bottom: 8px;
}

.msc-quote-text-en {
  direction: ltr;
  text-align: center;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.msc-quote-author-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.msc-quote-divider {
  width: 36px;
  height: 2px;
  background-color: var(--msc-yellow);
  margin: 0;
}

.msc-quote-author-en,
.msc-quote-author-role {
  direction: ltr;
  text-align: left;
}

.msc-quote-author-en {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.msc-quote-author-role {
  font-size: 13px;
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .msc-values-icons {
    gap: 14px 16px;
  }

  .msc-quote-text-en {
    font-size: 16px;
  }

  .msc-quote-author-wrapper {
    flex-direction: column;
    gap: 4px;
  }

  .msc-quote-author-en,
  .msc-quote-author-role {
    text-align: center;
  }
}



/* Unified section headers already share .section-header + .section-kicker + .section-title + .pill */

/* Quote box styling so it stands out */
.msc-values-quote-row {
  margin: 20px auto 26px;
  text-align: center;
  max-width: 760px;
  background-color: rgba(238,212,132,0.18);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.msc-quote-text-wrapper {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .msc-values-quote-row {
    padding: 14px 16px;
    margin: 18px auto 22px;
  }
}



/* Hero content shaded panel for better legibility */
.hero-content {
  position: relative;
  padding: 120px 24px 86px;
  max-width: 920px;
}




/* Extra breathing room between quote block and events gallery */
.msc-values-quote-row + .section-header {
  margin-top: 40px;
}



/* Closing CTA block styling */
.footer-cta {
  text-align: center;
  margin-top: 46px;
  padding: 26px 22px 22px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.footer-cta p {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 14px;
}

.footer-cta .btn-primary {
  margin-top: 6px;
}

.footer-legal {
  text-align: center;
  font-size: 11px;
  color: #999;
  margin-top: 18px;
}

/* Mobile tweaks for CTA */
@media (max-width: 768px) {
  .footer-cta {
    margin-top: 38px;
    padding: 22px 16px 18px;
  }
}



/* Gallery lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 999;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 84vh;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #f8fafc;
}

.lightbox-close {
  position: absolute;
  top: -32px;
  inset-inline-end: 0;
  background: none;
  border: none;
  font-size: 26px;
  color: #f9fafb;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.7);
  border: none;
  color: #f9fafb;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.lightbox-prev {
  inset-inline-start: -52px;
}

.lightbox-next {
  inset-inline-end: -52px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(15, 23, 42, 0.9);
}

@media (max-width: 768px) {
  .lightbox-inner {
    max-width: 94vw;
    max-height: 80vh;
  }
  .lightbox-image {
    max-height: 60vh;
  }
  .lightbox-prev {
    inset-inline-start: -36px;
  }
  .lightbox-next {
    inset-inline-end: -36px;
  }
  .lightbox-close {
    top: -28px;
    inset-inline-end: 4px;
  }
}


/* Force square ratio for gallery items (1:1) */
.gallery-item {
  aspect-ratio: 1 / 1;
}


/* כותרות, כפתורים ואזורים מותגיים – Archivo בראש, עם Heebo לגיבוי */
h1,
h2,
h3,
.hero-title,
.hero-subtitle,
.section-title,
.btn,
.btn-primary,
.btn-secondary,
.header-inner,
.footer-cta p {
  font-family: "Archivo", "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Helvetica Neue", sans-serif;
}


/* ===== MSC Careers – Brand compliant email link ===== */
.msc-card a[href^="mailto:"],
.msc-card a[href^="mailto:"]:visited,
.msc-card a[href^="mailto:"]:active {
  color: var(--msc-warm-grey, #8B8178) !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

