/* === בסיס === */
:root{
  --bg:#faf7f0;
  --ink:#1c1c1c;
  --brand:#c58e2f;
  --ink-2:#4b4b4b;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:20px;
}
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Heebo", system-ui, -apple-system, Segoe UI, Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.75;
}
a{color:var(--brand); text-decoration:underline}
a:hover{opacity:.85}
.container{max-width:1100px; margin-inline:auto; padding:0 20px}
h1,h2,h3{line-height:1.25; margin:0 0 .5em}
h1{font-weight:900; font-size:clamp(28px,4.6vw,56px)}
h2{font-weight:800; font-size:clamp(22px,3vw,34px)}
h3{font-weight:700; font-size:20px}
p{margin:0 0 1em}
.eyebrow{letter-spacing:.04em; font-weight:600; color:var(--brand); margin:0 0 .5rem}
.lede{font-size:clamp(16px,2.4vw,20px); color:var(--ink-2)}
.muted{color:#666; font-size:.95rem}
.tiny{color:#777; font-size:.875rem}
.center{text-align:center}

/* === כפתורים === */
.btn{
  display:inline-block;
  padding:.8rem 1.2rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
  border:2px solid transparent;
}
.btn--primary{background:var(--brand); color:white; box-shadow:var(--shadow)}
.btn--primary:hover{transform:translateY(-1px)}
.btn--ghost{border-color:var(--brand); color:var(--brand); background:transparent}
.btn--ghost:hover{background:rgba(197,142,47,.08)}
.cta-row{display:flex; gap:.7rem; flex-wrap:wrap; align-items:center; margin-top:1rem}
.cta-row.center{justify-content:center}

/* === כותרת עליונה === */
.site-header{
  background:linear-gradient(180deg, rgba(197,142,47,.08), transparent 60%);
  position:relative;
  overflow:hidden;
}
.header__inner{display:flex; align-items:center; gap:24px; padding:40px 20px 10px}
.header__text{flex:1}
.header__jar{width:72px; height:auto}

/* === מקטעים === */
.strip{padding:48px 0}
.strip.alt{background:white}
.strip.skinny{padding:36px 0}

.grid.two{display:grid; gap:32px}
@media (min-width:880px){
  .grid.two{grid-template-columns: 1.3fr 1fr}
}

.bullets{padding:0 1rem; margin:0 0 1rem}
.bullets li{margin:.4rem 0}

.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  margin:0 0 16px;
}

.img-block{position:relative}
.img-block img{width:100%; height:auto; display:block; border-radius:var(--radius); box-shadow:var(--shadow)}
.img-block .stamp{position:absolute; width:92px; inset:auto 16px -16px auto; transform:rotate(-8deg)}

#exhibition .poster{width:min(900px,95%); height:auto; display:block; margin:24px auto 0; border-radius:16px; box-shadow:var(--shadow)}

/* === תאריכים === */
.dates{list-style:none; margin:0 0 .5rem; padding:0}
.dates li{display:flex; gap:10px; align-items:center; padding:.4rem 0; border-bottom:1px dotted #e5e0d6}
.dates li:last-child{border-bottom:none}
.dates span{display:inline-grid; place-items:center; min-width:90px; font-weight:800; background:rgba(197,142,47,.12); border:1px solid rgba(197,142,47,.2); border-radius:12px; padding:.35rem .6rem}

/* === פוטר === */
.site-footer{padding:28px 0 60px}
.footer-logos{width:min(900px,95%); display:block; margin:0 auto 12px}

