/* ============================================================
   דניאל זזון — מערכת עיצוב "מינימליזם עריכתי חם"
   שמנת · אספרסו · נגיעת זהב עמום. הצבע מגיע מהצילומים.
   ============================================================ */

/* ---------- פונטים (אחסון עצמי, תת-קבוצה עברית) ---------- */
@font-face {
  font-family: "Frank Ruhl Libre";
  src: url("../fonts/frank-ruhl-libre-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Frank Ruhl Libre";
  src: url("../fonts/frank-ruhl-libre-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Assistant";
  src: url("../fonts/assistant-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Assistant";
  src: url("../fonts/assistant-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

/* ---------- אסימוני עיצוב ---------- */
:root {
  --cream: #fcfbf9;
  --cream-deep: #ece6db;
  --taupe: #bbaa93;
  --taupe-soft: #e3dacb;
  --espresso: #3b2f2a;
  --espresso-soft: #5f5149;
  --gold: #c5a253;
  --gold-faint: rgba(197, 162, 83, 0.35);

  --serif: "Frank Ruhl Libre", "David Libre", serif;
  --sans: "Assistant", "Arial Hebrew", sans-serif;

  --measure: 34rem;          /* עד ~60 תווים בשורה */
  --wrap: 72rem;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --section: clamp(5rem, 12vw, 8.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius: 10px;
}

/* ---------- בסיס ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 1.0625rem; /* 17px */
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body > main {
  flex: 1;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--taupe-soft);
}

:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: -100vw;
  top: 0;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus {
  inset-inline-start: 0;
}

/* מספרים, טלפונים ומותגים לועזיים בתוך משפט עברי */
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* ---------- טיפוגרפיה ---------- */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.25rem);
  letter-spacing: -0.015em;
}
h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

p {
  margin: 0 0 1.25rem;
  max-width: var(--measure);
}

strong {
  font-weight: 600;
}

.overline {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--espresso-soft);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.overline::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.lead {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--espresso-soft);
}

.muted {
  color: var(--espresso-soft);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--gold-faint);
  margin: 0;
}

/* ---------- פריסה ---------- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section {
  padding-block: var(--section);
}

.section-alt {
  background: var(--cream-deep);
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 60rem) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem; /* 48px — יעד מגע */
  padding: 0.8rem 2.1rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--espresso);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 300ms var(--ease), color 300ms var(--ease),
    border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.btn-note {
  display: block;
  font-size: 0.85rem;
  color: var(--espresso-soft);
  margin-top: 0.6rem;
}

/* ---------- כותרת עליונה ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 251, 249, 0.92);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-faint);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--espresso-soft);
}

.site-nav {
  display: none;
  gap: 1.9rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso-soft);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 250ms var(--ease), border-color 250ms var(--ease);
}
.site-nav a:hover {
  color: var(--espresso);
  border-bottom-color: var(--gold);
}

.header-cta {
  display: none;
}

@media (min-width: 60rem) {
  .site-nav,
  .header-cta {
    display: inline-flex;
  }
}

/* ---------- גיבור ---------- */
.hero {
  padding-block: clamp(3.5rem, 9vw, 7rem);
}

.hero-inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 60rem) {
  .hero-inner {
    grid-template-columns: 7fr 5fr;
  }
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero-second-audience {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gold-faint);
  max-width: var(--measure);
}
.hero-second-audience p {
  margin: 0 0 0.35rem;
}
.hero-second-audience a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.hero-figure {
  position: relative;
}
.hero-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--espresso-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* ---------- סליידר לפני/אחרי ---------- */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.ba-slider img {
  width: 100%;
  pointer-events: none;
}
.ba-top {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-top img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
}
.ba-handle::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="16" viewBox="0 0 24 16"><path d="M9 3 L4 8 L9 13 M15 3 L20 8 L15 13" fill="none" stroke="%233b2f2a" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-color: var(--cream);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--espresso);
}
html[dir="rtl"] .ba-handle::after {
  transform: translate(50%, -50%);
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso-soft);
}

.heal-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--espresso);
  border: 1px solid var(--gold-faint);
  border-radius: 100px;
  padding: 0.3rem 0.95rem;
  margin-top: 0.9rem;
}

/* ---------- גלריה ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 60rem) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.work-grid a {
  display: block;
}

/* ---------- חבילה / טיפול הדגל ---------- */
.package-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  max-width: var(--measure);
}
.package-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gold-faint);
  display: flex;
  gap: 1rem;
}
.package-list li::before {
  content: "—";
  color: var(--gold);
  flex: none;
}

/* ---------- אודות ---------- */
.signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--espresso-soft);
}
.signature small {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--espresso-soft);
  margin-top: 0.25rem;
}

/* ---------- טופס הקורס ---------- */
.course-form {
  display: grid;
  gap: 1.1rem;
  max-width: 26rem;
  margin-top: 2.25rem;
}
.course-form label {
  font-size: 0.9rem;
  font-weight: 600;
  display: grid;
  gap: 0.45rem;
}
.course-form input {
  font: inherit;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--taupe);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  min-height: 3rem;
}
.course-form input:focus-visible {
  border-color: var(--gold);
  outline: 2px solid var(--espresso);
  outline-offset: 2px;
}
.form-hidden {
  display: none;
}

/* ---------- שאלות ותשובות ---------- */
.faq {
  max-width: 44rem;
  margin-top: 2.5rem;
}
.faq details {
  border-bottom: 1px solid var(--gold-faint);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  color: var(--espresso-soft);
  font-size: 1.4rem;
  transition: transform 300ms var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding-bottom: 1.4rem;
  color: var(--espresso-soft);
}

/* ---------- וואטסאפ צף ---------- */
.wa-float {
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--espresso);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  min-height: 3rem;
  border: 1px solid var(--espresso);
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(59, 47, 42, 0.12);
  transition: box-shadow 300ms var(--ease), border-color 300ms var(--ease), opacity 300ms var(--ease);
}
.js .wa-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.menu-open .wa-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.js body.past-hero .wa-float,
body.past-hero .wa-float {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wa-float:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(59, 47, 42, 0.12), 0 0 0 1px var(--gold);
}
.wa-float svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

/* ---------- פוטר ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding-block: 4rem 5.5rem;
  font-size: 0.95rem;
}
.site-footer a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 242, 0.25);
  transition: border-color 250ms var(--ease);
}
.site-footer a:hover {
  border-bottom-color: var(--gold);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 60rem) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.site-footer .brand {
  color: var(--cream);
}
.site-footer .brand small {
  color: var(--taupe);
}
.footer-legal a {
  display: inline-block;
  padding-block: 0.55rem;
}

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 162, 83, 0.25);
  color: var(--taupe);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}

/* ---------- תפריט מובייל ---------- */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: 1px solid var(--gold-faint);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--espresso);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 60rem) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  display: none;
  flex-direction: column;
  padding: 1.2rem var(--pad) 3rem;
}
.mobile-menu.is-open {
  display: flex;
  overflow-y: auto;
}
.mobile-menu .mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.25rem;
  border-bottom: 1px solid var(--gold-faint);
}
.mobile-menu nav {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  text-decoration: none;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--gold-faint);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mobile-menu nav a small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  /* היה --taupe (#bbaa93, 2.19:1) — נכשל WCAG AA. #5f5149 עובר 4.5:1 על רקע שמנת. */
  color: #5f5149;
}
.mobile-menu .mm-cta {
  margin-top: auto;
  display: grid;
  gap: 0.8rem;
}
body.menu-open {
  overflow: hidden;
}

/* ---------- שאלון הגבות ---------- */
.quiz {
  max-width: 34rem;
}
.js .quiz-step {
  display: none;
}
.js .quiz-step.is-active {
  display: block;
}
.quiz-q {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 1.4rem;
}
.quiz-options {
  display: grid;
  gap: 0.7rem;
}
.quiz-options button {
  font: inherit;
  text-align: start;
  background: var(--cream);
  color: var(--espresso);
  border-radius: var(--radius);
  border: 1px solid var(--taupe);
  padding: 0.9rem 1.2rem;
  min-height: 3rem;
  cursor: pointer;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.quiz-options button:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.quiz-progress {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}
.quiz-progress i {
  width: 2rem;
  height: 2px;
  background: var(--taupe-soft);
}
.quiz-progress i.done {
  background: var(--gold);
}
.quiz-result p {
  margin-bottom: 1.5rem;
}

/* ---------- עמוד קמפיין ---------- */
.campaign-hero {
  min-height: 88vh;
  min-height: 88svh;
  display: grid;
  align-content: center;
}

/* ---------- שכבת מגזין (שדרוג 5.7) ---------- */

/* מספור סקשנים עריכתי — אף מתחרה לא עושה */
.overline .sec-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--espresso-soft);
  letter-spacing: 0.05em;
}

/* מסגרת זהב מוסטת מאחורי תמונות — יוקרה שקטה */
.img-frame {
  position: relative;
}
.img-frame::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold-faint);
  border-radius: 14px;
  z-index: 0;
  pointer-events: none;
}
.img-frame img {
  position: relative;
  z-index: 1;
  border-radius: 14px;
}

/* פס אמון מבני — קרבה במקום נפח */
.trust-strip {
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.5rem;
}
.trust-strip li {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--espresso-soft);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.trust-strip li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}

/* ציטוט ענק עם גרש זהב */
.pullquote {
  position: relative;
  padding-top: 3.5rem;
}
.pullquote::before {
  content: "”";
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(50%);
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
}

/* זום איטי בגלריה — תחושה יקרה */
.work-grid a,
.work-grid figure {
  overflow: hidden;
  border-radius: 14px;
}
.work-grid img {
  transition: transform 700ms var(--ease);
}
@media (hover: hover) {
  .work-grid a:hover img,
  .work-grid figure:hover img {
    transform: scale(1.04);
  }
}
.btn:active {
  transform: translateY(1px);
}
@media (max-width: 60rem) {
  .work-grid a:last-child:nth-child(odd),
  .work-grid figure:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* כיתוב צד אנכי — נגיעת מגזין אופנה (דסקטופ בלבד) */
.side-caption {
  display: none;
}
@media (min-width: 75rem) {
  .side-caption {
    display: block;
    position: absolute;
    inset-inline-end: 1rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    color: var(--espresso-soft);
    white-space: nowrap;
  }
}

/* לוגו ענק בפוטר — חתימה עריכתית */
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  color: rgba(252, 251, 249, 0.08);
  text-align: center;
  margin-top: 3rem;
  user-select: none;
}

/* ---------- עמודים פנימיים ---------- */
.page-hero {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 60rem) {
  .page-hero:not(.page-hero-compact) {
    min-height: 60vh;
    display: grid;
    align-content: center;
  }
}
.page-hero-compact {
  padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2rem);
}
.page-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  counter-reset: step;
  max-width: var(--measure);
}
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.25rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--gold-faint);
}
.steps li::before {
  content: counter(step, decimal);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  flex: none;
  min-width: 1.6rem;
  line-height: 1.3;
}
.steps h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.steps p {
  margin: 0;
  color: var(--espresso-soft);
  font-size: 0.98rem;
}

.fit-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 60rem) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.fit-card {
  border: 1px solid var(--gold-faint);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
@media (hover: hover) {
  .fit-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }
}
.fit-card h3 {
  margin-bottom: 1rem;
}
.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fit-card li {
  padding: 0.55rem 0;
  display: flex;
  gap: 0.8rem;
  color: var(--espresso-soft);
}
.fit-card li::before {
  content: "—";
  color: var(--gold);
  flex: none;
}

.manifesto {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.manifesto p {
  max-width: none;
}
.manifesto .big {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.35;
  color: var(--espresso);
}

.legal-body {
  max-width: 44rem;
}
.legal-body h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}

.draft-note-quote {
  border: 1px dashed var(--taupe);
  padding: 1rem 1.4rem;
}

.draft-note {
  font-size: 0.85rem;
  color: var(--espresso-soft);
  border: 1px dashed var(--taupe);
  padding: 0.8rem 1.1rem;
  max-width: var(--measure);
  margin-top: 2rem;
}

/* שער-כשל: קישור אינסטגרם עירום מסומן עד שיוזן הפרופיל האמיתי */
a[href="https://www.instagram.com/"] {
  outline: 2px dashed #b3261e;
  outline-offset: 2px;
}

/* ---------- utilities (ממצא 38) ---------- */
.mt-lg {
  margin-top: 2.5rem;
}
.grid-start {
  align-items: start;
}
.actions-center {
  justify-content: center;
}
.footer-tagline {
  max-width: 26rem;
  margin-top: 1.25rem;
  color: var(--taupe);
}
.footer-col {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.site-footer nav a,
.footer-col a {
  padding-block: 0.55rem;
}

/* עדות — שכבת הוכחה (ממצא 6) */
.quote-block {
  border-inline-start: 2px solid var(--gold);
  padding-inline-start: 1.4rem;
  margin-block: 2rem;
  max-width: var(--measure);
}
.quote-block p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.quote-block cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--espresso-soft);
}

/* שאלון — פסי התקדמות כ-span (ממצא 51) */
.quiz-progress span {
  width: 2rem;
  height: 2px;
  background: var(--taupe-soft);
}
.quiz-progress span.done {
  background: var(--gold);
}

/* מובייל: הירו עם דימוי בקפל (ממצא 12) */
@media (max-width: 60rem) {
  .hero-figure {
    max-height: 46vh;
    overflow: hidden;
  }
  .hero-figure img {
    object-fit: cover;
    max-height: 44vh;
    width: 100%;
  }
  .hero {
    padding-block: clamp(2rem, 5vw, 3.5rem);
  }
}

/* ---------- רגע כהה (מניפסט על אספרסו) ---------- */
.section-dark {
  background: var(--espresso);
  color: var(--cream);
}
.section-dark .big,
.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}
.section-dark .overline {
  color: rgba(252, 251, 249, 0.72);
}
.section-dark .overline::before {
  background: var(--gold);
}
.section-dark .lead,
.section-dark .muted {
  color: rgba(252, 251, 249, 0.72);
}
.section-dark .pullquote::before {
  color: var(--gold);
  opacity: 0.8;
}
.section-dark .btn-ghost {
  color: var(--cream);
  border-color: rgba(252, 251, 249, 0.5);
}
.section-dark .btn-ghost:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}

.form-notice {
  font-size: 0.85rem;
  color: var(--espresso-soft);
  margin: 0.4rem 0 0.2rem;
}
.course-form label.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--espresso-soft);
}
.course-form label.consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  min-height: 0;
  flex: none;
  accent-color: var(--espresso);
}

/* ---------- הודעת עוגיות ---------- */
.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  max-width: 32rem;
  margin-inline: auto;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 12px 40px rgba(59, 47, 42, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: none;
  flex: 1 1 16rem;
}
.cookie-banner a {
  color: var(--cream);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex: none;
}
.cookie-banner .btn {
  min-height: 2.6rem;
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
}
.cookie-banner .btn-ghost {
  color: var(--cream);
  border-color: rgba(252, 251, 249, 0.5);
}
.cookie-banner .btn-ghost:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ---------- הודעת עוגיות (סוף) ---------- */
/* ---------- תנועה ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
