:root {
  --navy: #074a83;
  --deep: #073965;
  --blue: #208fc8;
  --cyan: #61c6ca;
  --aqua: #75d4d4;
  --gold: #ffbd35;
  --yellow: #ffd750;
  --orange: #ff7c25;
  --cream: #fff4d8;
  --ink: #083b66;
  --white: #fffdf7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  background-color: #f7c94b;
  background-image: url("img/fondo.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.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;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 9px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--deep);
  background: rgba(255, 253, 247, .96);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(5, 58, 99, .18);
  backdrop-filter: blur(12px);
}
.brand img { width: 146px; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.desktop-nav > a:not(.nav-cta) { position: relative; }
.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav > a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px;
  border: 2px solid #ef9e1f;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(180deg, var(--yellow), var(--gold));
  box-shadow: 0 5px 0 #d98618;
}
.mobile-nav { display: none; position: relative; }

.hero {
  position: relative;
  z-index: 1;
  padding: 112px 0 34px;
  overflow: hidden;
}
.hero-art-wrap {
  display: block;
  width: min(1920px, 100%);
  margin: 0 auto;
}
.hero-art { width: 100%; height: auto; }
.mobile-hero-copy { display: none; }
.hero-actions {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 4;
  border: 2px solid rgba(255, 221, 90, .9);
  border-radius: 22px;
  color: white;
  background: rgba(6, 74, 131, .9);
  box-shadow: 0 18px 48px rgba(5, 55, 96, .28);
  backdrop-filter: blur(10px);
}
.hero-actions > span {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.hero-actions > div { display: flex; gap: 10px; }
.button {
  min-height: 48px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  border: 2px solid #ef9e1f;
  color: var(--deep);
  background: linear-gradient(180deg, var(--yellow), var(--gold));
  box-shadow: 0 5px 0 #d98618;
}
.button-outline { border: 2px solid rgba(255,255,255,.8); color: white; background: rgba(255,255,255,.08); }

.community-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 250px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  border-top: 5px solid var(--orange);
  border-bottom: 5px solid var(--gold);
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
}
.community-photo {
  overflow: hidden;
  border: 3px solid #ffe152;
  border-radius: 16px;
  background: var(--deep);
  box-shadow: 0 5px 12px rgba(80, 45, 0, .2);
}
.community-photo img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: clamp(74px, 8vw, 118px) clamp(18px, 6vw, 88px); }
.section-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading p {
  margin: 0 0 5px;
  color: var(--yellow);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-family: "Kaushan Script", cursive;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 5px 0 rgba(5, 68, 119, .15);
}
.section-heading span {
  color: #eaffff;
  font-size: clamp(1.2rem, 1.8vw, 1.46rem);
  line-height: 1.65;
}

.worship {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(180deg, rgba(29, 145, 194, .95), rgba(62, 185, 205, .94));
}
.worship::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: url("assets/star-mark.png") no-repeat 112% 50%;
  background-size: min(58vw, 720px);
}
.featured-artist {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1.3fr;
  gap: clamp(25px, 4vw, 55px);
  align-items: center;
  border: 3px solid var(--yellow);
  border-radius: 30px;
  color: white;
  background: rgba(29, 151, 193, .85);
  box-shadow: 0 0 0 7px rgba(255, 189, 53, .15), 0 20px 45px rgba(4, 75, 122, .25);
}
.featured-image { min-height: 300px; overflow: hidden; border-radius: 23px; border: 2px solid rgba(255,255,255,.35); }
.featured-image img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.featured-copy { padding-right: clamp(10px, 2vw, 30px); }
.fire-label {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: 999px;
  color: #502d00;
  background: var(--gold);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.featured-copy h3 {
  margin: 8px 0 12px;
  color: white;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 800;
  line-height: .93;
  text-transform: uppercase;
}
.featured-copy p { margin: 0; 
	color: #edffff; 
	font-size: clamp(1.2rem, 1.68vw, 1.38rem); 
	line-height: 1.65; 
	}
.artist-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.artist-card {
  min-width: 0;
  min-height: 0;
  padding: 9px;
  display: grid;
  grid-template-columns: clamp(115px, 12vw, 150px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 218, 78, .9);
  border-radius: 20px;
  background: rgba(15, 107, 166, .86);
  box-shadow: 0 10px 24px rgba(4, 64, 109, .18);
}

.artist-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.artist-card > div {
  min-width: 0;
  padding: 4px 8px 4px 0;
}

.artist-card h3 {
  margin: 0 0 7px;
  color: var(--yellow);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.artist-card p {
  margin: 0;
  color: #eefeff;
  font-size: clamp(.936rem, 1.104vw, 1.14rem);
  line-height: 1.4;
}

.experience {
  position: relative;
  overflow: hidden;
  background: rgba(7, 79, 139, 0);
}
.experience::before {
  content: "אש קודש";
  position: absolute;
  top: 5%;
  left: -2%;
  color: rgba(117, 212, 212, .09);
  font-family: serif;
  font-size: min(24vw, 22rem);
  line-height: 1;
  white-space: nowrap;
}
.experience-grid {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.experience-card {
  min-height: 262px;
  padding: clamp(23px, 2.7vw, 34px);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 208, 60, .7);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(17, 124, 179, .96), rgba(5, 62, 116, .96));
  box-shadow: inset 0 0 0 5px rgba(117, 212, 212, .08), 0 12px 28px rgba(2, 42, 82, .22);
  transition: transform .2s ease, border-color .2s ease;
}

.experience-card--workshops {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/workshopsx.webp") right center / cover no-repeat; 
}



.experience-card--workshops p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--mains p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--mains {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/mains.webp") right center / cover no-repeat; 
}




.experience-card--celebs p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--celebs {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/celebsx.webp") right center / cover no-repeat; 
}


.experience-card--dance p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--dance {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/celebs.webp") right center / cover no-repeat; 
}


.experience-card--yps p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--yps {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/yps.webp") right center / cover no-repeat; 
}

.experience-card--torah p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--torah {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/torah.webp") right center / cover no-repeat; 
}

.experience-card--young p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--young {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/young.webp") right center / cover no-repeat; 
}

.experience-card--children p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--children {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/children.webp") right center / cover no-repeat; 
}


.experience-card--market p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--market {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/market.webp") right center / cover no-repeat; 
}


.experience-card--pizza p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-card--pizza {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(3, 42, 74, 0.25) 0%,
      rgba(3, 42, 74, 0.92) 100%
    ),
    url("assets/pizza.webp") right center / cover no-repeat; 
}

.experience-card:hover { transform: translateY(-5px); border-color: var(--yellow); }
.experience-topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.experience-number {
  color: var(--gold);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}
.experience-tag {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--aqua);
  font-family: "Baloo 2", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.experience-card h3 {
  margin: auto 0 9px;
  color: var(--yellow);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}
.experience-card p { margin: 0; color: #f0feff; line-height: 1.5; font-size: clamp(1rem, 1.4vw, 1.14rem); }
.experience-card:last-child { grid-column: auto; }
.singles-banner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 20px auto 0;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 3px solid var(--gold);
  border-radius: 22px;
  color: var(--deep);
  background: linear-gradient(100deg, var(--aqua), #9ce5d7);
}
.singles-banner > span {
  padding: 7px 13px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-family: "Baloo 2", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.singles-banner h3 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
}
.singles-banner p { margin: 0; font-size: clamp(1rem, 1.2vw, 1.1rem);}

.leadership {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(35px, 7vw, 92px);
  align-items: center;
  color: var(--deep);
  background: rgba(255, 172, 54, .94);
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--orange);
   
}
.leadership-intro > p {
  margin: 0;
  color: #8d4105;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.leadership-intro h2 {
  margin: 8px 0 18px;
  color: white;
  font-family: "Kaushan Script", cursive;
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: .95;
  text-shadow: 0 4px 0 rgba(147, 70, 5, .14);
}
.leadership-intro blockquote { margin: 0; font-size: 1.12rem; font-style: italic; line-height: 1.55; }
.leadership-intro cite {
  display: block;
  margin-top: 7px;
  font-family: "Baloo 2", sans-serif;
  font-size: .78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.leader-card {
  overflow: hidden;
  border: 3px solid var(--yellow);
  border-radius: 26px;
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 15px 35px rgba(111, 52, 2, .18);
}
.leader-card img { width: 100%; aspect-ratio: 1.15; object-fit: cover; object-position: center top; background: #f4d29a; }
.leader-card div { padding: 20px; }
.leader-card h3 {
  margin: 0 0 4px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.leader-card p { margin: 0; color: #537087; line-height: 1.4; }

.details {
  color: var(--deep);
  background: rgba(255, 246, 219, .94);
}
.details-copy { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.details-kicker {
  margin: 0 0 5px;
  color: var(--orange);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.details-copy h2 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: .92;
  text-transform: uppercase;
}
.details-lead { max-width: 650px; margin: 15px auto 0; color: #4f7188; font-size: 1.3rem; line-height: 1.6; }
.details-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr .9fr;
  gap: 17px;
}
.info-card {
  padding: clamp(25px, 3vw, 38px);
  border: 3px solid var(--gold);
  border-radius: 27px;
  box-shadow: 0 15px 36px rgba(67, 64, 31, .13);
}
.info-card h3 {
  margin: 9px 0 20px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
}
.info-card p { line-height: 1.55; font-size:1.2rem;}
.info-label {
  font-family: "Baloo 2", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.registration-card { background: rgba(255,255,255,.96); }
.registration-card .info-label { color: var(--orange); font-size:1.2rem;}
.price-row {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid #d8e6e5;
  font-size:1.2rem;
}
.price-row strong { color: var(--orange); font-family: "Baloo 2", sans-serif; font-size: 2.1rem; font-weight: 800; }
.registration-card .button { margin-top: 10px; }
.hotel-card { color: white; background: linear-gradient(145deg, #249ac4, #096198); }
.hotel-card .info-label { color: var(--yellow); font-size:1.2rem;}
.hotel-card address { color: #e3ffff; font-style: normal; line-height: 1.55; font-size:1.2rem;}
.hotel-phone { display: inline-block; margin: 8px 0; color: var(--yellow); font-family: "Baloo 2", sans-serif; font-size: 1.55rem; font-weight: 800; }
.contact-card { display: flex; flex-direction: column; color: var(--deep); background: linear-gradient(145deg, #ff8b2d, #ffb43c); }
.contact-card .info-label { color: white; font-size:1.2rem;}
.contact-card > a { margin-bottom: 10px; font-weight: 800; overflow-wrap: anywhere; font-size:1.0rem;}
.contact-date { margin-top: auto; padding-top: 28px; }
.contact-date strong, .contact-date span { display: block; }
.contact-date span {
  margin-top: 5px;
  color: white;
  font-family: "Baloo 2", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.final-cta {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(6, 70, 124, .92);
}
.final-cta > img { position: absolute; right: -80px; width: 390px; opacity: .2; transform: rotate(5deg); }
.final-cta > div { position: relative; z-index: 2; }
.final-cta p {
  margin: 0;
  color: var(--yellow);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size:1.2rem;
}
.final-cta h2 {
  margin: 5px 0 25px;
  font-family: "Kaushan Script", cursive;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1;
}
footer {
  padding: 35px clamp(18px, 6vw, 88px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--deep);
  background: rgba(255,253,247,.97);
  border-top: 4px solid var(--gold);
  font-size: .86rem;
}
footer img { width: 120px; }
footer p { margin: 0; }
footer a { color: var(--orange); font-family: "Baloo 2", sans-serif; font-weight: 800; }

.welcome {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(35px, 6vw, 85px);
  align-items: center;
  color: var(--deep);
  background: rgba(255, 246, 219, .95);
}
.welcome-kicker {
  margin: 0;
  color: var(--orange);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size:2em;
  
}
.welcome-main > h2 {
  margin: 3px 0 14px;
  color: var(--navy);
  font-family: "Kaushan Script", cursive;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.welcome-lead { max-width: 830px; margin: 0; color: #42657c; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.65; }
.welcome-leaders { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.welcome-leaders article {
  min-height: 192px;
  padding: 12px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}

.welcome-leaders img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: #f3d79e;
}

.welcome-leaders h3 { margin: 0 0 3px; font-family: "Baloo 2", sans-serif; font-size: 1.1rem; font-weight: 800; line-height: 1; text-transform: uppercase; }
.welcome-leaders p { margin: 0; color: #5c7585; font-size: .85rem; line-height: 1.3; }
.video-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  overflow: hidden;
  border: 3px solid var(--gold);
  border-radius: 28px;
  background: var(--deep);
  box-shadow: 0 18px 42px rgba(47,65,58,.2);
}
.video-placeholder iframe { width: 100%; height: 100%; display: block; border: 0; }

.yeshiva {
  color: white;
  background: rgba(255, 157, 43, .75);
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--orange);
}
.yeshiva-heading { max-width: 1050px; margin: 0 auto 34px; text-align: center; }
.yeshiva-heading > p { margin: 0; color: #75400b; font-family: "Baloo 2", sans-serif; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.yeshiva-heading h2 { margin: 4px 0 10px; font-family: "Baloo 2", sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; line-height: .95; text-transform: uppercase; }
.yeshiva-date {
  display: inline-flex;
  padding: 8px 18px;
  border: 2px solid #e68d16;
  border-radius: 999px;
  color: var(--deep);
  background: var(--yellow);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.yeshiva-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(220px, .55fr) 1.45fr;
  gap: clamp(25px, 5vw, 60px);
  align-items: center;
  border: 3px solid var(--yellow);
  border-radius: 30px;
  background: linear-gradient(145deg, #0e77b0, #073b70);
  box-shadow: 0 20px 48px rgba(110,49,2,.22);
}
.yeshiva-card > img { width: 100%; max-height: 460px; object-fit: cover; border: 3px solid var(--aqua); border-radius: 24px; }
.yeshiva-copy > span { color: var(--yellow); font-family: "Baloo 2", sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.yeshiva-copy h3 { margin: 2px 0 5px; font-family: "Baloo 2", sans-serif; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 800; line-height: 1; }
.yeshiva-role { margin: 0 0 22px; color: #c9f5ff; font-weight: 700; line-height: 1.45;}
.yeshiva-copy h4 { margin: 0 0 8px; color: var(--yellow); font-family: "Baloo 2", sans-serif; font-size: 1.5rem; font-weight: 800; }
.yeshiva-copy p:not(.yeshiva-role) { color: #f1fdff; line-height: 1.58; font-size:1.2rem;}
.pending-note { margin-top: 20px; padding: 12px 16px; border-left: 4px solid var(--yellow); border-radius: 8px; color: var(--deep); background: var(--aqua); font-weight: 800; }

.yeshiva-fees {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.yeshiva-fee {
  min-width: 0;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  text-align: center;
  border: 2px solid rgba(255, 218, 78, .9);
  border-radius: 16px;
  color: var(--deep);
  background: var(--aqua);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .12);
}

.yeshiva-fee span {
  font-family: "Baloo 2", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.yeshiva-fee strong {
  color: #073b70;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
}

.yeshiva-fee small {
  margin-top: 2px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.15;
}

.yeshiva-contact {
  margin: 18px 0 0;
  color: #f1fdff;
  font-size: 1rem;
  line-height: 1.5;
}

.yeshiva-contact a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .yeshiva-fees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .yeshiva-fees {
    grid-template-columns: 1fr;
  }
}

.schedule {
  color: var(--deep);
  background: rgba(255, 246, 219, .50);
}
.schedule .section-heading h2 { color: var(--navy); font-family: "Baloo 2", sans-serif; font-weight: 800; text-transform: uppercase; }
.schedule .section-heading p { color: var(--yellow); }
.schedule .section-heading span { color: var(--navy); }
.schedule-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: start; }
.schedule-day { overflow: hidden; border: 3px solid var(--gold); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: 0 16px 36px rgba(64,71,48,.12); }
.schedule-day > h3 { margin: 0; padding: 18px; color: white; background: linear-gradient(100deg, var(--blue), var(--navy)); font-family: "Kaushan Script", cursive; font-size: 2.6rem; font-weight: 400; text-align: center; }
.schedule-events { padding: 10px 20px 22px; }
.schedule-event { padding: 14px 0; display: grid; grid-template-columns: 115px 1fr; gap: 15px; border-bottom: 1px solid #dbe8e6; font-size:1.2em; }
.schedule-event:last-child { border-bottom: 0; }
.schedule-event time { color: var(--orange); font-family: "Baloo 2", sans-serif; font-weight: 800; }
.schedule-event strong { display: block; font-family: "Baloo 2", sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1.15; }
.schedule-event span { display: block; margin-top: 3px; color: #597483; font-size: 1.1rem; line-height: 1.35; }
.schedule-notes {
  max-width: 1260px;
  margin: 18px auto 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.schedule-notes strong { color: var(--navy); font-family: "Baloo 2", sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; }
.schedule-notes p { margin: 3px 0 0; color: #587283; line-height: 1.45; font-size:1.1rem;}
.schedule-download { padding: 11px 18px; border-radius: 999px; color: white; background: #82929b; font-family: "Baloo 2", sans-serif; font-weight: 800; text-align: center; }

.onsite {
  max-width: 1240px;
  margin: 22px auto 0;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 30px;
  align-items: center;
  border: 3px solid var(--gold);
  border-radius: 27px;
  color: white;
  background: linear-gradient(145deg, #178cbd, #07548c);
}
.onsite-heading > span { color: var(--yellow); font-family: "Baloo 2", sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.onsite-heading h3 { margin: 3px 0 0; font-family: "Baloo 2", sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; line-height: 1; text-transform: uppercase; }
.onsite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.onsite-grid article { padding: 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 17px; background: rgba(4,57,106,.42); }
.onsite-grid h4 { margin: 0 0 7px; color: var(--yellow); font-family: "Baloo 2", sans-serif; font-size: 1.2rem; font-weight: 800; }
.onsite-grid span { display: block; color: #e8fcff; font-size: 1rem; line-height: 1.55; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary {
    width: 46px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { width: 26px; height: 3px; border-radius: 4px; background: var(--deep); }
  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    width: 225px;
    padding: 12px;
    display: grid;
    gap: 3px;
    border: 2px solid var(--gold);
    border-radius: 18px;
    color: var(--deep);
    background: white;
    box-shadow: 0 18px 35px rgba(3, 39, 78, .22);
  }
  .mobile-nav nav a { padding: 11px 13px; border-radius: 10px; font-family: "Baloo 2", sans-serif; font-weight: 700; }
  .mobile-nav nav a:last-child { color: var(--deep); background: var(--gold); }
  .hero { padding-top: 98px; }
  .hero-actions { margin-top: -15px; }
  .featured-artist { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-card:last-child { grid-column: auto; }
  .welcome { grid-template-columns: 1fr; }
  .welcome-main { max-width: 900px; margin-inline: auto; text-align: center; }
  .welcome-lead { margin-inline: auto; }
  .video-placeholder { max-width: 560px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-day { max-width: 820px; width: 100%; margin-inline: auto; }
  .schedule-notes { grid-template-columns: 1fr 1fr; }
  .schedule-download { grid-column: span 2; }
  .leadership { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-column: span 2; min-height: 300px; }
}

@media (max-width: 640px) {
  body {
    background-size: auto 100vh;
    background-position: center top;
  }
  .site-header { min-height: 66px; padding: 7px 17px; border-bottom-width: 3px; }
  .brand img { width: 116px; }
  .hero { padding: 95px 0 30px; }
  .hero-art-wrap {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .mobile-hero-copy {
    min-height: 570px;
    position: relative;
    padding: 25px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border: 2px solid rgba(255, 219, 77, .65);
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(180deg, rgba(6,79,139,.95) 0 31%, rgba(74,191,201,.92) 31% 66%, rgba(255,172,45,.95) 66% 100%);
    box-shadow: 0 18px 45px rgba(4, 53, 94, .28);
  }
  .mobile-conference-name {
    margin: 0;
    font-family: "Baloo 2", sans-serif;
    font-size: clamp(.95rem, 4.4vw, 1.2rem);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .mobile-wordmark {
    width: 100%;
    min-height: 260px;
    position: relative;
    margin-top: 24px;
    display: grid;
    place-content: center;
  }
  .mobile-wordmark::after {
    content: "";
    position: absolute;
    right: -85px;
    top: -25px;
    width: 260px;
    height: 300px;
    opacity: .55;
    background: url("assets/star-mark.png") center / contain no-repeat;
  }
  .hebrew-mark {
    position: absolute;
    inset: 30px 0 auto;
    color: rgba(255,255,255,.2);
    font-family: serif;
    font-size: 5.5rem;
    line-height: 1;
  }
  .mobile-wordmark strong {
    position: relative;
    z-index: 2;
    color: var(--gold);
    font-family: "Kaushan Script", cursive;
    font-size: clamp(3.4rem, 17vw, 5.3rem);
    font-weight: 400;
    line-height: .88;
    text-shadow: 0 4px 0 rgba(3, 70, 116, .18);
  }
  .mobile-wordmark small {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    color: var(--yellow);
    font-family: "Baloo 2", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .mobile-hero-copy blockquote { margin: auto 0 18px; font-size: .98rem; font-style: italic; line-height: 1.35; }
  .mobile-hero-copy cite { display: block; margin-top: 4px; color: var(--deep); font-family: "Baloo 2", sans-serif; font-style: normal; font-weight: 800; text-transform: uppercase; }
  .mobile-date {
    width: calc(100% - 12px);
    padding: 12px;
    border: 2px solid #ef9e1f;
    border-radius: 14px;
    color: var(--deep);
    background: var(--gold);
    font-family: "Baloo 2", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .hero-actions {
    width: calc(100% - 30px);
    margin: 15px auto 0;
    padding: 16px;
    display: grid;
    text-align: center;
  }
  .hero-actions > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .button { min-height: 45px; padding: 0 14px; font-size: .92rem; }
 .community-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100px;
  padding: 10px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;

  border-top: 5px solid var(--orange);
  border-bottom: 5px solid var(--gold);
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--yellow),
    var(--orange)
  );

  overflow: hidden;
}

.community-strip > * {
  min-width: 0;
}

.community-strip img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
  .community-photo { scroll-snap-align: start; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .featured-artist { padding: 11px 11px 25px; border-radius: 24px; }
  .featured-image, .featured-image img { min-height: 275px; }
  .featured-copy { padding: 8px 10px 0; }
  .featured-copy h3 { font-size: 2.9rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 225px; }
  .singles-banner { align-items: flex-start; }
  .singles-banner > span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .welcome-leaders { grid-template-columns: 1fr; }
  .welcome-leaders article {
    grid-template-columns: 144px minmax(0, 1fr);
    min-height: 168px;
    gap: 14px;
    text-align: left;
  }

  .welcome-leaders img {
    width: 144px;
    height: 144px;
  }
  .video-placeholder { max-width: 420px; }
  .yeshiva-card { grid-template-columns: 1fr; }
  .yeshiva-card > img { max-width: 300px; margin-inline: auto; }
  .schedule-event { grid-template-columns: 1fr; gap: 2px; }
  .schedule-notes { grid-template-columns: 1fr; }
  .schedule-download { grid-column: auto; }
  .onsite { grid-template-columns: 1fr; }
  .onsite-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .contact-card { grid-column: auto; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


.artist-card--6steps img {
    object-position: left center;
}

.artist-card img {
    object-position: left center;
}

@media (max-width: 400px) {
  .welcome-leaders article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: end;
}

/* Tarjetas de los rabinos */
.welcome-leaders article {
  min-height: 192px;
  padding: 14px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  border: 2px solid var(--yellow);
  border-radius: 20px;

  color: #fff;
  background: linear-gradient(
    145deg,
    var(--blue),
    var(--navy)
  );

  box-shadow: 0 14px 30px rgba(3, 39, 78, 0.18);
}

.welcome-leaders img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: #f3d79e;
}

.welcome-leaders h3 {
  color: #fff;
}

.welcome-leaders p {
  color: rgba(255, 255, 255, 0.82);
}

/* Video más grande y alineado con la parte inferior de las tarjetas */
.video-placeholder {
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: end;
  aspect-ratio: 16 / 9;

  overflow: hidden;
  border: 3px solid var(--gold);
  border-radius: 28px;
  background: var(--deep);
  box-shadow: 0 18px 42px rgba(47, 65, 58, 0.2);
}

@media (max-width: 1050px) {
  .welcome {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .video-placeholder {
    width: 100%;
    max-width: 760px;
    margin: 10px auto 0;
  }
}

@media (max-width: 640px) {
  .welcome-leaders {
    grid-template-columns: 1fr;
  }

  .welcome-leaders article {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: 164px;
  }

  .welcome-leaders img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 400px) {
  .welcome-leaders article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.welcome-leaders {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.welcome-leaders article {
    min-width: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 2px solid var(--gold);
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--navy)
    );
}

/* Círculo limpio con borde blanco */
.leader-photo {
    width: 168px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #28aeda;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* La ampliación mínima oculta el aro naranja original */
.welcome-leaders .leader-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: scale(1.03);
}

.welcome-leaders h3 {
    margin: 0 0 4px;
    color: #fff;
    font-family: "Baloo 2", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.welcome-leaders p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .welcome-leaders {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .welcome-leaders article {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 14px;
        padding: 12px;
    }

    .leader-photo {
        width: 110px;
    }

    .welcome-leaders h3 {
        font-size: 1rem;
    }

    .welcome-leaders p {
        font-size: 0.82rem;
    }
}

@media (max-width: 760px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    grid-template-columns: 125px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .artist-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 11px;
    padding: 7px;
  }

  .artist-card > img {
    height: auto;
    border-radius: 12px;
  }

  .artist-card > div {
    padding: 4px 5px 4px 0;
  }

  .artist-card h3 {
    font-size: 1rem;
  }

  .artist-card p {
    font-size: .75rem;
    line-height: 1.3;
  }
}
