/* =====================================================
   מעבר לסיפור — Design tokens
   ===================================================== */
:root {
  /* צבעים */
  --cream:        #F7F1E6;
  --cream-deep:   #EFE6D3;
  --white:        #FFFFFF;
  --green:        #7E8C6B;
  --green-dark:   #586349;
  --brown:        #6B4A36;
  --brown-deep:   #4A3324;
  --ink:          #443A30;   /* טקסט גוף */
  --gold:         #C9A35F;
  --gold-soft:    #E3CB9C;

  /* טיפוגרפיה */
  --font-display: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body:    'Heebo', 'Segoe UI', sans-serif;

  /* מרווחים */
  --section-pad: clamp(64px, 9vw, 120px);
  --container-max: 1080px;
  --container-narrow: 720px;

  --radius: 18px;
  --shadow-soft: 0 18px 40px -20px rgba(74, 51, 36, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown-deep);
  margin: 0 0 .5em;
  font-weight: 600;
  line-height: 1.3;
}

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-pad) 0; position: relative; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 1.1em;
}
.section-title.center { text-align: center; }
.section-title.small { font-size: clamp(22px, 3vw, 28px); }

.centered-text { text-align: center; max-width: 620px; margin: 0 auto 1.4em; color: var(--ink); }
.centered-text.narrow-text { max-width: 540px; }

.muted-note {
  text-align: center;
  font-size: 15px;
  color: var(--green-dark);
  opacity: .85;
}

/* =====================================================
   כפתורים
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.cta-center { text-align: center; margin-top: 36px; }

/* =====================================================
   HERO + טבעות נשימה (אלמנט החתימה)
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vh, 130px) 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 70%);
}

.breath-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  pointer-events: none;
  z-index: 0;
}
.breath-rings .ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  transform: translate(-50%, -50%) scale(1);
  animation: breathe 9s ease-in-out infinite;
}
.ring-1 { width: 420px; height: 420px; animation-delay: 0s; opacity: .55; }
.ring-2 { width: 620px; height: 620px; animation-delay: .8s; border-color: var(--green); opacity: .25; }
.ring-3 { width: 860px; height: 860px; animation-delay: 1.6s; opacity: .15; }

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.07); }
}

.breath-rings-small .ring-1 { width: 260px; height: 260px; }
.breath-rings-small .ring-2 { width: 380px; height: 380px; }
.breath-rings-small .ring-3 { width: 520px; height: 520px; }

.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.eyebrow {
  letter-spacing: .12em;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 58px);
}
.hero-title-sub {
  display: block;
  font-size: clamp(22px, 3.2vw, 30px);
  color: var(--green-dark);
  font-weight: 500;
  margin-top: .25em;
}

.hero-question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  color: var(--brown);
  margin-top: 28px;
}

.hero-text { color: var(--ink); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

.event-info {
  text-align: center;
  margin-bottom: 32px;
}
.event-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.7;
}
.event-info-light p { color: rgba(247,241,230,.92); }

.hero-image {
  margin: 48px auto 0;
  max-width: 760px;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   Placeholder boxes לתמונות
   ===================================================== */
.placeholder-box {
  border: 1.5px dashed var(--gold);
  background: rgba(201,163,95,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brown);
  font-size: 14px;
  padding: 20px;
  min-height: 160px;
}
.placeholder-portrait { aspect-ratio: 4/5; }
.placeholder-square { aspect-ratio: 1/1; }

.person-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   גלי הפרדה בין סקשנים
   ===================================================== */
.wave { line-height: 0; margin-top: -1px; }
.wave svg { width: 100%; height: 70px; display: block; }
.wave-down svg path { fill: var(--cream); }

/* =====================================================
   מי מתאים — רשימה
   ===================================================== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 16px;
}
.check-list li {
  position: relative;
  padding-right: 38px;
  font-size: 17px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: radial-gradient(circle, var(--green) 0 30%, transparent 32%);
}

/* =====================================================
   איך ייראה היום — כרטיסים
   ===================================================== */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.flow-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: right;
}
.flow-mark {
  display: block;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  margin-bottom: 18px;
}
.flow-card h3 { font-size: 19px; margin-bottom: .4em; }
.flow-card p { font-size: 15px; color: var(--ink); margin: 0; }

/* =====================================================
   ציר זמן — לו"ז
   ===================================================== */
.timeline {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-right: 2px solid var(--gold-soft);
}
.timeline li {
  position: relative;
  padding: 0 30px 28px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--cream);
}
.timeline time {
  font-weight: 700;
  color: var(--brown);
  font-size: 15px;
  white-space: nowrap;
}
.timeline span { color: var(--ink); font-size: 16px; }

/* =====================================================
   מי אנחנו
   ===================================================== */
.about-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 18px;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.person-card { text-align: center; }
.person-card h3 { margin-top: 20px; font-size: 22px; }
.person-card p { color: var(--ink); font-size: 16px; max-width: 320px; margin: 0 auto; }

/* =====================================================
   מיקום
   ===================================================== */
.location-video {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9/16;
  margin: 36px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--brown-deep);
}
.location-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.info-card h4 { font-size: 16px; margin-bottom: .5em; color: var(--green-dark); }
.info-card p { color: var(--ink); font-size: 14px; line-height: 1.6; margin: 0; }

/* =====================================================
   מחיר
   ===================================================== */
.price-event-note {
  text-align: center;
  font-size: 15px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 28px;
}

.price-list {
  max-width: 560px;
  margin: 0 auto 18px;
  border-top: 1px solid var(--cream-deep);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--cream-deep);
}
.price-row-info h4 {
  font-size: 17px;
  margin: 0 0 .25em;
  color: var(--brown-deep);
}
.price-row-date {
  font-size: 14px;
  color: var(--ink);
  opacity: .75;
  margin: 0;
}
.price-row-amount {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brown-deep);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.price-row-amount span { font-size: 16px; margin-right: 3px; }

.price-recommend-note {
  text-align: center;
  font-size: 15px;
  color: var(--green-dark);
  margin-bottom: 44px;
}

.includes-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.includes-box h4 { text-align: center; font-size: 18px; margin-bottom: 18px; }
.includes-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.includes-box li { position: relative; padding-right: 26px; font-size: 15px; }
.includes-box li::before {
  content: "✓";
  position: absolute; right: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}

/* =====================================================
   שאלות נפוצות
   ===================================================== */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--cream);
  border-radius: 14px;
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--brown-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  width: 9px; height: 9px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .chev { transform: rotate(225deg); }
.faq-item p { padding-bottom: 18px; margin: 0; color: var(--ink); font-size: 15px; }

/* =====================================================
   סגירה
   ===================================================== */
.closing {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--brown-deep) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.closing .ring { border-color: rgba(247,241,230,.25); }
.closing .ring-2 { border-color: rgba(201,163,95,.3); }
.closing-title {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 42px);
  position: relative; z-index: 1;
}
.closing .centered-text { color: rgba(247,241,230,.9); position: relative; z-index: 1; }
.closing .event-info { position: relative; z-index: 1; }
.closing .btn { position: relative; z-index: 1; }

.footer {
  text-align: center;
  padding: 28px 0 110px;
  font-size: 13px;
  background: var(--brown-deep);
  color: rgba(247,241,230,.65);
}

/* =====================================================
   כפתור וואטסאפ צף
   ===================================================== */
.floating-wa {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 50;
  transition: transform .2s ease, background .2s ease;
}
.floating-wa:hover { background: var(--green-dark); transform: scale(1.06); }

/* =====================================================
   נגישות: תנועה מופחתת
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .breath-rings .ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   רספונסיביות — מובייל
   ===================================================== */
@media (max-width: 920px) {
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .flow-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .location-video { max-width: 280px; }
  .info-cards { grid-template-columns: 1fr; }
  .price-row { flex-wrap: wrap; }
  .price-row-amount { font-size: 24px; }
  .timeline li { grid-template-columns: 100px 1fr; }
  .includes-box { padding: 28px 22px; }
  .btn { width: 100%; }
  .ring-1, .ring-2, .ring-3 { display: none; }
  .breath-rings-small .ring-1 { display: block; width: 220px; height: 220px; }
}
