
  :root{
    --ink:#2A211E;
    --ink-soft:#3A2E29;
    --steel:#7A6F63;
    --steel-light:#A79A8C;
    --paper:#F7F1E6;
    --paper-dim:#EFE4D2;
    --rust:#7A1F2B;
    --rust-deep:#5C1620;
    --white:#FFFFFF;
    --line: rgba(42,33,30,0.14);
    --line-light: rgba(247,241,230,0.18);
    --display: 'Oswald', sans-serif;
    --body: 'IBM Plex Sans', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }

  html[lang="he"]{
    --display: 'Rubik', sans-serif;
    --body: 'Heebo', sans-serif;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--body);
    background:var(--paper);
    color:var(--ink);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  @media (max-width:640px){ .wrap{padding:0 20px;} }

  .eyebrow{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--rust);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
  }
  html[lang="he"] .eyebrow{ letter-spacing:0.02em; }
  .eyebrow::before{
    content:"";
    width:22px;
    height:1px;
    background:var(--rust);
    display:inline-block;
  }

  h1,h2,h3{
    font-family:var(--display);
    font-weight:500;
    text-transform:none;
    letter-spacing:0;
    line-height:1.18;
  }
  html[lang="he"] h1, html[lang="he"] h2, html[lang="he"] h3{
    font-weight:600;
  }

  /* ---------- LAYER-STACK SIGNATURE MOTIF ---------- */
  .layerstack{
    display:flex;
    flex-direction:column;
    width:100%;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 16px 40px -20px rgba(42,33,30,0.35);
  }
  .layerstack .ly{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:9px 16px;
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.05em;
    color:var(--paper);
  }
  html[lang="he"] .layerstack .ly{ font-family:var(--body); font-size:12px; letter-spacing:0; }
  .layerstack .ly span.um{ opacity:0.65; direction:ltr; }

  /* ---------- HEADER / NAV ---------- */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(247,241,230,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:76px;
    gap:20px;
  }
  .logo{
    display:flex;
    align-items:center;
    height:100%;
  }
  .logo img{
    height:52px;
    width:auto;
    display:block;
  }
  @media (max-width:520px){
    .logo img{ height:42px; }
  }
  .navlinks{
    display:flex;
    gap:34px;
    font-size:13px;
    letter-spacing:0.04em;
    text-transform:uppercase;
    font-weight:500;
  }
  html[lang="he"] .navlinks{ text-transform:none; letter-spacing:0; font-weight:600; }
  .navlinks a{ position:relative; padding:4px 0; }
  .navlinks a::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-2px;
    height:2px;
    background:var(--rust);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
  }
  .navlinks a:hover::after, .navlinks a:focus-visible::after{ transform:scaleX(1); }
  .navcta{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    border:1px solid var(--ink);
    padding:10px 18px;
    transition:background .2s ease, color .2s ease;
    white-space:nowrap;
  }
  html[lang="he"] .navcta{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }
  .navcta:hover{ background:var(--ink); color:var(--paper); }

  .langswitch{
    display:flex;
    border:1px solid var(--ink);
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.03em;
    flex-shrink:0;
  }
  .langswitch button{
    background:transparent;
    border:none;
    padding:9px 12px;
    cursor:pointer;
    color:var(--ink);
    font-family:inherit;
    font-size:inherit;
    transition:background .2s ease, color .2s ease;
  }
  .langswitch button + button{ border-left:1px solid var(--ink); }
  html[lang="he"] .langswitch button + button{ border-left:none; border-right:1px solid var(--ink); }
  .langswitch button.active{ background:var(--ink); color:var(--paper); }

  .mobile-menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:38px;
    height:38px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    flex-shrink:0;
  }
  .mobile-menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:var(--ink);
    transition:transform .25s ease, opacity .25s ease;
  }
  .mobile-menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.open span:nth-child(2){ opacity:0; }
  .mobile-menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  .mobile-nav-panel{
    display:none;
    flex-direction:column;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    padding:8px 0 20px;
  }
  .mobile-nav-panel.open{ display:flex; }
  .mobile-nav-panel a{
    padding:14px 0;
    margin:0 32px;
    border-bottom:1px solid var(--line);
    font-family:var(--body);
    font-size:15px;
    font-weight:600;
    color:var(--ink);
  }
  .mobile-nav-panel a.current{ color:var(--rust); }
  .mobile-nav-panel a:last-of-type{ border-bottom:none; }
  .mobile-nav-panel .mobile-cta{
    margin:16px 32px 0;
    text-align:center;
    background:var(--rust);
    color:var(--white);
    padding:14px;
    border-radius:6px;
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.05em;
    text-transform:uppercase;
  }
  html[lang="he"] .mobile-nav-panel .mobile-cta{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }

  @media (max-width:860px){
    .navlinks{ display:none; }
    .mobile-menu-toggle{ display:flex; }
  }

  a:focus-visible, button:focus-visible{
    outline:2px solid var(--rust);
    outline-offset:3px;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:var(--paper);
    color:var(--ink);
    overflow:hidden;
    padding:88px 0 0;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:56px;
    align-items:center;
    padding-bottom:72px;
  }
  @media (max-width:940px){
    .hero-grid{ grid-template-columns:1fr; padding-bottom:56px; }
  }
  .hero h1{
    font-size:clamp(34px, 4.8vw, 56px);
    color:var(--ink);
    font-weight:500;
    margin-bottom:20px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--rust);
  }
  .hero p.lead{
    font-size:17px;
    color:var(--steel);
    max-width:520px;
    margin-bottom:32px;
  }
  .hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px;}
  .btn{
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    padding:15px 26px;
    display:inline-block;
    border:1px solid transparent;
    border-radius:6px;
    transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }
  html[lang="he"] .btn{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }
  .btn-solid{ background:var(--rust); color:var(--white); }
  .btn-solid:hover{ background:var(--rust-deep); transform:translateY(-2px); }
  .btn-outline{ border-color:var(--line); color:var(--ink); }
  .btn-outline:hover{ border-color:var(--rust); color:var(--rust); transform:translateY(-2px); }

  .hero-stats{
    display:flex;
    gap:40px;
    padding-top:26px;
    border-top:1px solid var(--line);
    flex-wrap:wrap;
  }
  .hero-stats .stat b{
    display:block;
    font-family:var(--display);
    font-size:28px;
    font-weight:500;
    color:var(--ink);
  }
  .hero-stats .stat span{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--steel);
  }
  html[lang="he"] .hero-stats .stat span{ font-family:var(--body); text-transform:none; letter-spacing:0; }

  .hero-visual{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .hero-visual .capline{
    font-family:var(--mono);
    font-size:11px;
    color:var(--steel);
    text-align:center;
    letter-spacing:0.06em;
    text-transform:uppercase;
  }
  html[lang="he"] .hero-visual .capline{ font-family:var(--body); text-transform:none; letter-spacing:0; }

  .hero-baseline{
    border-top:1px solid var(--line);
    padding:18px 0;
    background:var(--paper-dim);
  }
  .marquee{
    display:flex;
    gap:56px;
    overflow:hidden;
    white-space:nowrap;
  }
  .marquee-track{
    display:flex;
    gap:56px;
    animation:scroll 26s linear infinite;
  }
  @keyframes scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  .marquee span{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--steel);
  }
  html[lang="he"] .marquee span{ font-family:var(--body); text-transform:none; letter-spacing:0; }
  .marquee span b{ color:var(--rust); font-weight:500; }

  /* ---------- SECTION SHELL ---------- */
  section{ padding:88px 0; }
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:32px;
    margin-bottom:48px;
    flex-wrap:wrap;
  }
  .section-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:500; }
  .section-head p{
    max-width:380px;
    color:var(--steel);
    font-size:15px;
  }

  /* ---------- PRODUCT LINES ---------- */
  .products{ background:var(--paper); }
  .prod-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  @media (max-width:860px){ .prod-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .prod-grid{ grid-template-columns:1fr; } }

  .prod-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    padding:30px 26px 28px;
    position:relative;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .prod-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.14); }
  .prod-card .idx{
    font-family:var(--mono);
    font-size:12px;
    color:var(--rust);
    margin-bottom:20px;
    display:block;
  }
  html[lang="he"] .prod-card .idx{ font-family:var(--body); font-weight:600; }
  .prod-card h3{
    font-size:19px;
    font-weight:500;
    margin-bottom:12px;
    letter-spacing:0.005em;
  }
  .prod-card p{
    color:var(--steel);
    font-size:14.5px;
    margin-bottom:18px;
  }
  .prod-card .mini-stack{ margin-bottom:20px; }
  .prod-card .mini-stack .ly{ padding:6px 12px; font-size:9.5px; }
  html[lang="he"] .prod-card .mini-stack .ly{ font-size:11px; }

  .prod-illus{
    background:var(--paper-dim);
    border:1px solid var(--line);
    border-radius:10px;
    padding:12px 8px;
    margin-bottom:18px;
    overflow:hidden;
  }
  .prod-illus svg{ width:100%; height:auto; display:block; }

  .prod-photo{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4px;
    height:150px;
    overflow:hidden;
    background:var(--paper-dim);
    border:1px solid var(--line);
    border-radius:10px;
    margin-bottom:18px;
  }
  .prod-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .prod-photo.single{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .prod-photo.single img{
    width:auto;
    max-width:100%;
    height:100%;
    object-fit:contain;
  }
  .prod-photo.triple{
    grid-template-columns:repeat(3,1fr);
  }

  /* ---------- INDUSTRIES ---------- */
  .industries{
    background:var(--paper-dim);
    color:var(--ink);
  }
  .industries .section-head p{ color:var(--steel); }
  .ind-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
  }
  @media (max-width:700px){ .ind-grid{ grid-template-columns:1fr; } }
  .ind-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    padding:32px;
    position:relative;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .ind-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.12); }
  .ind-card h3{
    font-size:22px;
    font-weight:500;
    color:var(--ink);
    margin-bottom:14px;
  }
  .ind-card p{ color:var(--steel); font-size:14.5px; margin-bottom:20px; }
  .ind-card ul{ display:flex; flex-direction:column; gap:9px; }
  .ind-card li{
    font-family:var(--mono);
    font-size:12.5px;
    color:var(--ink);
    display:flex;
    gap:10px;
    align-items:baseline;
  }
  html[lang="he"] .ind-card li{ font-family:var(--body); font-size:14px; }
  .ind-card li::before{
    content:"—";
    color:var(--rust);
  }

  /* ---------- WHY US ---------- */
  .why{ background:var(--paper); }
  .why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:18px;
  }
  @media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }
  .why-item{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    padding:30px 24px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .why-item:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.12); }
  .why-item .num{
    font-family:var(--mono);
    color:var(--rust);
    font-size:12px;
    margin-bottom:16px;
    display:block;
  }
  .why-item h3{
    font-size:17px;
    font-weight:500;
    margin-bottom:10px;
  }
  .why-item p{ font-size:13.5px; color:var(--steel); }

  /* ---------- CONTACT ---------- */
  .contact{
    background:var(--paper-dim);
    color:var(--ink);
  }
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
  }
  @media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; gap:44px; } }
  .contact h2{
    font-size:clamp(28px,4vw,44px);
    font-weight:500;
    color:var(--ink);
    margin-bottom:20px;
  }
  .contact p.lead{ color:var(--steel); font-size:16px; max-width:440px; margin-bottom:34px; }
  .contact-details{ display:flex; flex-direction:column; gap:18px; }
  .contact-details .row{
    display:flex;
    gap:16px;
    padding-bottom:16px;
    border-bottom:1px solid var(--line);
  }
  .contact-details .row .k{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--rust);
    width:100px;
    flex-shrink:0;
  }
  html[lang="he"] .contact-details .row .k{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; width:70px; }
  .contact-details .row .v{ font-size:15px; color:var(--ink); }
  .contact-details .row .v small{ display:block; color:var(--steel); font-size:12.5px; margin-top:3px; }

  form{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  form .frow{ display:flex; gap:16px; }
  @media (max-width:520px){ form .frow{ flex-direction:column; } }
  form label{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--steel);
    margin-bottom:8px;
    display:block;
  }
  html[lang="he"] form label{ font-family:var(--body); text-transform:none; letter-spacing:0; }
  form input, form textarea{
    width:100%;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    color:var(--ink);
    font-family:var(--body);
    font-size:15px;
    padding:10px 12px;
    transition:border-color .2s ease;
  }
  form input::placeholder, form textarea::placeholder{ color:var(--steel-light); }
  form input:focus, form textarea:focus{
    outline:none;
    border-color:var(--rust);
  }
  form .field{ flex:1; }
  form textarea{ resize:vertical; min-height:80px; }
  form button{
    align-self:flex-start;
    margin-top:10px;
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    background:var(--rust);
    color:var(--white);
    border:none;
    border-radius:6px;
    padding:15px 30px;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
  }
  html[lang="he"] form button{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }
  form button:hover{ background:var(--rust-deep); transform:translateY(-2px); }
  .form-note{ font-family:var(--mono); font-size:11px; color:var(--steel); margin-top:4px; }
  html[lang="he"] .form-note{ font-family:var(--body); }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--paper);
    border-top:1px solid var(--line);
    padding:28px 0;
  }
  .foot-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
  }
  .foot-row p{
    font-family:var(--mono);
    font-size:11.5px;
    color:var(--steel);
    letter-spacing:0.03em;
  }
  html[lang="he"] .foot-row p{ font-family:var(--body); }
  .foot-row a{ color:var(--steel); transition:color .2s ease; }
  .foot-row a:hover{ color:var(--rust); }

  /* reveal on scroll */
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .6s ease, transform .6s ease;
  }
  .reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- MULTI-PAGE NAV STATE ---------- */
.navlinks a.current{ color:var(--rust); }
.navlinks a.current::after{ transform:scaleX(1); }

/* ---------- HOME TEASER GRID ---------- */
.teasers{ background:var(--paper); }
.teaser-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media (max-width:900px){ .teaser-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .teaser-grid{ grid-template-columns:1fr; } }
.teaser-item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:30px 24px;
  display:block;
  transition:transform .2s ease, box-shadow .2s ease;
}
.teaser-item:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.12); }
.teaser-item .num{
  font-family:var(--mono);
  color:var(--rust);
  font-size:12px;
  margin-bottom:16px;
  display:block;
}
.teaser-item h3{ font-size:18px; font-weight:500; margin-bottom:10px; }
.teaser-item p{ font-size:13.5px; color:var(--steel); margin-bottom:16px; }
.teaser-item .cta{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--rust);
}
html[lang="he"] .teaser-item .cta{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }

/* ---------- PAGE HERO (sub-page banners) ---------- */
.about-hero, .page-hero{ background:var(--paper); color:var(--ink); padding:72px 0 48px; }
.about-hero h1, .page-hero h1{ font-size:clamp(28px,4vw,42px); font-weight:500; color:var(--ink); margin-bottom:16px; max-width:760px; }
.about-hero p.lead, .page-hero p.lead{ font-size:16px; color:var(--steel); max-width:620px; }
.page-hero p.lead-sub{ font-size:14px; color:var(--steel-light); max-width:600px; margin-top:8px; }
.page-hero .lead-emphasis{
  font-family:var(--body);
  font-weight:700;
  color:var(--ink);
  font-size:15px;
  margin-top:20px;
}
.page-hero .cert-view-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  font-family:var(--mono);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--rust);
  cursor:pointer;
  transition:color .2s ease, gap .2s ease;
}
html[lang="he"] .page-hero .cert-view-link{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:600; }
.page-hero .cert-view-link{ background:none; border:none; padding:0; }
.page-hero .cert-view-link::after{ content:"↓"; display:inline-block; transition:transform .25s ease; }
.page-hero .cert-view-link.open::after{ transform:rotate(180deg); }
.page-hero .cert-view-link:hover{ color:var(--rust-deep); gap:12px; }
.about-body{ background:var(--paper); }
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media (max-width:700px){ .about-grid{ grid-template-columns:1fr; } }
.about-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:30px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.12); }
.about-card h3{ font-size:18px; font-weight:500; margin-bottom:12px; }
.about-card p{ font-size:14.5px; color:var(--steel); }
.about-cta-row{ text-align:center; padding-top:48px; }

/* ---------- GALLERY PAGE ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
@media (max-width:800px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  transition:transform .4s ease;
}
.gallery-grid a{ overflow:hidden; display:block; border-radius:12px; }
.gallery-grid a:hover img{ transform:scale(1.05); }

/* ---------- CERTIFICATES PAGE ---------- */
.cert-panel{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .5s ease, opacity .4s ease;
}
.cert-panel.open{
  max-height:2000px;
  opacity:1;
}
.certs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
@media (max-width:800px){ .certs-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .certs-grid{ grid-template-columns:1fr; } }
.cert-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px -12px rgba(42,33,30,0.14); }
.cert-card img{
  width:100%;
  height:280px;
  object-fit:contain;
  background:var(--paper-dim);
  display:block;
}
.cert-card .cert-label{
  padding:14px 18px;
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--steel);
  text-align:center;
}
html[lang="he"] .cert-card .cert-label{ font-family:var(--body); }
.certs-empty{
  font-size:14.5px;
  color:var(--steel);
  border:1px dashed var(--line);
  border-radius:14px;
  padding:40px;
  text-align:center;
}

/* ---------- CUSTOMERS PAGE ---------- */
.customers-hint{
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--steel);
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:8px;
}
.customers-hint::before{
  content:"→";
  color:var(--rust);
}
html[lang="he"] .customers-hint::before{ content:"←"; }
html[lang="he"] .customers-hint{ font-family:var(--body); }
.customers-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width:700px){ .customers-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .customers-grid{ grid-template-columns:1fr; } }
.customer-tile{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  min-height:110px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.customer-tile:hover{ transform:translateY(-3px); box-shadow:0 14px 28px -12px rgba(42,33,30,0.12); }
.customer-tile .name{
  font-family:'Rubik', 'Oswald', sans-serif;
  font-size:16px;
  font-weight:600;
  text-transform:none;
  letter-spacing:0;
  color:var(--ink);
  line-height:1.35;
  direction:rtl;
}
html[lang="he"] .customer-tile .name{ font-weight:700; }

/* ---------- CUSTOMER PRODUCT MODAL ---------- */
.cust-modal-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(42,33,30,0.55);
  z-index:100;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.cust-modal-overlay.open{ display:flex; }
.cust-modal{
  background:var(--white);
  border-radius:14px;
  max-width:720px;
  width:100%;
  max-height:84vh;
  overflow-y:auto;
  padding:32px;
  position:relative;
}
.cust-modal-close{
  position:absolute;
  top:18px;
  right:18px;
  background:var(--paper-dim);
  border:1px solid var(--line);
  border-radius:50%;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-family:var(--body);
  font-size:16px;
  color:var(--ink);
  transition:background .2s ease;
}
html[lang="he"] .cust-modal-close{ right:auto; left:18px; }
.cust-modal-close:hover{ background:var(--line); }
.cust-modal h3{
  font-size:22px;
  font-weight:500;
  color:var(--ink);
  margin-bottom:20px;
  padding-right:40px;
  direction:rtl;
}
html[lang="he"] .cust-modal h3{ padding-right:40px; padding-left:0; }
.cust-modal-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media (max-width:480px){ .cust-modal-grid{ grid-template-columns:1fr; } }
.cust-modal-grid img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}
.cust-modal-empty{
  font-size:14.5px;
  color:var(--steel);
  padding:20px 0 4px;
}

/* ---------- CALL FLOATING BUTTON ---------- */
.call-float{
  position:fixed;
  bottom:22px;
  right:22px;
  width:56px;
  height:56px;
  background:var(--rust);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  z-index:90;
  transition:transform .2s ease, background .2s ease;
}
html[lang="he"] .call-float{ right:auto; left:22px; }
.call-float:hover{ transform:scale(1.08); background:var(--rust-deep); }
.call-float svg{ width:26px; height:26px; }

/* ---------- FAQ PAGE ---------- */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:820px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  text-align:left;
  padding:20px 24px;
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  font-family:var(--body);
  font-weight:600;
  font-size:15.5px;
  color:var(--ink);
}
html[lang="he"] .faq-question{ text-align:right; }
.faq-question::after{
  content:"+";
  color:var(--rust);
  font-size:22px;
  line-height:1;
  flex-shrink:0;
  transition:transform .25s ease;
}
.faq-item.open .faq-question::after{ transform:rotate(45deg); }
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-item.open .faq-answer{ max-height:400px; }
.faq-answer p{
  padding:0 24px 20px;
  font-size:14.5px;
  color:var(--steel);
  line-height:1.65;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip{
  background:var(--paper-dim);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:22px 0;
}
.trust-strip-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:14px 36px;
}
.trust-badge{
  display:flex;
  align-items:center;
  gap:9px;
  font-family:var(--body);
  font-size:14px;
  font-weight:600;
  color:var(--ink);
}
.trust-badge .check{
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--rust);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  flex-shrink:0;
}

/* ---------- CONTACT MAP ---------- */
.contact-map{
  margin-top:56px;
}
.contact-map h3{
  font-size:19px;
  font-weight:500;
  color:var(--ink);
  margin-bottom:16px;
}
.contact-map iframe{
  width:100%;
  height:320px;
  border:1px solid var(--line);
  border-radius:14px;
  display:block;
}
.contact-map .map-note{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  color:var(--steel);
  line-height:1.6;
  max-width:640px;
}
.contact-map .map-note .info-icon{
  flex-shrink:0;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--paper-dim);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--body);
  font-size:11px;
  font-weight:700;
  color:var(--rust);
  margin-top:1px;
}

/* ---------- EXPANDED FOOTER ---------- */
footer{ background:var(--paper-dim); border-top:1px solid var(--line); padding:56px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:40px;
  padding-bottom:36px;
}
@media (max-width:700px){ .footer-grid{ grid-template-columns:1fr; gap:32px; } }
.footer-col .footer-logo{ height:44px; width:auto; margin-bottom:16px; }
.footer-col p{
  font-size:13.5px;
  color:var(--steel);
  line-height:1.7;
  margin-bottom:4px;
}
.footer-col p a{ color:var(--steel); }
.footer-col p a:hover{ color:var(--rust); }
.footer-col h4{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--steel-light);
  margin-bottom:14px;
}
html[lang="he"] .footer-col h4{ font-family:var(--body); text-transform:none; letter-spacing:0; font-weight:700; }
.footer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 20px;
}
.footer-links a{
  font-size:13.5px;
  color:var(--steel);
}
.footer-links a:hover{ color:var(--rust); }
.foot-row{
  border-top:1px solid var(--line);
  padding:18px 0;
}

/* ---------- GALLERY CATEGORY ACCORDION ---------- */
.gallery-cat-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.gallery-cat-item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.gallery-cat-question{
  width:100%;
  text-align:left;
  padding:22px 26px;
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  font-family:var(--body);
  font-weight:700;
  font-size:18px;
  color:var(--ink);
}
html[lang="he"] .gallery-cat-question{ text-align:right; }
.gallery-cat-question::after{
  content:"↓";
  color:var(--rust);
  font-size:20px;
  line-height:1;
  flex-shrink:0;
  transition:transform .25s ease;
}
.gallery-cat-item.open .gallery-cat-question::after{ transform:rotate(180deg); }
.gallery-cat-answer{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .5s ease, opacity .4s ease;
}
.gallery-cat-item.open .gallery-cat-answer{ max-height:3000px; opacity:1; }
.gallery-cat-answer .gallery-grid{
  padding:0 26px 26px;
}
.gallery-cat-answer .gallery-empty{
  padding:0 26px 26px;
  font-size:14px;
  color:var(--steel-light);
}
