/* =========================================================
   קרן מסטר — אתר תדמית | מערכת עיצוב מתוך context/design-system/design.md
   משפחת צבע: חמה (מסע, נחישות, פעולה) + ניטרלי בסיס
   ========================================================= */

:root {
  /* ניטרלי בסיס */
  --cream: #F6F0E2;
  --sand: #EDE3CE;
  --charcoal: #221F1B;
  --ink-soft: #4b463d;
  --ink-faint: #8a8375;

  /* משפחה חמה */
  --gold: #F6AB25;
  --gold-light: #F4B133;
  --terracotta: #D9974F;
  --wood: #B08D57;
  --field-green: #8A9A6B;
  --olive-deep: #5C5B3E;

  /* ניצוץ קריר יחיד (פוטר בלבד) */
  --navy: #2B3A4A;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-w: 1080px;
  --nav-h: 72px;

  --shadow-card: 0 8px 28px rgba(34, 31, 27, 0.12);
  --shadow-soft: 0 2px 10px rgba(34, 31, 27, 0.08);

  --font-display: 'Heebo', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-brand: 'Assistant', sans-serif;
  --font-hand: 'Playpen Sans Hebrew', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

section {
  padding: 88px 0;
  scroll-margin-top: var(--nav-h);
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
}

.section-sand { background: var(--sand); }

h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.2;
  text-wrap: balance;
  margin: 0 0 18px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: none;
  color: var(--wood);
  margin-bottom: 14px;
}

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--field-green);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(138, 154, 107, 0.35);
}

.btn-primary:hover { box-shadow: 0 10px 24px rgba(138, 154, 107, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--wood);
}

.btn-ghost:hover { background: rgba(176, 141, 87, 0.12); }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn .wa-glyph { width: 20px; height: 20px; flex-shrink: 0; }

/* =========================================================
   ניווט קבוע
   ========================================================= */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(246, 240, 226, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-nav.scrolled {
  background: rgba(246, 240, 226, 0.97);
  border-bottom-color: rgba(176, 141, 87, 0.35);
  box-shadow: 0 4px 20px rgba(34, 31, 27, 0.07);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img { width: 46px; height: auto; }

.nav-brand .brand-text {
  font-family: var(--font-brand);
  font-weight: 300;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  color: var(--olive-deep);
  line-height: 1.3;
}

.nav-brand .brand-text b { font-weight: 600; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}

.nav-links a:hover { border-bottom-color: var(--gold); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-brand .brand-text { font-size: 0.8rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  line-height: 1.18;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero h1 .hl-green { color: var(--field-green); }
.hero h1 .hl-gold { color: var(--gold-light); }

.hero .subline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.hero-meta span { white-space: nowrap; }
.hero-meta span + span::before { content: "·"; margin-inline-end: 16px; color: var(--wood); }

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .hero .grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { order: -1; max-width: 420px; margin: 0 auto; }
}

/* =========================================================
   בלוק פתיחה (מתח אישי)
   ========================================================= */
.opening {
  text-align: center;
}

.opening .lines {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.9;
  color: var(--charcoal);
}

.opening .lines p { margin: 0 0 6px; }

.opening .lines .accent {
  font-family: var(--font-hand);
  color: var(--terracotta);
  font-size: 1.15em;
}

/* =========================================================
   למי זה מתאים — רשימה ממוספרת
   ========================================================= */
.fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.fit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fit-item .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2ch;
}

.fit-item p { margin: 0; font-size: 1.02rem; }

@media (max-width: 700px) {
  .fit-list { grid-template-columns: 1fr; gap: 22px; }
}

/* =========================================================
   השיטה — 3 כרטיסים
   ========================================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  background: var(--cream);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}

.section-sand .method-card { background: #fff; border-color: transparent; box-shadow: var(--shadow-soft); }

.method-card .k {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.82rem;
  color: var(--wood);
  display: block;
  margin-bottom: 8px;
}

.method-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.method-card p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

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

/* =========================================================
   המסע — שלבים
   ========================================================= */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}

.journey-step .badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--wood);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin: 2px 0 6px;
}

.journey-step p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-inline-start: 30px;
  font-size: 1.02rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.05em;
  color: var(--field-green);
  font-weight: 700;
}

@media (max-width: 700px) {
  .benefits-list { grid-template-columns: 1fr; }
}

.journey-note {
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.journey-note strong { color: var(--charcoal); }

/* =========================================================
   עליי
   ========================================================= */
.about-card {
  background: var(--sand);
  border: 2px dashed var(--wood);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.about-card .grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  color: var(--olive-deep);
  margin: 0 0 4px;
}

.about-role {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wood);
  margin: 0 0 18px;
}

.about-text p { margin: 0 0 14px; font-size: 0.99rem; }

.about-script {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--terracotta);
  margin: 6px 0 20px !important;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.about-tag {
  background: var(--cream);
  border: 1.5px dashed var(--wood);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--olive-deep);
}

@media (max-width: 820px) {
  .about-card { padding: 28px; }
  .about-card .grid { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   עדויות
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 14px;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terracotta);
}

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

/* =========================================================
   שאלות נפוצות
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--olive-deep);
}

.faq-item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* =========================================================
   וואטסאפ צף
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--field-green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(34, 31, 27, 0.25);
  z-index: 90;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(34, 31, 27, 0.3); }

.wa-float .wa-glyph { width: 28px; height: 28px; }

/* =========================================================
   סגירה
   ========================================================= */
.closing {
  text-align: center;
}

.closing h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }

.closing .formula {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* =========================================================
   צור קשר + טופס
   ========================================================= */
.contact .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-intro h2 { text-align: right; }

.contact-intro p { font-size: 1.05rem; color: var(--ink-soft); }

.contact-alt {
  margin-top: 24px;
  font-size: 0.96rem;
}

.contact-alt a { color: var(--olive-deep); font-weight: 700; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 34px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.form-field label .opt { font-weight: 400; color: var(--ink-faint); }

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid rgba(176, 141, 87, 0.5);
  border-radius: var(--radius-sm);
  background: #fdfbf5;
  color: var(--charcoal);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--field-green);
  box-shadow: 0 0 0 3px rgba(138, 154, 107, 0.2);
}

.form-field textarea { resize: vertical; min-height: 96px; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.form-consent input { margin-top: 4px; flex-shrink: 0; }

.form-card .btn-primary { width: 100%; }

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
}

.hp { position: absolute; left: -9999px; }

@media (max-width: 820px) {
  .contact .grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-intro h2 { text-align: center; }
  .form-card { padding: 26px; }
}

/* =========================================================
   פוטר
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  color: #d9d2c4;
  padding: 48px 0 32px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer img { width: 60px; margin: 0 auto 16px; opacity: 0.9; }

.site-footer .f-brand {
  font-family: var(--font-brand);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 14px;
}

.site-footer .f-contact a { color: var(--gold-light); text-decoration: none; }
.site-footer .f-contact a:hover { text-decoration: underline; }

.site-footer .f-social {
  margin: 12px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer .f-social a { color: #d9d2c4; text-decoration: none; }
.site-footer .f-social a:hover { color: var(--cream); }

.site-footer .f-legal {
  margin-top: 18px;
  font-size: 0.78rem;
  color: #8a8375;
}

.site-footer .f-legal a { color: #a8a091; }

/* =========================================================
   דף תודה
   ========================================================= */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thanks-card {
  max-width: 520px;
}

.thanks-card img { width: 84px; margin: 0 auto 24px; }

.thanks-card h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0 0 16px;
}

.thanks-card p { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 28px; }
