/* =========================================================
   ZOOZ minisite - stylesheet
   Mobile-first. Base styles target 360-414px phones;
   min-width media queries enhance for larger screens.
   Palette and typography sampled from the official ZOOOOZ
   ad campaign (turquoise sky / liquid brown / yellow ribbon).
   ========================================================= */

/* licensed FbCarbon webfonts supplied by the client */
@font-face{
  font-family:'FbCarbon';
  src:url('../fonts/fbcarbon-regularwebfont.woff') format('woff'),
      url('../fonts/fbcarbon-regularwebfont.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FbCarbon';
  src:url('../fonts/fbcarbon-boldwebfont.woff') format('woff'),
      url('../fonts/fbcarbon-boldwebfont.ttf') format('truetype');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --brown:#60422c;
  --brown-deep:#43301c;
  --teal:#37c1d4;
  --teal-deep:#2aa7b8;
  --teal-aa:#177888;   /* darkest brand teal: 5.2:1 with white text (WCAG AA) */
  --teal-ice:#eef9fb;
  --sand:#f9ce7f;
  --ochre:#c58132;
  --gold:#fed125;
  --wa:#25d366;        /* original bright WhatsApp green - contrast is met by
                          using DARK text on it (6.3:1) instead of white */

  --ink:#2c2418;
  --muted:#766c5b;
  --line:#ece3d4;
  --cream:#e8f7fa;
  --cream-soft:#f1fbfd;
  --white:#ffffff;

  --maxw:1140px;
  --radius:18px;
  --radius-sm:12px;
  --shadow:0 10px 30px rgba(96,66,44,.10);
  --shadow-sm:0 4px 14px rgba(96,66,44,.08);

  --font-head:'FbCarbon','Rubik',sans-serif;
  --font-body:'FbCarbon','Assistant',sans-serif;

  /* global typography scale - "size 2" the client picked in the variants demo
     (nav is excluded: its font sizes stay fixed so the bar never wraps) */
  --fscale:1.12;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  font-size:calc(19px * var(--fscale, 1));
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3{font-family:var(--font-head);line-height:1.15;margin:0;font-weight:700;}
p{margin:0;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul,ol{margin:0;padding:0;list-style:none;}

.container{
  width:100%;
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:18px;
}

/* "ZOOZ" inside running text inherits the surrounding color/weight, and is
   rendered slightly smaller than the surrounding font size: Latin caps are
   taller than Hebrew glyphs, so 1:1 sizing reads as "bigger" (client request
   - zooz must never look larger than the line it sits in) */
.z{color:inherit;font-family:inherit;font-weight:inherit;font-size:.88em;}

/* ---------- reveal on scroll (gated behind html.js) ---------- */
.js .reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.is-visible{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .js .reveal{opacity:1;transform:none;transition:none;}
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:var(--font-head);font-weight:700;font-size:calc(17px * var(--fscale, 1));
  padding:14px 22px;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  text-align:center;line-height:1.25;
}
.btn:hover{transform:translateY(-2px);}
.btn .wa{width:22px;height:22px;fill:currentColor;flex:none;}

/* dark brand-brown text on the bright green = 6.3:1 (WCAG AA) while keeping
   the original button color the client picked */
.btn-bot{background:var(--wa);color:var(--brown-deep);box-shadow:0 6px 18px rgba(37,211,102,.35);}
.btn-bot:hover{box-shadow:0 9px 24px rgba(37,211,102,.45);}

.btn-outline{background:transparent;border-color:currentColor;}

/* =========================================================
   ACCESSIBILITY UTILITIES (ת"י 5568 / WCAG 2.0 AA)
   ========================================================= */
/* text for screen readers only */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
/* skip link: hidden until it receives keyboard focus */
.skip-link{
  position:absolute;top:-100px;inset-inline-start:12px;z-index:1000;
  background:var(--brown-deep);color:#fff;font-weight:700;
  padding:12px 20px;border-radius:0 0 12px 12px;transition:top .15s ease;
}
.skip-link:focus{top:0;}
/* clearly visible keyboard focus everywhere (gold ring reads on every band) */
a:focus-visible,button:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--gold);outline-offset:2px;border-radius:4px;
}

/* yellow "dripping ribbon" CTA - vectorized one-to-one from the client's
   button PNG (assets/img/ribbon-cta.svg), stretched behind the label via an
   absolutely-positioned <img class="ribbon-bg">. The band fills the top ~79%
   of the artwork and the paint drips hang below, hence the asymmetric padding
   that keeps the text inside the band. */
.btn-ribbon{
  background:none;
  color:var(--brown-deep);
  border-radius:0;
  padding:14px 20px 26px;
  position:relative;
  isolation:isolate;
  filter:drop-shadow(0 7px 12px rgba(96,66,44,.28));
  /* the label must ALWAYS fit the band on every device: one line, with a
     viewport-scaled font. A fixed font size clipped the text on narrow phones. */
  white-space:nowrap;
  font-size:clamp(12px, 4vw, calc(20px * var(--fscale, 1)));
}
.btn-ribbon .wa{width:1.2em;height:1.2em;} /* icon scales with the label */
.btn-ribbon .ribbon-bg{
  position:absolute;inset:0;width:100%;height:100%;
  z-index:-1;pointer-events:none;
}
.btn-ribbon:hover{transform:translateY(-2px);filter:drop-shadow(0 10px 16px rgba(96,66,44,.36));}
.btn-ribbon .wa{fill:var(--brown-deep);}

.btn-lg{padding:17px 26px;width:100%;}
/* mobile: slightly narrower than full width so the band ends breathe */
.btn-ribbon.btn-lg{padding:16px 22px 30px;width:96%;}

@media (min-width:600px){
  .btn-lg{width:auto;}
  .btn-ribbon.btn-lg{width:auto;}
}
@media (min-width:768px){
  .btn{font-size:calc(18.5px * var(--fscale, 1));}
  .btn-ribbon{padding-inline:64px;}
  .btn-ribbon.btn-lg{padding-inline:84px;}
}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:var(--maxw);margin-inline:auto;
  padding:10px 16px;
  display:flex;flex-direction:row-reverse;align-items:center;justify-content:space-between;
  gap:12px;
}
/* logo */
.logo{display:flex;align-items:center;gap:10px;}
.logo-img{height:46px;width:auto;display:block;flex:none;}
.logo-mark{
  position:relative;
  font-family:var(--font-head);font-weight:700;font-size:calc(26px * var(--fscale, 1));letter-spacing:.5px;
  color:var(--teal);line-height:1;
}
.logo-mark.sm{font-size:calc(30px * var(--fscale, 1));}
.logo-ray{
  position:absolute;inset-block-start:-7px;inset-inline-end:-4px;
  width:14px;height:14px;
  background:
    radial-gradient(circle at 50% 120%, var(--gold) 0 30%, transparent 32%),
    conic-gradient(from -40deg, transparent 0 8%, var(--gold) 9% 12%, transparent 13% 28%, var(--gold) 29% 32%, transparent 33% 52%, var(--gold) 53% 56%, transparent 57%);
  border-radius:50%;
}

/* hamburger */
.nav-toggle{
  width:42px;height:42px;border:none;background:transparent;cursor:pointer;
  display:flex;flex-direction:column;justify-content:center;gap:5px;padding:8px;
}
.nav-toggle span{height:3px;width:100%;background:var(--brown);border-radius:3px;transition:transform .25s ease,opacity .25s ease;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* mobile drawer */
.nav-menu{
  position:fixed;inset-block-start:62px;inset-inline:0;
  background:#fff;border-bottom:1px solid var(--line);
  flex-direction:column;align-items:stretch;gap:0;
  padding:8px 16px 18px;
  display:none;
  box-shadow:var(--shadow);
}
.nav-menu.open{display:flex;}
.nav-menu a{
  font-family:var(--font-head);font-weight:600;font-size:18px;color:var(--ink);
  padding:13px 6px;border-bottom:1px solid var(--line);
}
.nav-menu a:last-child{border-bottom:none;}
.nav-cta{margin-top:12px;border-bottom:none!important;}

@media (min-width:920px){
  .nav-toggle{display:none;}
  .nav-menu{
    position:static;display:flex;flex-direction:row;align-items:center;gap:6px;
    padding:0;border:none;box-shadow:none;background:transparent;width:auto;
  }
  .nav-menu a{border-bottom:none;padding:8px 12px;font-size:17.5px;border-radius:8px;}
  .nav-menu a:hover{color:var(--teal);}
  /* active stands out from the plain links with a teal pill border */
  .nav-menu a.nav-pill{border:1.6px solid var(--teal);border-radius:999px;padding:6px 14px;color:var(--brown-deep);}
  .nav-menu a.nav-pill:hover{background:var(--teal);color:#fff;}
  .nav-cta{margin-top:0;order:-1;} /* desktop: push the bot CTA to the far right (RTL start) */
}

/* =========================================================
   HERO
   ========================================================= */
.hero{position:relative;color:#fff;overflow:hidden;}
/* flat campaign-turquoise sky (the blue from the ads) - "background 1"
   the client picked in the variants demo; replaces the hero photo */
.hero-bg{
  position:absolute;inset:0;
  background:linear-gradient(180deg,#7addea 0%,var(--teal) 42%,var(--teal-deep) 100%);
}
.hero-inner{
  position:relative;max-width:var(--maxw);margin-inline:auto;
  padding:42px 20px 48px;
  text-align:center;
}
.hero-inner .btn{text-shadow:none;}
/* 3D ZOOOOZ campaign mark inside the hero, below the CTA */
.hero-zoooz{display:block;width:min(420px,84%);height:auto;margin:26px auto 0;filter:drop-shadow(0 8px 18px rgba(0,0,0,.4));}
/* white headline on the turquoise sky (client request); the soft teal shadow
   keeps it readable against the lighter top of the gradient */
.hero h1{font-size:calc(31px * var(--fscale, 1));font-weight:700;margin-bottom:16px;color:#fff;text-shadow:0 2px 14px rgba(16,74,86,.5);}
/* the forced headline break applies on desktop only; on mobile the text
   flows naturally into two balanced lines instead of three */
.br-desktop{display:none;}
@media (min-width:768px){.br-desktop{display:inline;}}
.hero h1 .hl{color:var(--gold);}
.hero .lead{font-size:calc(18px * var(--fscale, 1));color:#123f47;max-width:680px;margin-inline:auto;margin-bottom:14px;}
.hero .lead-strong{font-weight:700;color:var(--brown-deep);font-size:calc(18.5px * var(--fscale, 1));max-width:620px;margin-inline:auto;margin-bottom:24px;}

.hero-art{margin-top:38px;}
.zoooz{
  font-family:var(--font-head);font-weight:700;font-size:calc(54px * var(--fscale, 1));letter-spacing:2px;
  background:linear-gradient(180deg,#fff 60%, #e9e0cf 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  filter:drop-shadow(0 6px 0 rgba(0,0,0,.18));
  display:inline-block;
}

@media (min-width:768px){
  .hero h1{font-size:calc(54px * var(--fscale, 1));}
  .hero .lead{font-size:calc(20.5px * var(--fscale, 1));}
  .hero .lead-strong{font-size:calc(21.5px * var(--fscale, 1));}
  .hero-inner{padding:70px 20px 76px;}
  .zoooz{font-size:calc(96px * var(--fscale, 1));}
}

/* =========================================================
   STEPS STRIP (signature)
   ========================================================= */
.steps{
  --steps-gold:var(--gold);
  background:linear-gradient(180deg,var(--brown) 0%,var(--brown-deep) 100%);
  color:#fff;position:relative;padding-block:12px;
}
/* identical teal wavy lines - a touch wider than the text but clearly inset from the screen edges (never full width) */
.steps-edge{display:block;width:calc(100% - 28px);max-width:var(--maxw);margin-inline:auto;height:12px;}
.steps-inner{max-width:var(--maxw);margin-inline:auto;padding:16px 24px;text-align:center;}

/* steps list - row on ALL sizes (3 across, like the reference) */
.steps-row{display:flex;flex-direction:row;justify-content:center;align-items:stretch;gap:4px;margin:0;}
.steps-row li{display:flex;align-items:center;justify-content:center;}
.step{flex:1 1 0;min-width:0;display:flex;align-items:center;justify-content:center;}
.step .step-tx{font-family:var(--font-head);font-weight:700;font-size:calc(17.5px * var(--fscale, 1));line-height:1.28;color:#fff;}

/* small gold-circle chevron separator over a teal connector line (very small on mobile) */
.step-sep{position:relative;flex:none;display:flex;align-items:center;justify-content:center;width:15px;align-self:stretch;}
.step-sep::before{content:"";position:absolute;left:50%;transform:translateX(-50%);top:3px;bottom:3px;width:2.5px;background:var(--teal);border-radius:3px;}
.sep-dot{
  position:relative;z-index:1;display:flex;align-items:center;justify-content:center;
  width:13px;height:13px;border-radius:50%;background:var(--steps-gold);color:var(--brown-deep);
  box-shadow:0 1px 4px rgba(0,0,0,.28);
}
.sep-dot svg{width:6px;height:6px;} /* chevron points left (RTL flow); tiny on mobile */

.steps-foot{font-family:var(--font-head);font-weight:700;font-size:calc(21.25px * var(--fscale, 1));color:var(--steps-gold);margin:10px 0 0;padding-inline:14px;text-align:center;}
.steps-foot .w{color:#fff;} /* first two words white, the rest gold */

@media (min-width:760px){
  .steps-inner{padding:18px 18px;}
  .steps-row{gap:10px;}
  .step .step-tx{font-size:calc(28.75px * var(--fscale, 1));}
  .step-sep{width:46px;}
  .step-sep::before{width:4px;}
  .sep-dot{width:22px;height:22px;}
  .sep-dot svg{width:11px;height:11px;}
  .steps-foot{font-size:calc(32.5px * var(--fscale, 1));}
}

/* =========================================================
   SECTION TITLES
   ========================================================= */
/* mobile stays 27px - the long Aktiv title must not wrap to two lines */
.sec-title{font-size:calc(27px * var(--fscale, 1));font-weight:700;text-align:center;margin-bottom:26px;color:var(--brown-deep);}
.sec-title.light{color:#fff;}
@media (min-width:768px){.sec-title{font-size:calc(40px * var(--fscale, 1));}}

/* =========================================================
   PRODUCT CARDS (inside the hero - client decision 22.7)
   ========================================================= */
/* Both cards share one calm look: clean white on the turquoise sky, brand
   accents only in the tags and buttons (client 22.7: smaller + quieter). */
.hero-products{margin-top:32px;}
/* deep brand brown on the turquoise sky (5:1) - white failed contrast here,
   and this matches the approved contact-band title style */
.hero-prod-title{
  font-size:calc(22px * var(--fscale, 1));font-weight:700;color:var(--brown-deep);
  margin-bottom:14px;
}
.prod-grid{display:grid;grid-template-columns:1fr;gap:14px;max-width:400px;margin-inline:auto;}
.prod-card{
  position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:16px 16px 15px;box-shadow:var(--shadow-sm);
}
.prod-tag{
  display:inline-block;font-family:var(--font-head);font-weight:700;font-size:calc(12px * var(--fscale, 1));
  color:#fff;background:var(--teal);padding:3px 12px;border-radius:999px;margin-bottom:8px;
}
/* "free" is the thing to emphasize (client request) - gold pill */
.prod-tag.tag-free{background:var(--gold);color:var(--brown-deep);padding:3px 14px;}
.prod-tag.tag-active{background:var(--gold);color:var(--brown-deep);}
.prod-card h3{font-size:calc(20px * var(--fscale, 1));color:var(--brown-deep);margin-bottom:5px;}
.prod-card p{font-size:calc(14.5px * var(--fscale, 1));font-weight:700;color:var(--muted);margin-bottom:10px;}
.prod-card .card-cta{width:100%;padding:10px 16px;font-size:calc(15px * var(--fscale, 1));}
/* original brand teal with dark text = 5.8:1 (WCAG AA) */
.cta-teal{background:var(--teal);color:var(--brown-deep);box-shadow:0 5px 14px rgba(42,167,184,.35);}
.cta-teal:hover{background:#5ad1e2;}

@media (min-width:760px){
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:18px;max-width:700px;}
}
@media (min-width:768px){
  .hero-prod-title{font-size:calc(28px * var(--fscale, 1));}
  .prod-card .card-cta{font-size:calc(15.5px * var(--fscale, 1));}
}

/* =========================================================
   ZOOZ ACTIVE (dark band)
   ========================================================= */
.active{
  position:relative;
  padding:48px 0 120px; /* room for the splash overlay */
  color:#fff;
  background:
    linear-gradient(160deg, rgba(42,29,12,.84), rgba(61,42,16,.78)),
    url("../img/wadi-active.jpg?v=2") center 42% / cover no-repeat;
}
.active-lead{text-align:center;max-width:780px;margin-inline:auto;color:#f0e7d7;font-size:calc(18.5px * var(--fscale, 1));margin-bottom:26px;}
.active-feats{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:560px;margin:0 auto 28px;}
.feat-tile{
  display:flex;align-items:center;gap:10px;justify-content:center;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-sm);padding:14px 10px;
  font-family:var(--font-head);font-weight:700;font-size:calc(17px * var(--fscale, 1));
}
.feat-tile svg{width:32px;height:32px;color:var(--gold);flex:none;}
.feat-tile span{font-size:calc(17px * var(--fscale, 1));}
.active-h3{
  text-align:center;font-family:var(--font-head);font-weight:700;
  font-size:calc(23px * var(--fscale, 1));color:var(--gold);margin-bottom:16px;
}
.active-note{text-align:center;color:#f0e7d7;font-size:calc(17px * var(--fscale, 1));margin-bottom:16px;}
/* single prominent purchase button (replaced the embedded form + table 23.7;
   archived in docs/archive-tickets-schedule-2026-07-23.html) */
.btn-tickets{
  display:flex;max-width:560px;margin:34px auto 0;
  background:var(--teal);color:var(--brown-deep);
  font-size:calc(20px * var(--fscale, 1));padding:18px 28px;
  box-shadow:0 10px 28px rgba(0,0,0,.35), inset 0 0 0 2.5px rgba(255,255,255,.35);
}
.btn-tickets:hover{background:#5ad1e2;box-shadow:0 14px 34px rgba(0,0,0,.45), inset 0 0 0 2.5px rgba(255,255,255,.5);}
.btn-tickets .ticket-ic{width:28px;height:28px;flex:none;}
.tickets-hint{text-align:center;color:#f0e7d7;font-size:calc(14px * var(--fscale, 1));margin-top:10px;}
@media (min-width:768px){
  .btn-tickets{font-size:calc(23px * var(--fscale, 1));padding:20px 36px;}
}

/* numbered "how it works" steps - gold circle number on the inline-start (right in RTL) */
.active-steps{max-width:680px;margin:0 auto 30px;display:grid;gap:12px;counter-reset:active-step;}
/* desktop: wide enough that step 4's full sentence fits on a single line */
@media (min-width:1000px){
  .active-steps{max-width:940px;}
}
.active-steps li{
  position:relative;padding:13px 14px;padding-inline-start:56px;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-sm);font-size:calc(17px * var(--fscale, 1));color:#f0e7d7;
}
.active-steps li::before{
  counter-increment:active-step;content:counter(active-step);
  position:absolute;inset-inline-start:13px;top:50%;translate:0 -50%;
  width:30px;height:30px;border-radius:50%;background:var(--gold);color:var(--brown-deep);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-weight:700;font-size:calc(16px * var(--fscale, 1));
}

.active .btn{display:flex;max-width:520px;margin-inline:auto;}
.about .btn{display:flex;max-width:420px;margin-inline:auto;}

/* weekly schedule table (restored 26.7 above the purchase button; the
   tickchak embed stays archived in
   docs/archive-tickets-schedule-2026-07-23.html) */
.schedule-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:var(--radius-sm);border:1px solid rgba(255,255,255,.16);}
.schedule{width:100%;min-width:760px;border-collapse:collapse;background:rgba(255,255,255,.05);}
.schedule th{
  background:var(--gold);color:var(--brown-deep);padding:11px 12px;
  font-family:var(--font-head);font-weight:700;font-size:calc(15.5px * var(--fscale, 1));text-align:center;
}
.schedule td{
  padding:11px 12px;border-top:1px solid rgba(255,255,255,.14);
  color:#f0e7d7;font-size:calc(15px * var(--fscale, 1));text-align:center;vertical-align:top;
}
.schedule tbody tr:nth-child(even) td{background:rgba(255,255,255,.04);}

@media (min-width:760px){
  .active{padding:72px 0 190px;}
  .active-feats{grid-template-columns:repeat(4,1fr);max-width:760px;}
  .feat-tile{flex-direction:column;text-align:center;padding:20px 12px;}
}

/* =========================================================
   ERETZ HATANACH
   ========================================================= */
.eretz{padding:48px 0;background:#fffdfa;}
.eretz-body{max-width:760px;margin-inline:auto;}
.eretz-body p{font-size:calc(19px * var(--fscale, 1));color:#4b4233;margin-bottom:16px;}
.eretz-body p:last-child{margin-bottom:0;}
@media (min-width:768px){.eretz{padding:72px 0;}.eretz-body p{font-size:calc(20px * var(--fscale, 1));}}

/* =========================================================
   ABOUT (dark band)
   ========================================================= */
/* vertical gradient: the top edge meets the eretz splash (brown), the bottom
   meets the contact splash strip (brown-deep) with no visible seam */
.about{padding:48px 0;background:linear-gradient(180deg,var(--brown),var(--brown-deep));color:#fff;}
.about-lead{text-align:center;max-width:780px;margin-inline:auto;color:#efe6d6;font-size:calc(18.5px * var(--fscale, 1));margin-bottom:30px;}
.partners{display:grid;grid-template-columns:1fr;gap:16px;}
.partner{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);padding:22px 20px;text-align:center;
}
.partner-logo{
  /* PLACEHOLDER partner logo - swap for <img> */
  font-family:var(--font-head);font-weight:700;font-size:calc(21px * var(--fscale, 1));color:var(--gold);
  padding-bottom:12px;margin-bottom:12px;border-bottom:1px solid rgba(255,255,255,.16);
}
.partner p{font-size:calc(17px * var(--fscale, 1));color:#e7ddcc;}

@media (min-width:820px){
  .about{padding:72px 0;}
  /* desktop: אשכול + גילוי side by side, שורשים נט centered below */
  .partners{grid-template-columns:repeat(2,1fr);gap:22px;max-width:760px;margin-inline:auto;}
  .partner-wide{grid-column:1 / -1;justify-self:center;max-width:calc(50% - 11px);}
}

/* =========================================================
   CONTACT
   ========================================================= */
/* compact band (client 22.7: "at least half the height") */
.contact{padding:24px 0;background:linear-gradient(180deg,var(--teal),var(--teal-deep));color:#fff;text-align:center;}
/* the slogan keeps the approved ad typography: bold brown on the turquoise sky */
.contact .sec-title{color:var(--brown-deep);}
/* two contact-channel cards: frosted white on the turquoise band,
   stacked on mobile, side by side on desktop */
.contact-cards{display:grid;grid-template-columns:1fr;gap:12px;max-width:780px;margin-inline:auto;}
.contact-card{
  /* dark translucent teal so the white card text reaches ~5:1 contrast
     (the earlier frosted-white tint left white-on-teal at ~2:1) */
  background:rgba(10,61,70,.55);border:1px solid rgba(255,255,255,.35);
  border-radius:var(--radius);padding:18px 16px;
  display:flex;flex-direction:column;align-items:center;
}
.contact-card h3{font-family:var(--font-head);font-weight:700;font-size:calc(17.5px * var(--fscale, 1));color:#fff;margin-bottom:6px;}
.contact-card p{font-size:calc(15px * var(--fscale, 1));color:#eafcff;margin-bottom:14px;max-width:340px;}
.contact-card .contact-card-btn{
  width:100%;max-width:280px;margin-top:auto;
  padding:11px 16px;font-size:calc(15.5px * var(--fscale, 1));
}
.contact .btn-outline{color:#fff;}
.contact .btn-outline:hover{background:rgba(255,255,255,.14);}

@media (min-width:760px){
  .contact-cards{grid-template-columns:1fr 1fr;gap:16px;}
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--brown-deep);color:#d8ccb5;}
.footer-inner{
  display:flex;flex-direction:column;gap:22px;align-items:center;text-align:center;
  padding-block:34px;
}
.footer-brand{display:flex;flex-direction:column;align-items:center;gap:6px;}
.footer-logo{height:46px;width:auto;display:block;}
.footer-brand p{font-size:calc(15.5px * var(--fscale, 1));color:#b7a98e;margin:0;}
.footer-links{display:flex;flex-direction:column;gap:12px;align-items:center;}
.footer-nav{display:flex;flex-wrap:wrap;gap:6px 18px;justify-content:center;}
.footer-nav a{font-family:var(--font-head);font-weight:600;font-size:calc(16.5px * var(--fscale, 1));color:#d8ccb5;}
.footer-nav a:hover{color:var(--gold);}
/* legal docs sit on their own row, quieter than the main footer nav */
.footer-legal{display:flex;flex-wrap:wrap;gap:6px 16px;justify-content:center;}
.footer-legal a{font-family:var(--font-head);font-weight:500;font-size:calc(14.5px * var(--fscale, 1));color:#b7a98e;}
.footer-legal a:hover{color:var(--gold);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  text-align:center;font-size:calc(13.5px * var(--fscale, 1));color:#b8ab92;padding:16px;
}
.footer-bottom > span{display:block;} /* direct child only - inner spans (year, ZOOZ) stay inline */
.footer-credit{display:inline-block;margin-top:8px;color:#b8ab92;font-size:calc(13px * var(--fscale, 1));}
.footer-credit:hover{color:var(--gold);}

@media (min-width:760px){
  .footer-inner{flex-direction:row;justify-content:space-between;text-align:start;}
  /* desktop: sentence sits to the left of the logo, vertically centered */
  .footer-brand{flex-direction:row;align-items:center;gap:14px;}
}

/* =========================================================
   ERETZ HATANACH LOGO
   ========================================================= */
.eretz-head{text-align:center;}
.eretz-logo{display:block;width:min(460px,86%);height:auto;margin:10px auto 28px;}
@media (min-width:768px){.eretz-logo{width:min(520px,68%);margin-bottom:36px;}}

/* =========================================================
   IMAGE CAROUSEL + LIGHTBOX
   ========================================================= */
.gallery{background:var(--cream);padding:18px 0;overflow:hidden;}
.carousel{
  overflow-x:auto;overflow-y:hidden;width:100%;cursor:grab;direction:ltr;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;
}
.carousel::-webkit-scrollbar{display:none;}
.carousel.dragging{cursor:grabbing;}
/* the WCAG 2.2.2 stop-motion control lives in the site-wide accessibility
   widget (aw-noanim class) - no per-carousel button needed */
.carousel-track{
  display:flex;gap:12px;direction:ltr;width:max-content;padding:6px;
  user-select:none;-webkit-user-select:none;
}
.carousel-item{
  flex:0 0 auto;padding:0;border:none;background:none;cursor:pointer;
  width:clamp(190px,46vw,300px);height:clamp(140px,34vw,212px);
  border-radius:14px;overflow:hidden;box-shadow:var(--shadow-sm);
}
.carousel-item img{width:100%;height:100%;object-fit:cover;display:block;pointer-events:none;}
@media (min-width:760px){
  .gallery{padding:26px 0;}
  .carousel-track{gap:16px;}
}

.lightbox{
  position:fixed;inset:0;z-index:1000;
  display:flex;align-items:center;justify-content:center;padding:20px;
  background:rgba(18,11,3,.88);
}
.lightbox[hidden]{display:none;}
.lightbox-img{max-width:94vw;max-height:88vh;border-radius:12px;box-shadow:0 24px 70px rgba(0,0,0,.55);}
.lightbox-close{
  position:fixed;top:14px;inset-inline-start:18px;
  width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:rgba(255,255,255,.16);color:#fff;font-size:calc(26px * var(--fscale, 1));line-height:1;
  display:flex;align-items:center;justify-content:center;
}
.lightbox-close:hover{background:rgba(255,255,255,.28);}

/* =========================================================
   SPLASH DIVIDERS - exact vector replicas of the client's
   reference spill pictures (data/pics), uniformly scaled and
   extended sideways. currentColor = the color of the section
   BELOW the seam; strip containers carry the color ABOVE it.
   ========================================================= */
.splash-div{display:block;width:100%;height:clamp(72px,9.5vw,140px);}
/* -1px bottom margin: the next section's background covers the svg's
   antialiased bottom row (it blends with the strip bg and reads as a hairline) */
.splash-strip{line-height:0;overflow:hidden;margin-bottom:-1px;}
.splash-overlay{position:absolute;inset-inline:0;bottom:-1px;pointer-events:none;}
/* strip backgrounds (section above the seam) */
.sd-bg-deep{background:var(--brown-deep);}
.sd-bg-eretz{background:#fffdfa;}
.sd-bg-tealdeep{background:var(--teal-deep);}
/* seam fills (section below it) */
.sd-brown{color:var(--brown);}
.sd-white{color:#fff;}
.sd-cream{color:var(--cream);}
.sd-eretz{color:#fffdfa;}
.sd-teal{color:var(--teal);}
.sd-deep{color:var(--brown-deep);}

/* =========================================================
   FLOATING BOT BUTTON (follows the scroll)
   ========================================================= */
.float-bot{
  /* raised ~1cm (38px) off the edge; keep in sync with the a11y widget
     button (.aw-btn in a11y-widget.js) so both floats sit on one line */
  position:fixed;bottom:35px;inset-inline-end:16px;z-index:200;
  display:inline-flex;align-items:center;gap:8px;
  background:var(--wa);color:var(--brown-deep);
  font-family:var(--font-head);font-weight:700;font-size:calc(16px * var(--fscale, 1));
  padding:11px 16px;border-radius:999px;
  box-shadow:0 8px 24px rgba(0,0,0,.30);
  transition:transform .15s ease,box-shadow .15s ease;
}
.float-bot:hover{transform:translateY(-2px);box-shadow:0 11px 28px rgba(0,0,0,.36);}
.float-bot .wa{width:20px;height:20px;fill:currentColor;flex:none;}
@media (min-width:760px){
  .float-bot{bottom:41px;inset-inline-end:22px;font-size:calc(17.5px * var(--fscale, 1));padding:13px 20px;}
}
