/* ============================================================
   BridesMen — מערכת עיצוב
   טיפוגרפיה עברית מוקפדת, פלטת שמנת + זהב שמפניה
   ============================================================ */

:root {
  /* צבעים */
  --ink: #1c1a17;          /* טקסט ראשי */
  --ink-soft: #4a463f;     /* טקסט משני */
  --ink-mute: #857e72;     /* טקסט עמום */
  --cream: #faf7f1;        /* רקע ראשי */
  --cream-deep: #f2ece1;   /* רקע חלופי */
  --paper: #ffffff;
  --gold: #b08d57;         /* זהב שמפניה */
  --gold-deep: #96733f;
  --gold-soft: #e7d8bf;
  --line: #e6ddcd;         /* קווי הפרדה */

  /* טיפוגרפיה */
  --serif: "Heebo", -apple-system, "Segoe UI", sans-serif; /* פונט הכותרות (מודרני, ללא סריף) */
  --sans: "Assistant", -apple-system, "Segoe UI", sans-serif;

  /* מידות */
  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 4rem);
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.06rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 600; }

p { color: var(--ink-soft); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 2.5rem); }

section { padding-block: clamp(3.5rem, 9vw, 7rem); }

/* ---------- כותרת עליונה של מקטע ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead { font-size: clamp(1.1rem, 1.8vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   כפתורים
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .28s ease;
  letter-spacing: .01em;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   ניווט עליון
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .88rem;
  letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-block: .55rem; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-phone { font-weight: 600; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.nav nav { flex: 1; display: flex; justify-content: center; }
.brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: .02em; }
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: 1rem; color: var(--ink-soft); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; right: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-inline-start: .5rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-block: 0; /* הריפוד האנכי מגיע מ-.hero .wrap בלבד, למנוע ריפוד כפול */
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(176,141,87,.14), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.25rem, 5vw, 4rem); }
.hero-copy h1 { margin-bottom: 1.5rem; }
.hero-copy .lead { margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  aspect-ratio: 4 / 5;
  max-height: 480px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(28,26,23,.05), rgba(28,26,23,.28)),
    linear-gradient(135deg, var(--gold-soft), var(--cream-deep));
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(28,26,23,.35);
}
.hero-visual > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 6px;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,26,23,.05), rgba(28,26,23,.45));
  border-radius: 6px; pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 14px; z-index: 2;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 3px;
  pointer-events: none;
}
.hero-visual .tag { z-index: 3; }
.hero-visual .tag {
  position: absolute; bottom: 22px; right: 22px; left: 22px;
  color: #fff; font-family: var(--serif); font-size: 1.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* פס אמון */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust .wrap { display: flex; justify-content: space-around; gap: 2rem; padding-block: 2.2rem; flex-wrap: wrap; text-align: center; }
.trust-item .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--gold-deep); }
.trust-item .lbl { font-size: .95rem; color: var(--ink-mute); font-weight: 500; }

/* ============================================================
   רשת יתרונות / כרטיסים
   ============================================================ */
.section-head { text-align: center; max-width: 62ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-inline: auto; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(28,26,23,.3); border-color: var(--gold-soft); }
.card .ic {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream-deep); color: var(--gold-deep);
  display: grid; place-items: center; margin-bottom: 1.3rem;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  border: 1px solid var(--gold-soft);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: 1rem; }

/* ============================================================
   מקטע כהה
   ============================================================ */
.dark { background: var(--ink); color: var(--cream); }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark p { color: rgba(250,247,241,.78); }
.dark .eyebrow { color: var(--gold-soft); }

/* ============================================================
   פרופיל צוות
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 230px)); gap: 1.5rem; justify-content: center; }
.member {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center;
}
.member .ph {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--gold-soft), var(--cream-deep));
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 3rem; color: var(--gold-deep); font-weight: 700;
}
.member .body { padding: 1.6rem 1.2rem 2rem; }
.member h3 { margin-bottom: .3rem; }
.member .role { color: var(--gold-deep); font-weight: 600; font-size: .95rem; letter-spacing: .04em; }
.member blockquote { margin-top: 1rem; font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 1.05rem; }

/* ============================================================
   ציטוט / המלצה
   ============================================================ */
.quote-band { background: var(--cream-deep); }
.quote-band .wrap { max-width: 820px; text-align: center; }
.quote-band .mark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--gold-soft); }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.5; color: var(--ink); margin: 1rem 0 1.5rem; font-weight: 500; }
.quote-band cite { font-style: normal; color: var(--gold-deep); font-weight: 600; letter-spacing: .04em; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative;
}
.review .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.review p { font-size: 1.05rem; color: var(--ink); line-height: 1.7; }
.review cite { display: block; margin-top: 1.1rem; font-style: normal; font-weight: 600; color: var(--gold-deep); }

/* ============================================================
   גלריה
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-grid .cell {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), var(--cream-deep));
  position: relative; border: 1px solid var(--line);
}
.gallery-grid .cell.wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-grid .cell > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s ease;
}
.gallery-grid .cell:hover > img { transform: scale(1.05); }
.gallery-grid .cell .cap {
  position: absolute; inset-block-end: 0; inset-inline: 0; padding: 1.2rem 1rem .9rem;
  color: #fff; font-family: var(--serif); font-size: 1.15rem;
  background: linear-gradient(0deg, rgba(28,26,23,.55), transparent);
}

/* ============================================================
   מאמר / תוכן ארוך
   ============================================================ */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { margin: 2.5rem 0 1rem; }
.article h3 { margin: 2rem 0 .7rem; color: var(--gold-deep); }
.article p { margin-bottom: 1.2rem; font-size: 1.1rem; line-height: 1.85; }
.article ul { margin: 0 1.4rem 1.4rem; }
.article li { margin-bottom: .7rem; color: var(--ink-soft); }
.article strong { color: var(--ink); }

/* פריט רשימה עם כותרת */
.checklist { list-style: none; margin: 0; }
.checklist li { position: relative; padding-inline-start: 2rem; margin-bottom: 1.3rem; }
.checklist li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .55em;
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}
.checklist li b { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; margin-bottom: .2rem; }

/* ============================================================
   טופס יצירת קשר
   ============================================================ */
.form-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: 0 30px 60px -40px rgba(28,26,23,.35);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .9rem; color: var(--ink-mute); margin-top: .8rem; }

.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-list .k { font-weight: 600; color: var(--gold-deep); min-width: 90px; }
.contact-list a:hover { color: var(--gold-deep); }

/* ============================================================
   CTA רצועה
   ============================================================ */
.cta-band { background: var(--ink); color: var(--cream); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(250,247,241,.8); max-width: 55ch; margin: 0 auto 2rem; }

/* ============================================================
   פוטר
   ============================================================ */
.footer { background: #141310; color: rgba(250,247,241,.7); font-size: .95rem; }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-block: 4rem 2.5rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: .03em; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer a:hover { color: var(--gold-soft); }
.footer ul { list-style: none; }
.footer li { margin-bottom: .6rem; }
.footer .social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer .social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: grid; place-items: center; transition: .25s;
}
.footer .social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .wrap { display: flex; justify-content: space-between; padding-block: 1.4rem; font-size: .85rem; color: rgba(250,247,241,.5); flex-wrap: wrap; gap: .5rem; }

/* כפתור וואטסאפ צף */
.wa {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa:hover { transform: scale(1.08); }
.wa svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   רספונסיב
   ============================================================ */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; order: -1; }
  .form-band .wrap { grid-template-columns: 1fr; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 30%; background: var(--cream);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2rem; gap: 1.4rem; transform: translateX(-100%); transition: transform .3s ease;
    box-shadow: -20px 0 40px -20px rgba(0,0,0,.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .topbar .wrap { font-size: .8rem; }
  .gallery-grid .cell.wide { grid-column: span 1; aspect-ratio: 3/4; }
  .footer .wrap { grid-template-columns: 1fr; }
}

/* אנימציית הופעה עדינה */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
