/* נוכחות Express · בראל צילום
   צבעי המותג מתוך "עזרים/קובץ מיתוג.docx" · פונט Rubik */

:root {
  --bg: #faf8f5;
  --text: #655d58;
  --pink: #e6c2bf;
  --tan: #c9ad7f;

  /* גוונים שנגזרים רק מארבעת צבעי המותג */
  --ink: var(--text); /* כל הטקסט הכהה בחום המותג, בלי שחור */
  --muted: color-mix(in oklab, var(--text) 78%, var(--bg));
  --line: color-mix(in oklab, var(--text) 16%, var(--bg));
  --blush: color-mix(in oklab, var(--pink) 22%, var(--bg));
  --blush-deep: color-mix(in oklab, var(--pink) 45%, var(--bg));
  --tan-soft: color-mix(in oklab, var(--tan) 18%, var(--bg));

  --radius: 18px;
  --gutter: clamp(20px, 5vw, 56px);
  --max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rubik", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0; font-weight: 300; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 7vw, 3.25rem); }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; top: 12px; right: 12px; z-index: 50; background: var(--bg); padding: 8px 14px; border-radius: 8px; transform: translateY(-300%); }
.skip:focus { transform: none; }
:focus-visible { outline: 2px solid var(--tan); outline-offset: 3px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: .12em; color: var(--tan);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px;
  border: 0; border-radius: 999px;
  background: var(--pink); color: var(--ink);
  font: 500 17px/1 "Rubik", sans-serif; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s;
  box-shadow: 0 14px 30px -18px color-mix(in oklab, var(--text) 60%, transparent);
}
.btn:hover { background: color-mix(in oklab, var(--pink) 82%, var(--tan)); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.btn--dark { background: var(--text); color: var(--bg); }
.btn--dark:hover { background: color-mix(in oklab, var(--text) 88%, var(--tan)); }
.btn--block { width: 100%; }

.link {
  font-weight: 500; text-decoration: underline; text-decoration-color: var(--pink);
  text-decoration-thickness: 2px; text-underline-offset: 5px;
}
.link:hover { text-decoration-color: var(--tan); }

/* ---------- סרגל עליון ---------- */
.topbar {
  position: absolute; inset: 0 0 auto; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
}

.topbar__logo img { width: 150px; height: auto; }
.icon-link {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: var(--text); transition: background-color .2s;
}
.icon-link:hover { background: var(--blush); }
.icon-link svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 76px; }
.hero__grid { display: grid; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 70% 30%;
}
/* הכותרת יושבת בשטח הריק שבצד שמאל-למעלה של התמונה */
.hero__title {
  position: absolute; top: 7%; left: var(--gutter); max-width: 52%;
  text-align: left; direction: rtl;
}
.hero__title h1 {
  font-size: clamp(2.6rem, 12vw, 6.4rem); line-height: .95; font-weight: 300;
}
.hero__title h1 span { display: block; }
.hero__title h1 .en { font-weight: 400; color: var(--tan); letter-spacing: .01em; }
.hero__body { padding: 36px var(--gutter) 8px; }
.hero__sub { font-size: clamp(1.25rem, 4.6vw, 1.6rem); line-height: 1.5; color: var(--ink); font-weight: 300; margin: 0; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 18px 0 26px; padding: 0; list-style: none;
  font-weight: 500; color: var(--text);
}
.hero__facts li { display: inline-flex; align-items: center; gap: 14px; }
.hero__facts li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
.hero__text { color: var(--muted); max-width: 34em; }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  margin: 28px 0 22px; font-size: 15px; font-weight: 500; letter-spacing: .04em; color: var(--ink);
}
.hero__meta span + span::before { content: "·"; margin-inline-end: 18px; color: var(--tan); }

@media (min-width: 900px) {
  .hero { padding-top: 96px; }
  .hero__grid {
    max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter);
    grid-template-columns: 1.1fr 1fr; align-items: end; gap: 0;
  }
  .hero__media img { aspect-ratio: 2 / 3; border-radius: var(--radius); object-position: center; }
  .hero__title { top: 10%; left: 0; max-width: 60%; }
  .hero__body { padding: 0 0 36px; padding-inline-start: 64px; }
  /* בדסקטופ הכותרת "חוצה" את הגבול בין התמונה לטקסט */
  .hero__title { left: -38%; max-width: none; }
}

/* ---------- אזורי תוכן ---------- */
.section { padding-block: clamp(72px, 12vw, 140px); }
.section--tight { padding-block: clamp(56px, 9vw, 110px); }
.section__head { margin-bottom: clamp(26px, 5vw, 44px); }
.section__head .eyebrow { margin-bottom: 14px; }
.lead { font-size: clamp(1.1rem, 3.6vw, 1.3rem); line-height: 1.75; color: var(--ink); font-weight: 300; }
.prose { color: var(--muted); max-width: 36em; }
.prose strong { color: var(--ink); font-weight: 500; }

.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 88px; }
  .split--media-first .split__media { order: -1; }
}

/* וידאו */
.video-frame {
  position: relative; width: min(100%, 380px); margin-inline: auto;
  border-radius: 28px; overflow: hidden; background: var(--blush);
  box-shadow: 0 40px 80px -50px color-mix(in oklab, var(--text) 70%, transparent);
}
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.video-frame__tag {
  position: absolute; bottom: 16px; right: 16px;
  padding: 6px 14px; border-radius: 999px; background: color-mix(in oklab, var(--bg) 88%, transparent);
  font-size: 13px; font-weight: 500; color: var(--ink); backdrop-filter: blur(6px);
}
.soft-blob { position: relative; }
.soft-blob::before {
  content: ""; position: absolute; inset: 8% -6% -6% 10%; z-index: -1;
  border-radius: 48% 52% 44% 56% / 55% 45% 55% 45%; background: var(--blush);
}

/* קולאז' "ומה קורה כשאת מגיעה" */
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.collage figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--blush); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .c-main { grid-column: 1 / -1; }
.collage .c-main img { aspect-ratio: 4 / 5; object-position: center 30%; }
.collage .c-a img, .collage .c-b img { aspect-ratio: 3 / 4; }
.collage .c-b { margin-top: 36px; }
.collage figcaption {
  padding: 10px 4px 0; font-size: 13px; color: var(--muted); background: var(--bg);
}
@media (min-width: 900px) {
  .collage { grid-template-columns: 1.2fr 1fr; gap: 18px; }
  .collage .c-main { grid-column: 1; grid-row: 1 / span 2; }
  .collage .c-main img { aspect-ratio: 3 / 4.3; }
  .collage .c-b { margin-top: 0; }
}

/* מה מחכה לך */
.includes { list-style: none; margin: 0; padding: 0; counter-reset: inc; }
.includes li {
  counter-increment: inc;
  display: grid; grid-template-columns: 44px 1fr; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1.1rem, 3.8vw, 1.35rem); color: var(--ink); font-weight: 300;
}
.includes li::before {
  content: "0" counter(inc); font-size: 13px; font-weight: 500; color: var(--tan); letter-spacing: .06em;
}
.offer-line {
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center;
  margin: 36px 0 28px; font-size: clamp(1.3rem, 4.6vw, 1.75rem); color: var(--ink); font-weight: 300;
}
.offer-line i { width: 1px; height: .9em; background: var(--pink); }
.includes-wrap { max-width: 760px; }

/* היי, אני בראל */
.about__photo { position: relative; max-width: 420px; margin-inline: auto; }
.about__photo img { border-radius: 140px 140px var(--radius) var(--radius); aspect-ratio: 4 / 5.6; object-fit: cover; object-position: 35% 20%; width: 100%; }

/* המלצות (מוסתר עד שיהיו המלצות אמיתיות) */
.quotes[hidden] { display: none; }

/* ---------- הרשמה ---------- */
.signup { background: var(--blush); border-radius: clamp(28px, 6vw, 56px) clamp(28px, 6vw, 56px) 0 0; }
.signup__inner { max-width: 640px; margin-inline: auto; }
.signup h2 { text-align: center; }
.signup .section__head { text-align: center; }
.signup .prose { margin-inline: auto; text-align: center; }
.signup__date {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 16px; margin-top: 22px;
  font-weight: 500; color: var(--ink);
}
.signup__date span + span::before { content: "·"; margin-inline-end: 16px; color: var(--tan); }

.step-label { display: flex; align-items: center; gap: 12px; margin: 40px 0 16px; font-weight: 500; color: var(--ink); }
.step-label b {
  display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); color: var(--tan); font-size: 14px; font-weight: 500;
}

.slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 0; padding: 0; border: 0; }
@media (min-width: 560px) { .slots { grid-template-columns: repeat(5, 1fr); } }
.slot {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 72px; padding: 10px 6px; border-radius: 16px;
  background: var(--bg); border: 1.5px solid transparent; color: var(--ink);
  font: inherit; cursor: pointer; transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.slot:hover:not([disabled]) { border-color: var(--pink); transform: translateY(-1px); }
.slot__time { font-size: 21px; font-weight: 400; line-height: 1.2; font-variant-numeric: tabular-nums; }
.slot__note { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.slot[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }
.slot[aria-pressed="true"] .slot__note { color: color-mix(in oklab, var(--bg) 80%, var(--text)); }
.slot[disabled] { cursor: not-allowed; background: transparent; border: 1.5px dashed var(--blush-deep); color: var(--muted); }
.slot[disabled] .slot__time { text-decoration: line-through; text-decoration-color: var(--pink); opacity: .7; }
.slots--loading .slot { animation: pulse 1.4s ease-in-out infinite; color: transparent; cursor: default; }
@keyframes pulse { 50% { opacity: .55; } }
/* 5 פריטים בשתי עמודות: הפריט האחרון מתפרס לרוחב */
@media (max-width: 559px) { .slots .slot:last-child:nth-child(odd) { grid-column: 1 / -1; } }

.notice {
  margin-top: 16px; padding: 14px 18px; border-radius: 14px;
  background: var(--bg); color: var(--ink); font-size: 15px; line-height: 1.6;
}
.notice[hidden] { display: none; }

.form { position: relative; display: grid; gap: 16px; }
.form[hidden] { display: none; }
.field label { display: block; margin-bottom: 6px; font-size: 15px; font-weight: 500; color: var(--ink); }
.field input {
  width: 100%; height: 54px; padding: 0 18px; border-radius: 14px;
  border: 1.5px solid transparent; background: var(--bg); color: var(--ink);
  font: 400 17px "Rubik", sans-serif; transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--tan); }
.field input[aria-invalid="true"] { border-color: #b4574c; }
.field input[dir="ltr"] { text-align: right; }
.field__err { margin-top: 6px; font-size: 14px; color: #9c4a40; min-height: 0; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.fine { font-size: 14px; line-height: 1.6; color: var(--muted); text-align: center; margin-top: 4px; }

.held {
  margin-top: 36px; padding: 30px 24px; border-radius: 24px; background: var(--bg); text-align: center;
}
.held[hidden] { display: none; }
.held h3 { font-size: 1.6rem; font-weight: 300; margin-bottom: 10px; }
.held p { color: var(--muted); }
.held .btn { margin-top: 18px; }

.ask { text-align: center; margin-top: 44px; color: var(--muted); }
.ask a { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; color: var(--ink); }
.ask svg { width: 18px; height: 18px; }

/* ---------- שאלות נפוצות ---------- */
.faq { background: var(--blush); padding-bottom: clamp(72px, 12vw, 130px); }
.faq__inner { max-width: 760px; margin-inline: auto; border-top: 1px solid var(--blush-deep); padding-top: clamp(56px, 9vw, 90px); }
.faq h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); margin-bottom: 20px; }
.faq details { border-bottom: 1px solid var(--blush-deep); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; font-size: clamp(1.05rem, 3.6vw, 1.2rem); font-weight: 400; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-inline-end: 1.5px solid var(--tan); border-bottom: 1.5px solid var(--tan);
  transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq details > div { padding: 0 0 24px; color: var(--muted); max-width: 40em; }

/* ---------- פוטר ---------- */
.footer { padding: 56px var(--gutter) 110px; text-align: center; }
.footer img { width: 170px; margin: 0 auto 18px; }
.footer__links { display: flex; justify-content: center; gap: 6px; margin-bottom: 10px; }
.footer small { font-size: 13px; color: var(--muted); }

/* ---------- CTA צף במובייל ---------- */
.float-cta {
  position: fixed; inset: auto 12px 12px; z-index: 20;
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.float-cta.is-visible { transform: none; }
.float-cta .btn { width: 100%; }
@media (min-width: 900px) { .float-cta { display: none; } }

/* ---------- אנימציית כניסה עדינה ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slots--loading .slot { animation: none; }
}

/* ---------- עמוד תודה ---------- */
.thanks { min-height: 100svh; display: grid; place-items: center; padding: 110px var(--gutter) 60px; text-align: center; }
.thanks__card { max-width: 560px; }
.thanks__heart {
  width: 84px; height: 84px; margin: 0 auto 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: 34px; background: var(--blush);
}
.thanks h1 { font-size: clamp(2.2rem, 9vw, 3.6rem); margin-bottom: 18px; }
.thanks .lead { margin-bottom: 14px; }
.thanks__facts {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px;
  margin: 24px 0 34px; padding: 12px 22px; border-radius: 999px; background: var(--tan-soft);
  font-weight: 500; color: var(--ink);
}
.thanks__facts span + span::before { content: "·"; margin-inline-end: 16px; color: var(--tan); }
.thanks__links { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: var(--ink); cursor: pointer; }
