/* ============================================================
   בת-חן אליהו — עמוד בית
   Design system inspired by the BMF Studio "Keystone" reference:
   scroll-reveal, animated counters, marquee, pinned services rail.
   Palette + font per the client's brand book.
   ============================================================ */

:root{
  --gold-light:#DBC292;
  --gold:#C1A575;
  --bronze:#887856;
  --bronze-ink:#7A6C4D;
  --dark:#0D2429;
  --dark-deep:#071619;
  --dark-2:#16363c;
  --cream:#F9F0E3;
  --white:#FFFFFF;
  --ink-on-light:#233634;
  --muted-on-light:#5C6B68;
  --muted-on-dark:rgba(249,240,227,0.72);
  --line-on-dark:rgba(193,165,117,0.35);
  --line-on-light:rgba(13,36,41,0.10);
  --shadow:0 12px 32px rgba(13,36,41,0.10);
  --shadow-lift:0 20px 46px rgba(13,36,41,0.20);
  --grad:linear-gradient(120deg, var(--bronze) 0%, var(--gold) 45%, var(--gold-light) 100%);
  --radius:14px;
  --container:1360px;
  --ease:cubic-bezier(0.2,0.7,0.2,1);
  --header-h:72px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms!important; transition-duration:.001ms!important;}
}

body{
  margin:0;
  font-family:'Heebo','Segoe UI',Arial,sans-serif;
  color:var(--ink-on-light);
  background:var(--white);
  direction:rtl;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none; margin:0; padding:0;}
li{text-wrap:pretty;}
section{position:relative;}
button{font-family:inherit;}

.container{max-width:var(--container); margin:0 auto; padding:56px 24px;}
@media (max-width:768px){ .container{padding:20px;} }

/* ---------- Typography scale ---------- */
.label{
  display:inline-block; font-size:13px; font-weight:700;
  letter-spacing:1.6px; text-transform:uppercase; color:var(--gold);
}
.page-header .label, .hero .label, .services .section-head .label, .contact-intro .label{
  color:var(--white); font-size:18px;
}
.hero-inner .label{color:var(--gold); font-size:clamp(17px,2.4vh,23px); display:block; text-align:right;}
@media (max-width:768px){ .hero-inner .label{font-size:19px;} }
h1,h2,h3,h4{ margin:0; text-wrap:balance; }
h1{font-size:54px; font-weight:900; line-height:1.15;}
h2{font-size:40px; font-weight:900; line-height:1.2;}
h3{font-size:26px; font-weight:700; line-height:1.35;}
h4{font-size:20px; font-weight:700; line-height:1.4;}
p{font-size:17px; font-weight:300; line-height:1.75; margin:0; text-wrap:pretty;}
@media (max-width:768px){
  h1{font-size:32px;} h2{font-size:27px;} h3{font-size:21px;} h4{font-size:18px;} p{font-size:16px;}
}
.section-head{text-align:center; max-width:920px; margin:0 auto 40px;}
.section-head h2{margin-top:8px;}
.section-head.reveal-up{margin-bottom:40px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px; border-radius:9px; font-weight:700; font-size:18px;
  cursor:pointer; border:1.5px solid transparent; white-space:nowrap; max-width:100%;
  transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
@media (max-width:480px){
  .btn{white-space:normal; text-align:center; padding:14px 22px; font-size:18px;}
  .hero-ctas{flex-direction:column; align-items:stretch;}
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--grad); color:var(--dark);}
.btn-primary:hover{filter:brightness(1.06); box-shadow:var(--shadow-lift);}
.btn-outline-dark{border-color:var(--gold); color:var(--white);}
.btn-outline-dark:hover{background:rgba(193,165,117,0.12);}
.btn-outline-light{border-color:var(--dark); color:var(--dark);}
.btn-outline-light:hover{background:rgba(13,36,41,0.06);}

/* ---------- Motion ---------- */
.reveal-up,.reveal-down,.reveal-pop{opacity:0; transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-up{transform:translateY(28px);}
.reveal-down{transform:translateY(-18px);}
.reveal-pop{transform:scale(0.94);}
.reveal-up.in,.reveal-down.in,.reveal-pop.in{opacity:1; transform:none;}
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;} .d4{transition-delay:.32s;} .d5{transition-delay:.4s;} .d6{transition-delay:.48s;}

/* ---------- Header ---------- */
header{position:sticky; top:0; z-index:100; background:rgba(13,36,41,0.92); backdrop-filter:blur(8px); border-bottom:1px solid var(--line-on-dark);}
.skip-link{position:absolute; right:12px; top:-60px; z-index:200; background:var(--dark); color:var(--white); font-size:18px; padding:12px 20px; border-radius:8px; font-weight:700; transition:top .2s;}
.skip-link:focus{top:12px;}
.nav-wrap{max-width:none; margin:0 auto; padding:14px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:var(--header-h);}
.logo{display:flex; align-items:center;}
.logo-img{height:44px; width:auto; display:block;}
@media (max-width:480px){ .logo-img{height:36px;} }
nav.links{display:flex; align-items:center; gap:28px;}
nav.links a{font-size:18px; font-weight:500; color:var(--white); transition:opacity .2s, color .2s; position:relative;}
nav.links a:hover{color:var(--gold-light);}
.nav-right{display:flex; align-items:center; gap:20px;}
.nav-cta{padding:11px 24px; font-size:14px;}
.social-links{display:flex; align-items:center; gap:10px;}
.social-links a{
  display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%;
  border:1px solid var(--line-on-dark); color:var(--white); flex:none;
  transition:background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.social-links a:hover{background:rgba(193,165,117,0.14); border-color:var(--gold-light); color:var(--gold-light);}
/* The social row stays in the sticky header at every width, including the
   smallest phones - the logo and icons step down instead of dropping out. */
@media (max-width:900px){ .social-links-header{gap:6px;} .social-links-header a{width:34px; height:34px;} }
@media (max-width:420px){
  .nav-wrap{padding:12px 14px; gap:10px;}
  .social-links-header{gap:4px;}
  .social-links-header a{width:30px; height:30px;}
  .social-links-header svg{width:15px; height:15px;}
}
@media (max-width:360px){
  .logo-img{height:30px;}
  .social-links-header a{width:28px; height:28px;}
}
.social-links-contact{margin-top:24px; gap:12px;}
.social-links-contact a{width:44px; height:44px;}
.burger{display:none; background:none; border:none; cursor:pointer; padding:6px;}
.burger span{display:block; width:23px; height:2px; background:var(--gold-light); margin:5px 0; border-radius:2px; transition:transform .2s, opacity .2s;}
@media (max-width:900px){
  nav.links{position:fixed; top:var(--header-h); right:0; bottom:0; left:0; height:calc(100vh - var(--header-h)); background:var(--dark); flex-direction:column; align-items:flex-start; padding:30px 24px; gap:24px; transform:translateY(-8px); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s; border-top:1px solid var(--line-on-dark); overflow-y:auto; z-index:99;}
  nav.links.open{opacity:1; pointer-events:auto; transform:translateY(0);}
  nav.links a{font-size:18px;}
  .nav-cta{display:none;}
  .burger{display:block;}
}

/* ---------- Hero ---------- */
.hero{min-height:calc(100svh - var(--header-h)); display:flex; align-items:center; color:var(--cream); position:relative; overflow:hidden;}
.hero-bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(100deg, rgba(7,22,25,0.94) 10%, rgba(13,36,41,0.82) 45%, rgba(13,36,41,0.55) 100%);}
.hero-wave-canvas{display:none; position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; mix-blend-mode:screen;}
@media (hover:hover) and (pointer:fine){ .hero-wave-canvas{display:block;} }
.hero .container{position:relative; z-index:2; width:100%; padding-top:clamp(24px,4vh,64px); padding-bottom:clamp(24px,4vh,64px);}
.hero-inner{max-width:840px;}
.hero-portrait{position:absolute; z-index:1; bottom:0; left:0; width:40%; height:76%; display:flex; align-items:flex-end; justify-content:center; pointer-events:none;}
.hero-portrait::before{
  content:""; position:absolute; bottom:8%; left:50%; transform:translateX(-50%); width:42%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(193,165,117,0.30), rgba(193,165,117,0) 68%);
}
.hero-portrait img{position:relative; height:100%; width:auto; filter:drop-shadow(0 0 22px rgba(13,36,41,0.85)) drop-shadow(0 0 44px rgba(13,36,41,0.6)) drop-shadow(0 30px 40px rgba(0,0,0,0.45));}
@media (max-width:1180px){ .hero-portrait{height:64%;} }
@media (max-width:900px){
  .hero{flex-direction:column; padding-top:36px;}
  .hero-portrait{
    position:static; height:auto; order:2; margin:24px 0 0; justify-content:center; width:100%; transform:none;
  }
  .hero-portrait::before{display:none;}
  .hero-portrait img{height:auto; width:100%; display:block; filter:none;}
}
.hero h1{color:var(--white); margin-top:clamp(8px,1.6vh,16px); font-size:clamp(34px,4.8vh,54px);}
.hero h1 em{font-style:normal; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;}
.hero p{color:var(--white); font-size:clamp(15.5px,2.3vh,19.5px); margin-top:clamp(10px,2.2vh,22px); max-width:660px;}
.hero-ctas{display:flex; gap:16px; margin-top:clamp(16px,3.6vh,38px); flex-wrap:wrap;}
.trust-strip{margin-top:56px; padding-top:26px; border-top:1px solid var(--line-on-dark); display:flex; gap:40px; flex-wrap:wrap;}
.trust-item{font-size:18px; font-weight:500; color:var(--white); display:flex; align-items:baseline; gap:8px;}
.trust-item b{color:var(--white); font-weight:900; font-size:18px; font-variant-numeric:tabular-nums;}
@media (max-width:768px){ .hero{min-height:auto; padding-top:20px;} .hero p{font-size:16.5px;} .trust-strip{gap:22px;} }

/* ---------- Cards ---------- */
.card{border-radius:var(--radius); padding:34px;}
.card-on-cream{background:var(--white); box-shadow:var(--shadow);}
.card-on-white{background:var(--cream); box-shadow:var(--shadow);}
.card-on-dark{background:rgba(255,255,255,0.05); border:1px solid var(--line-on-dark);}

/* ---------- About ---------- */
.about{position:relative; overflow:hidden; padding:0;}
.about-bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%;}
.about-bg-home{object-position:center 30%;}
.about-bg-office{object-position:center 25%;}
@media (max-width:768px){
  .about-bg-home{object-position:74% 20%;}
  .about-bg-office{object-position:60% 15%;}
}
.about-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(7,22,25,0.94) 0%, rgba(13,36,41,0.86) 34%, rgba(13,36,41,0.45) 62%, rgba(13,36,41,0.08) 100%);
}
.about .container{position:relative; z-index:2; padding-top:64px; padding-bottom:64px;}
@media (max-width:768px){
  .about-photo{display:flex; flex-direction:column;}
  .about-bg{position:static; width:100%; height:320px; order:2;}
  .about-overlay{display:none;}
  .about-photo .container{position:static; background:var(--dark); padding-top:36px; padding-bottom:56px; order:1;}
}
.about-body{max-width:620px; margin-right:auto;}
.about-body h2{color:var(--white); margin-top:8px;}
.about-body h3{color:var(--gold-light); margin-top:16px;}
.about-body p{color:var(--white); font-size:18px;}
.quote-card{margin-top:30px; display:flex; gap:18px; align-items:flex-start; padding:26px 28px;}

/* ---------- Testimonials page intro (photo + copy, contained not full-bleed) ---------- */
.testi-intro{background:var(--white); padding:64px 0 70px;}
.testi-intro-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:44px; align-items:center;}
@media (max-width:860px){ .testi-intro-grid{grid-template-columns:1fr;} }
.testi-intro-copy{order:1;}
.testi-intro-copy h1{font-size:42px;}
@media (max-width:768px){ .testi-intro-copy h1{font-size:30px;} }
.testi-intro-photo{order:2; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-lift); aspect-ratio:4/3;}
.testi-intro-photo img{width:100%; height:100%; object-fit:cover; display:block;}

/* ---------- Press card (blog/articles page) ---------- */
.press-card{
  display:block; margin-top:24px; padding:28px 30px; border-radius:14px;
  background:var(--cream); box-shadow:var(--shadow); transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.press-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-lift);}
.press-source{font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--bronze-ink);}
.press-card h3{margin-top:10px; font-size:22px; color:var(--ink-on-light);}
.press-card p{margin-top:10px; color:var(--muted-on-light);}
.press-link{display:inline-block; margin-top:16px; font-weight:700; color:var(--bronze-ink);}

/* ---------- Press feature card (media mention, with photo + outlet logos) ---------- */
.press-feature{
  display:grid; grid-template-columns:1.1fr 1fr; align-items:stretch;
  margin-top:28px; border-radius:20px; overflow:hidden;
  background:var(--cream); box-shadow:var(--shadow);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.press-feature:hover{transform:translateY(-5px); box-shadow:var(--shadow-lift);}
@media (max-width:760px){ .press-feature{grid-template-columns:1fr;} }
.press-feature-media{position:relative; overflow:hidden; min-height:260px;}
.press-feature-media img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease);}
.press-feature:hover .press-feature-media img{transform:scale(1.07);}
.press-feature-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(7,22,25,0.02) 30%, rgba(7,22,25,0.65) 100%);
}
.press-feature-logos{
  position:absolute; right:18px; bottom:18px; z-index:2; display:flex; align-items:center; gap:12px;
  background:rgba(9,26,30,0.88); backdrop-filter:blur(4px); padding:11px 18px; border-radius:12px;
}
.press-feature-logos img{position:static; width:auto; transition:none;}
.press-feature-logos .mako-logo{height:15px;}
.press-feature-logos .n12-logo{height:22px;}
.press-feature-logos .divider{width:1px; height:18px; background:rgba(255,255,255,0.28);}
.press-feature-body{padding:36px 38px; display:flex; flex-direction:column; justify-content:center;}
.press-feature-body h3{font-size:23px; color:var(--ink-on-light);}
.press-feature-body p{margin-top:12px; color:var(--muted-on-light);}
.press-feature-link{display:inline-flex; align-items:center; gap:8px; margin-top:20px; font-weight:700; color:var(--bronze-ink); width:fit-content;}
.press-feature-link .arrow{display:inline-block; transition:transform .25s var(--ease);}
.press-feature:hover .press-feature-link .arrow{transform:translateX(-4px);}
.quote-mark{font-size:44px; font-weight:900; color:var(--gold); line-height:.6; font-family:Georgia,serif; flex:none;}
.quote-card p{font-weight:500; font-size:18px; color:var(--ink-on-light);}
.quote-card span{display:block; margin-top:12px; font-size:14px; color:var(--muted-on-light); font-weight:700;}
@media (max-width:768px){ .br-desktop{display:none;} }

/* ---------- Why-choose callout (used before services, mirrors Keystone's insight box) ---------- */
.insight{background:var(--cream); padding-top:60px;}
.insight-box{max-width:800px; margin:0 auto; padding:40px; text-align:center;}
.insight-box p{color:var(--muted-on-light); font-size:18px;}
.insight-box p.insight-lead{color:var(--dark); font-size:26px; font-weight:700; line-height:1.35;}
@media (max-width:768px){ .insight-box p.insight-lead{font-size:21px;} }
.insight-box strong{color:var(--bronze-ink);}
.insight-cta{margin-top:28px; padding-top:28px; border-top:1px solid var(--line-on-light); text-align:center;}

/* ---------- Services rail ---------- */
.services{background:var(--dark); color:var(--cream); padding-top:70px; padding-bottom:0;}
.services .section-head{color:var(--cream);}
.services .section-head p{color:var(--white); font-size:18px; margin-top:10px;}
.svc-wrap{position:relative;}
.svc-sticky{overflow:hidden;}
@media (min-width:768px){
  .svc-wrap{ height:calc(var(--svc-count) * 78vh); }
  .svc-sticky{ position:sticky; top:var(--header-h); height:calc(100vh - var(--header-h)); display:flex; align-items:center; }
}
.svc-track{display:flex; width:100%;}
@media (min-width:768px){ .svc-track{height:78vh; will-change:transform;} }
@media (max-width:767px){ .svc-track{flex-direction:column; gap:20px; padding:20px 20px 8px;} }
.svc-card{
  display:block; position:relative; flex:0 0 100%; color:#fff;
}
@media (max-width:767px){ .svc-card{flex:none; min-height:400px;} }
/* .svc-frame is the visual card (inset from the slot edges on desktop so the
   pitch the JS computes — one slot = 100% of the sticky viewport — stays
   exact; the inset only affects what's drawn, never the slot's own width). */
.svc-frame{
  position:relative; height:100%; border-radius:22px; overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
@media (min-width:768px){ .svc-frame{margin:0 4vw;} }
@media (max-width:767px){ .svc-frame{position:absolute; inset:0; height:auto;} }
.svc-bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease);}
.svc-card:hover .svc-bg{transform:scale(1.05);}
.svc-scrim{position:absolute; inset:0; background:linear-gradient(to top, rgba(7,22,25,0.94) 0%, rgba(7,22,25,0.55) 40%, rgba(7,22,25,0.08) 100%);}
.svc-num{
  position:absolute; top:22px; inset-inline-start:22px; z-index:3; width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,0.10);
  backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.30); font-size:20px; font-weight:800;
}
.svc-num span{background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;}
.svc-body{position:absolute; inset-inline:0; bottom:0; z-index:2; padding:26px 30px;}
.svc-accent{position:absolute; inset-inline:0; bottom:0; height:5px; background:var(--grad); z-index:2;}
.svc-body h3{font-size:26px;}
@media (min-width:768px){ .svc-body h3{font-size:34px;} }
.svc-body p{color:rgba(255,255,255,0.90); margin-top:8px; max-width:520px;}
.svc-more{display:inline-flex; margin-top:14px; font-weight:700; font-size:18px; color:var(--white); transition:gap .2s var(--ease);}
.svc-card:hover .svc-more{gap:6px;}
.svc-dots{display:flex; justify-content:center; gap:10px; padding:22px 0 0;}
@media (max-width:767px){ .svc-dots{display:none;} }
.svc-dots span{height:8px; width:8px; border-radius:99px; background:rgba(255,255,255,0.35); transition:width .3s, background .3s;}
.svc-dots span.on{width:28px; background:var(--grad);}

/* ---------- Reasons (why choose me, icon grid) ---------- */
.why{background:var(--dark); color:var(--cream); padding-top:70px; padding-bottom:70px;}
.reasons{display:grid; gap:32px; grid-template-columns:repeat(4,1fr); margin-top:8px;}
@media (max-width:960px){ .reasons{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .reasons{grid-template-columns:1fr;} }
.reason .r-icon{
  width:52px; height:52px; border-radius:50%; background:rgba(193,165,117,0.10);
  border:1.5px solid rgba(193,165,117,0.4); display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); margin-bottom:18px; box-shadow:0 6px 16px rgba(0,0,0,0.2);
}
.reason h4{color:var(--white);}
.reason p{color:var(--white); font-size:18px; margin-top:8px;}

/* ---------- Numbers ---------- */
.numbers{background:#F3F7F4; padding-top:64px; padding-bottom:64px; border-top:1px solid var(--line-on-light);}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;}
@media (max-width:760px){ .stats-grid{grid-template-columns:repeat(2,1fr); gap:36px;} }
.stat-num{font-size:44px; font-weight:900; font-variant-numeric:tabular-nums; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; white-space:nowrap;}
@media (max-width:760px){ .stat-num{font-size:30px;} }
@media (max-width:360px){ .stat-num{font-size:26px;} }
.stat-label{margin-top:8px; font-size:14px; font-weight:600; color:var(--muted-on-light);}

/* ---------- Marquee ---------- */
.marquee{overflow:hidden; white-space:nowrap;}
.marquee-track{display:inline-flex; align-items:center; gap:2.5rem; padding-inline:1.25rem; animation:ksMarquee 30s linear infinite; will-change:transform;}
.marquee:hover .marquee-track{animation-play-state:paused;}
@keyframes ksMarquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.marquee-word{font-size:1.1rem; font-weight:700; color:var(--ink-on-light); letter-spacing:.01em;}
.marquee-dot{width:6px; height:6px; border-radius:50%; background:var(--bronze-ink);}
.marquee-strip{border-top:1px solid var(--line-on-light); border-bottom:1px solid var(--line-on-light); background:var(--cream); padding:20px 0;}

/* ---------- Testimonials ---------- */
.testimonials{background:var(--white); overflow:hidden;}
.test-grid{display:grid; grid-template-columns:1fr 1fr;}
@media (max-width:860px){ .test-grid{grid-template-columns:1fr;} }
.test-photo{position:relative; min-height:340px;}
@media (min-width:861px){ .test-photo{order:2; min-height:100%;} }
.test-photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.test-copy{padding:64px 32px;}
@media (min-width:861px){ .test-copy{order:1; padding:80px 56px;} }
.test-copy .label{color:var(--bronze-ink);}
.story-quote{margin-top:22px; padding-inline-start:18px; border-inline-start:3px solid var(--gold); font-weight:500; font-size:18px; color:var(--ink-on-light);}
.test-copy p.body{color:var(--muted-on-light); margin-top:14px;}
.side-stat{margin-top:28px; padding-top:24px; border-top:1px solid var(--line-on-light);}
.side-stat .num{font-size:32px; font-weight:900; color:var(--bronze);}
.pending-note{margin-top:24px; font-size:13.5px; color:var(--muted-on-light); display:flex; align-items:center; gap:8px;}
.pending-note .dot{width:7px; height:7px; border-radius:50%; background:var(--bronze-ink); flex:none;}

/* ---------- Banks (placeholder) ---------- */
/* ---------- Google Reviews ---------- */
.reviews{background:var(--white);}
.reviews .label{color:var(--bronze-ink);}
.reviews-head{text-align:center; max-width:640px; margin:0 auto 36px;}
.reviews-rating{display:flex; align-items:center; justify-content:center; gap:10px; margin-top:14px; flex-wrap:wrap;}
.reviews-rating .stars{color:var(--bronze-ink); font-size:20px; letter-spacing:2px;}
.reviews-note{font-size:13px; color:var(--muted-on-light); width:100%; margin-top:4px;}
.reviews-carousel{position:relative;}
.reviews-scroller{
  overflow:hidden; padding:6px 26px 10px; touch-action:pan-y;
  -webkit-mask-image:linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track{display:flex; align-items:flex-start; gap:20px; transition:transform .45s cubic-bezier(.22,.61,.36,1); cursor:grab;}
.reviews-track.dragging{transition:none; cursor:grabbing;}
.carousel-arrow{
  position:absolute; top:42%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%;
  background:var(--white); border:1px solid rgba(13,36,41,0.1); box-shadow:var(--shadow-lift); color:var(--ink-on-light);
  display:flex; align-items:center; justify-content:center; font-size:18px; line-height:1; cursor:pointer; z-index:5;
  transition:background .2s var(--ease), transform .2s var(--ease);
}
.carousel-arrow:hover{background:var(--cream); transform:translateY(-50%) scale(1.06);}
.carousel-arrow.prev{right:-10px;}
.carousel-arrow.next{left:-10px;}
@media (max-width:640px){ .carousel-arrow{display:none;} }
.review-card{
  flex:0 0 300px; background:var(--cream); border-radius:14px;
  padding:26px; box-shadow:var(--shadow); user-select:none;
}
.review-card.placeholder{border:1px dashed rgba(13,36,41,0.22); background:var(--white); box-shadow:none;}
.review-top{display:flex; align-items:center; gap:12px; margin-bottom:14px;}
.review-top .avatar{
  width:40px; height:40px; border-radius:50%; background:rgba(193,165,117,0.18); color:var(--bronze-ink);
  display:flex; align-items:center; justify-content:center; font-weight:700; flex:none;
}
.review-name{font-weight:700; font-size:15px; color:var(--ink-on-light);}
.review-stars{color:var(--bronze-ink); font-size:14px; letter-spacing:1px;}
.review-text{color:var(--muted-on-light); font-size:14.5px; margin-top:2px;}

.banks{background:var(--cream); position:relative; overflow:hidden;}
.banks .label{color:var(--bronze-ink);}
.banks-bg-video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.1; pointer-events:none;}
.banks .container{position:relative; z-index:2;}
.banks-row{display:grid; grid-template-columns:repeat(7,1fr); gap:16px;}
@media (max-width:900px){
  .banks-row{display:flex; flex-wrap:wrap; justify-content:center;}
  .bank-slot{flex:0 0 calc(25% - 12px);}
}
@media (max-width:560px){
  .bank-slot{flex:0 0 calc(33.333% - 11px);}
}
.bank-slot{background:var(--white); border:1px solid rgba(13,36,41,0.08); box-shadow:var(--shadow); border-radius:10px; height:76px; display:flex; align-items:center; justify-content:center; padding:12px; transition:transform .2s var(--ease), box-shadow .2s var(--ease);}
.bank-slot:hover{transform:translateY(-3px); box-shadow:var(--shadow-lift);}
.bank-slot img{max-width:100%; max-height:100%; object-fit:contain;}

/* ---------- Contact ---------- */
.contact{background:var(--dark); color:var(--cream); overflow:hidden; position:relative;}
.contact-topline{position:absolute; inset-inline:0; top:0; height:4px; background:var(--grad);}
.contact-mark{position:absolute; bottom:-8%; left:-6%; width:44%; max-width:520px; opacity:0.10; pointer-events:none;}
.contact-grid{position:relative; display:grid; grid-template-columns:1fr 1.15fr; gap:60px; align-items:center;}
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr; gap:38px;} }
.contact h2{color:var(--white); margin-top:14px;}
.contact-intro h3{color:var(--gold-light); margin-top:16px;}
.contact-intro p{color:var(--white); font-size:18px; margin-top:12px;}
.contact-channels{margin-top:28px; display:flex; flex-direction:column; gap:14px;}
.contact-channel{display:flex; align-items:center; gap:14px; color:var(--white); font-size:18px; font-weight:600; transition:color .2s var(--ease);}
.contact-channel:hover{color:var(--gold-light);}
.contact-channel .ci{display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%; border:1px solid var(--line-on-dark); flex:none; transition:border-color .2s var(--ease), background .2s var(--ease);}
.contact-channel:hover .ci{border-color:var(--gold-light); background:rgba(193,165,117,0.12);}
form.card-on-dark{display:flex; flex-direction:column; gap:16px;}
.field{display:flex; flex-direction:column; gap:8px;}
.field label{font-size:18px; font-weight:700; color:var(--white);}
.field input,.field textarea{background:rgba(255,255,255,0.06); border:1px solid var(--line-on-dark); border-radius:8px; padding:13px 16px; color:var(--white); font-family:inherit; font-size:18px;}
.field input::placeholder,.field textarea::placeholder{color:#A6A9A2;}
.field input:focus,.field textarea:focus{outline:2px solid var(--gold); outline-offset:1px;}
.field textarea{resize:vertical; min-height:96px;}
.row-2{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:520px){ .row-2{grid-template-columns:1fr;} }
form .btn{margin-top:6px; justify-content:center;}
.form-note{font-size:18px; color:var(--white); text-align:center; margin-top:2px;}

/* ---------- Footer ---------- */
footer{background:var(--dark-deep); padding:34px 24px 100px; text-align:center;}
.footer-logo-img{height:76px; width:auto; margin:0 auto 22px; display:block;}
@media (min-width:768px){ footer{padding-bottom:34px;} }
footer .foot-links{display:flex; flex-wrap:wrap; justify-content:center; gap:18px; margin-bottom:14px;}
footer .foot-links a{font-size:18px; color:var(--white);}
footer .foot-links a:hover{color:var(--gold-light); text-decoration:underline;}
footer p.credit{color:var(--white); font-size:18px; font-weight:600;}
footer p.credit a{color:var(--gold-light); text-decoration:underline; text-underline-offset:3px;}
footer p.credit a:hover{color:var(--gold);}

/* ---------- Floating WhatsApp + sticky mobile bar ---------- */
.wa-float{position:fixed; bottom:24px; left:24px; z-index:200; width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(0,0,0,0.3); transition:transform .15s;}
.wa-float:hover{transform:scale(1.06);}
/* On phones the sticky bottom bar already offers WhatsApp; the floating
   button would be a second one on the same screen. */
@media (max-width:767px){ .wa-float{display:none;} }

.mobile-cta-bar{display:none; position:fixed; inset-inline:0; bottom:0; z-index:150; background:rgba(7,22,25,0.95); backdrop-filter:blur(6px); border-top:1px solid var(--line-on-dark); padding:10px 14px calc(env(safe-area-inset-bottom,0) + 10px);}
@media (max-width:767px){ .mobile-cta-bar{display:flex; gap:10px;} }
.mobile-cta-bar a{flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:12px; border-radius:99px; font-weight:700; font-size:14.5px;}
.mobile-cta-bar .call{border:1px solid var(--line-on-dark); color:var(--cream);}
.mobile-cta-bar .wa{background:var(--grad); color:var(--dark);}

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

/* ---------- Sub-page header band ---------- */
.page-header{position:relative; overflow:hidden; background:var(--dark); color:var(--cream); padding-top:32px; display:flex; align-items:flex-end;}
.page-header-bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.page-header-overlay{position:absolute; inset:0; background:linear-gradient(100deg, rgba(7,22,25,0.94) 15%, rgba(13,36,41,0.72) 100%);}
.page-header .container{position:relative; z-index:2; width:100%; padding-top:16px; padding-bottom:26px;}
.page-header h1{color:var(--white); margin-top:14px; font-size:44px;}
.page-header p{color:var(--white); margin-top:14px; max-width:none; font-size:18px;}
@media (max-width:768px){ .page-header h1{font-size:30px;} .page-header p{font-size:18px;} }
.page-header-tall{min-height:0;}
@media (max-width:768px){ .page-header-tall{min-height:0;} }
nav.links a.active{color:var(--gold-light); opacity:1;}

/* ---------- Header services dropdown ---------- */
.nav-item{display:flex; align-items:center; gap:2px;}
.dropdown-toggle{background:none; border:none; padding:6px; margin-inline-start:-4px; cursor:pointer; color:var(--white); display:flex; align-items:center;}
.dropdown-toggle svg{transition:transform .2s;}
.nav-item.open .dropdown-toggle svg{transform:rotate(180deg);}
.dropdown-menu{width:100%; display:grid; gap:2px; max-height:0; overflow:hidden; opacity:0; transition:max-height .25s ease, opacity .2s ease; padding-inline-start:14px;}
.nav-item.open .dropdown-menu{max-height:400px; opacity:1; margin-top:10px;}
.dropdown-menu a{display:block; padding:8px 0; font-size:15.5px; font-weight:500; color:var(--cream); opacity:.9;}
.dropdown-menu a:hover, .dropdown-menu a.active{color:var(--gold-light); opacity:1;}
@media (min-width:769px){
  .nav-item{position:relative;}
  .dropdown-menu{
    position:absolute; top:calc(100% + 16px); right:0; width:auto; min-width:250px; max-height:none; overflow:visible;
    background:var(--dark); border:1px solid var(--line-on-dark); border-radius:12px; padding:10px; box-shadow:var(--shadow-lift);
    opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .2s, transform .2s, visibility .2s; z-index:60; margin-top:0;
  }
  .dropdown-menu a{padding:9px 14px; border-radius:8px; white-space:nowrap;}
  .dropdown-menu a:hover{background:rgba(255,255,255,0.06);}
  .nav-item.open .dropdown-menu,
  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu{opacity:1; visibility:visible; transform:translateY(0);}
}

/* ---------- Static services grid (hub page) ---------- */
.svc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media (max-width:960px){ .svc-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .svc-grid{grid-template-columns:1fr;} }
.svc-grid-card{position:relative; display:block; border-radius:20px; overflow:hidden; aspect-ratio:4/3; color:#fff; box-shadow:0 16px 36px rgba(13,36,41,0.18);}
.svc-grid-card img, .svc-grid-card video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.svc-grid-card:hover img, .svc-grid-card:hover video{transform:scale(1.06);}
.svc-grid-card .scrim{position:absolute; inset:0; background:linear-gradient(to top, rgba(7,22,25,0.94) 0%, rgba(7,22,25,0.35) 55%, rgba(7,22,25,0.05) 100%);}
.svc-grid-card .body{position:absolute; inset-inline:0; bottom:0; padding:24px; min-height:196px; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-start; background:linear-gradient(to top, rgba(7,22,25,0.88) 0%, rgba(7,22,25,0.75) 70%, rgba(7,22,25,0) 100%); backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);}
.svc-grid-card .body h3{font-size:22px;}
.svc-grid-card .body p{color:rgba(255,255,255,0.88); font-size:14.5px; margin-top:8px;}
.svc-grid-card .more{display:inline-flex; margin-top:12px; font-weight:700; font-size:18px; color:var(--white);}

/* ---------- Sub-services bullet list (service category pages) ---------- */
.sub-services{margin-top:8px; display:grid; gap:14px;}
.sub-services li{display:flex; gap:10px; align-items:flex-start;}
.sub-services .tick{flex:none; width:20px; height:20px; border-radius:50%; background:rgba(193,165,117,0.14); color:var(--bronze); display:flex; align-items:center; justify-content:center; margin-top:3px;}
.sub-services .tick svg{width:11px; height:11px;}
.sub-services .sub-title{color:var(--ink-on-light); font-weight:600; font-size:16.5px;}

/* ---------- Cross-page navigation (native View Transitions, MPA) ----------
   Chrome/Edge 111+, Safari 18+, Firefox 129+ crossfade automatically between
   same-origin page loads; everywhere else this block is simply inert and
   navigation works as normal. Header/footer get a shared name so they hold
   still instead of crossfading with the page content around them. */
@view-transition{ navigation: auto; }
header{ view-transition-name: site-header; }
footer{ view-transition-name: site-footer; }
::view-transition-old(root), ::view-transition-new(root){
  animation-duration: 0.32s;
  animation-timing-function: cubic-bezier(0.2,0.7,0.2,1);
}
@media (prefers-reduced-motion: reduce){
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*){
    animation: none !important;
  }
}

/* ---------- Generic image placeholder (content pending real photos) ---------- */
.img-placeholder{
  position:relative; width:100%; overflow:hidden;
  background:linear-gradient(135deg, rgba(193,165,117,0.16), rgba(13,36,41,0.05));
  border:1.5px dashed var(--line-on-light);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  color:var(--muted-on-light); text-align:center; padding:12px;
}
.img-placeholder svg{opacity:0.4;}
.img-placeholder span{font-size:12.5px; font-weight:600; opacity:0.75; max-width:80%;}

/* ---------- Article teasers (self-authored SEO articles) ---------- */
.article-teasers{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media (max-width:900px){
  .article-teasers{grid-template-columns:1fr; gap:18px;}
}
.article-teaser{
  display:block; border-radius:16px; overflow:hidden; background:var(--white);
  box-shadow:var(--shadow); transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.article-teaser:hover{transform:translateY(-4px); box-shadow:var(--shadow-lift);}
.article-teaser-img{width:100%; height:auto; aspect-ratio:16/10; object-fit:cover; display:block;}
.article-teaser-body{padding:22px 24px;}
.article-teaser-body h3{margin-top:8px; font-size:19px; color:var(--ink-on-light);}
.article-teaser-body p{margin-top:8px; font-size:14.5px; color:var(--muted-on-light);}
.article-teaser-link{display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-weight:700; font-size:14px; color:var(--bronze-ink);}
.article-teaser-link .arrow{display:inline-block; transition:transform .25s var(--ease);}
.article-teaser:hover .article-teaser-link .arrow{transform:translateX(-4px);}

/* ---------- Recommendation cards (placeholder testimonials grid) ---------- */
.reco-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:28px;}
@media (max-width:900px){ .reco-grid{grid-template-columns:1fr;} }
.reco-card{padding:28px 26px; border-radius:16px; background:var(--cream); box-shadow:var(--shadow); text-align:center;}
.reco-avatar{width:72px; height:72px; border-radius:50%; margin:0 auto;}
.reco-stars{margin-top:16px; color:var(--bronze-ink); letter-spacing:2px;}
.reco-card .quote{margin-top:10px; color:var(--muted-on-light); font-size:14.5px; font-style:italic;}
.reco-name{margin-top:12px; font-weight:700; color:var(--ink-on-light); font-size:14px;}

/* ---------- Accessibility: not-yet-active contact placeholders ---------- */
[aria-disabled="true"]{opacity:0.6; cursor:not-allowed;}

/* ---------- Article structure: reading time, TOC, callouts, mid-article CTA ---------- */
/* Article + service reading column: wide enough to feel generous,
   capped so a line of Hebrew body copy stays in the readable range. */
.article-wrap{max-width:800px;}
.article-wrap p, .article-wrap li{font-size:19px; line-height:1.9;}
.service-wrap{max-width:880px;}
.service-wrap p{font-size:19px; line-height:1.9;}
@media (max-width:768px){
  .article-wrap p, .article-wrap li, .service-wrap p{font-size:17px; line-height:1.8;}
}
.article-meta{display:flex; align-items:center; flex-wrap:wrap; gap:8px 20px; margin-top:18px; font-size:14px; color:var(--muted-on-light);}
.article-meta .am-item{display:inline-flex; align-items:center; gap:7px;}
.article-meta a{color:var(--bronze-ink); font-weight:600; text-decoration:underline; text-underline-offset:3px;}
.article-meta svg{flex:none; color:var(--bronze-ink);}
.article-toc{margin-top:30px; padding:22px 26px; border-radius:16px; background:var(--cream); border:1px solid var(--line-on-light);}
.article-toc h2{font-size:16px; font-weight:700; color:var(--ink-on-light); margin:0;}
.article-toc ol{margin:14px 0 0; padding-inline-start:22px; display:grid; gap:8px;}
.article-toc a{color:var(--bronze-ink); font-weight:500; font-size:15px;}
.article-callout{margin:26px 0; padding:20px 24px; border-radius:14px; background:rgba(193,165,117,0.1); border-inline-start:4px solid var(--gold);}
.article-callout .cal-label{display:block; font-size:12.5px; font-weight:700; letter-spacing:.8px; color:var(--bronze-ink); text-transform:uppercase; margin-bottom:6px;}
.article-callout p{color:var(--ink-on-light); font-size:16px; margin:0;}
.article-cta{margin:34px 0; padding:26px 28px; border-radius:16px; background:var(--dark); display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.article-cta p{color:var(--white); font-size:17px; margin:0; flex:1; min-width:200px;}
@media (max-width:600px){ .article-cta{padding:22px;} }
