/* ========== BASE ========== */
:root {
  --cream:   #ffffff;
  --cream-2: #f5f5f5;
  --olive:   #131313;
  --olive-2: #222222;
  --mustard: #F3DC5D;
  --ox:      #EC008C;
  --plum:    #2a1f3d;
  --ink:     #131313;
  --ink-2:   #333333;
  --muted:   #888888;
  --sans:    'Rubik', -apple-system, sans-serif;
  --serif:   'Zilla Slab', Georgia, serif;
  --mono:    'Space Mono', ui-monospace, monospace;
  --hand:    'Caveat', cursive;
}
[lang="he"] { --sans: 'Rubik', sans-serif; --serif: 'Frank Ruhl Libre', serif; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 36px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* paper texture */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: multiply; opacity: 0.5;
}

/* ========== LANG SWITCHER (Polylang) ========== */
.lang-switcher {
  position: fixed; z-index: 9999; top: 14px; right: 14px;
  display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--mustard);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  list-style: none;
}
[dir="rtl"] .lang-switcher { right: auto; left: 14px; box-shadow: -4px 4px 0 var(--mustard); }
.lang-switcher__btn {
  border: 0; background: transparent; padding: 7px 12px; border-radius: 999px;
  cursor: pointer; color: var(--ink); font: inherit; font-weight: 700;
  text-decoration: none; transition: color 0.12s;
}
.lang-switcher__btn:hover { color: var(--ox); }
.lang-switcher__btn.is-active { background: var(--ox); color: #fff; }

/* ========== NAV ========== */
.nav-bar { background: var(--ox); border-bottom: 2px solid var(--ink); }
.nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; color: var(--cream);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em; color: var(--cream);
}
.nav__mark {
  width: 34px; height: 34px; background: var(--mustard);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 900; transform: rotate(-6deg); font-size: 18px;
}
.nav__brand small { font-weight: 500; color: rgba(255,255,255,0.65); font-size: 13px; letter-spacing: 0; }
.nav__links { display: flex; gap: 26px; align-items: center; font-size: 15px; font-weight: 600; }
.nav__links a { color: var(--cream); }
.nav__links a:hover { color: var(--mustard); }
.nav__cta {
  background: var(--cream); color: var(--ox); padding: 9px 18px;
  border: 2px solid var(--cream); font-weight: 700; font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.nav__cta:hover { background: var(--mustard); color: var(--ink); border-color: var(--mustard); }
@media (max-width: 760px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ========== HERO ========== */
.hero { position: relative; padding: 60px 0 0; border-bottom: 2px solid var(--ink); overflow: hidden; }
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2); margin-bottom: 30px;
}
[lang="he"] .hero__top { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; font-weight: 600; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--olive); color: var(--cream); padding: 5px 12px;
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mustard);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(0.8);} }

.hero__h1 {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(60px, 15vw, 232px);
  line-height: 0.84; letter-spacing: -0.045em; margin: 0;
}
[lang="he"] .hero__h1 { font-weight: 800; font-size: clamp(48px, 11vw, 176px); line-height: 0.96; letter-spacing: -0.025em; }
.hero__h1 .em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; color: var(--ox); }
[lang="he"] .hero__h1 .em { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--ox); }
.hero__h1 .mark { background: var(--mustard); padding: 0 0.1em; display: inline-block; transform: rotate(-1.2deg); }
.hero__h1 .strike { text-decoration: line-through; text-decoration-thickness: 6px; text-decoration-color: var(--ox); color: var(--muted); }
.hero__h1 .ast { color: var(--ox); font-family: var(--serif); font-weight: 400; display: inline-block; transform: translateY(0.1em); }
.hero__h1 .scribble { position: relative; display: inline-block; }
.hero__h1 .scribble::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -0.04em; height: 0.18em;
  background: var(--ox);
  clip-path: polygon(0 30%,3% 50%,8% 35%,15% 60%,22% 40%,30% 55%,38% 35%,46% 60%,55% 40%,63% 55%,72% 40%,80% 60%,88% 40%,95% 55%,100% 35%,100% 100%,0 100%);
  transform: rotate(-1deg);
}

.hero__bottom {
  margin-top: 60px; padding: 36px 0 50px; border-top: 2px solid var(--ink);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: end;
}
.hero__sub { font-size: clamp(20px, 2vw, 26px); line-height: 1.4; font-weight: 400; color: var(--ink-2); max-width: 42ch; }
.hero__sub .red  { color: var(--ox); font-weight: 700; }
.hero__sub .em   { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ox); }
[lang="he"] .hero__sub .em { font-family: var(--sans); font-style: normal; font-weight: 700; }

.hero__cta-stack { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
[dir="rtl"] .hero__cta-stack { align-items: flex-start; }
.hero__cta {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--ox); color: var(--cream); padding: 22px 30px;
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--mustard);
  transition: transform 0.12s, box-shadow 0.12s; min-width: 340px;
}
[dir="rtl"] .hero__cta { box-shadow: -7px 7px 0 var(--mustard); }
.hero__cta:hover { transform: translate(3px,3px); box-shadow: 4px 4px 0 var(--mustard); }
[dir="rtl"] .hero__cta:hover { box-shadow: -4px 4px 0 var(--mustard); }
.hero__cta-arrow { font-family: var(--serif); font-size: 32px; font-weight: 300; }
.hero__cta-sub { font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.1em; text-transform: uppercase; }
[lang="he"] .hero__cta-sub { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; }
.hero__sig {
  position: absolute; bottom: 80px; right: 20%;
  font-family: var(--hand); font-size: 48px; color: var(--ox);
  transform: rotate(-6deg); opacity: 0.85; pointer-events: none; display: none;
}
@media (min-width: 1100px) { .hero__sig { display: block; } }
@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 30px; }
  .hero__cta-stack { align-items: flex-start; }
  .hero__cta { min-width: 0; width: 100%; }
}

/* ========== TICKER ========== */
.ticker {
  background: var(--ink); color: var(--cream);
  padding: 16px 0; overflow: hidden; border-bottom: 2px solid var(--ink);
  font-family: var(--sans); font-size: 24px; font-weight: 700; letter-spacing: -0.015em;
}
[lang="he"] .ticker { font-size: 22px; font-weight: 600; }
.ticker__track {
  display: inline-flex; gap: 36px; white-space: nowrap;
  animation: tickerScroll 50s linear infinite; padding-inline-start: 36px;
}
.ticker__item { display: inline-flex; align-items: center; gap: 36px; }
.ticker__star { color: var(--mustard); font-family: var(--serif); font-weight: 300; }
@keyframes tickerScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
[dir="rtl"] .ticker__track { animation-name: tickerScrollRtl; }
@keyframes tickerScrollRtl { from{transform:translateX(0);} to{transform:translateX(50%);} }

/* ========== INTRO / ABOUT ========== */
.intro { background: var(--olive); color: var(--cream); padding: 90px 0; border-bottom: 2px solid var(--ink); position: relative; }
.intro__grid { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: start; }
.label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mustard); font-weight: 700; }
[lang="he"] .label { font-family: var(--sans); letter-spacing: 0.04em; text-transform: none; font-size: 13px; font-weight: 700; }
.intro__pre { display: flex; flex-direction: column; gap: 12px; min-width: 160px; padding-top: 8px; }
.intro__pre-meta { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.7; letter-spacing: 0.04em; }
[lang="he"] .intro__pre-meta { font-family: var(--sans); letter-spacing: 0; font-size: 13px; }
.intro__body {
  font-family: var(--sans); font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.18; font-weight: 600; letter-spacing: -0.025em; max-width: 24ch;
}
[lang="he"] .intro__body { font-weight: 600; line-height: 1.25; }
.intro__body .em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mustard); letter-spacing: -0.015em; }
[lang="he"] .intro__body .em { font-family: var(--sans); font-style: normal; font-weight: 700; color: var(--mustard); }
.intro__body .ast { color: var(--mustard); font-family: var(--serif); }
.intro__sig { margin-top: 36px; display: inline-flex; align-items: baseline; gap: 14px; font-family: var(--hand); font-size: 38px; color: var(--mustard); }
.intro__sig small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
[lang="he"] .intro__sig small { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; }
@media (max-width: 760px) { .intro__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ========== SERVICES ========== */
.services { padding: 90px 0; border-bottom: 2px solid var(--ink); }
.section__head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 50px; }
.section__head .label { margin-bottom: 14px; }
.section__title {
  font-family: var(--sans); font-size: clamp(46px, 7vw, 108px);
  line-height: 0.9; letter-spacing: -0.04em; font-weight: 900; max-width: 14ch; margin: 0;
}
[lang="he"] .section__title { font-weight: 800; font-size: clamp(40px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.025em; }
.section__title .em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ox); letter-spacing: -0.02em; }
[lang="he"] .section__title .em { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--ox); }
.section__title .ast { color: var(--ox); font-family: var(--serif); font-weight: 300; }
.section__count { font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 0.1em; align-self: end; padding-bottom: 8px; }
[lang="he"] .section__count { font-family: var(--sans); letter-spacing: 0; font-size: 14px; }

.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 2px solid var(--ink); }
.svc {
  padding: 40px 36px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
  border-bottom: 2px solid var(--ink); position: relative; border-inline-end: 2px solid var(--ink);
}
.svc:nth-child(1) { background: var(--cream); }
.svc:nth-child(2) { background: var(--mustard); border-inline-end: none; }
.svc:nth-child(3) { background: var(--ox); color: var(--cream); border-bottom: none; }
.svc:nth-child(4) { background: var(--olive); color: var(--cream); border-inline-end: none; border-bottom: none; }
.svc__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.svc__n { font-family: var(--sans); font-size: 64px; font-weight: 900; letter-spacing: -0.04em; line-height: 0.85; }
.svc__tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 5px 9px; border: 1.5px solid currentColor; align-self: flex-start; margin-top: 8px; }
[lang="he"] .svc__tag { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 12px; }
.svc__title { font-family: var(--sans); font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }
[lang="he"] .svc__title { font-weight: 700; line-height: 1.15; }
.svc__title .em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }
[lang="he"] .svc__title .em { font-family: var(--sans); font-style: normal; font-weight: 800; }
.svc__desc { font-size: 16px; line-height: 1.5; max-width: 36ch; font-weight: 400; }
@media (max-width: 720px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-inline-end: none !important; }
  .svc:last-child { border-bottom: none; }
}

/* ========== WORK / LEDGER ========== */
.work { padding: 90px 0; border-bottom: 2px solid var(--ink); background: var(--cream-2); }
.work__ledger { border-top: 2px solid var(--ink); font-family: var(--mono); }
[lang="he"] .work__ledger { font-family: var(--sans); }
.work__row {
  display: grid; grid-template-columns: 60px 1.4fr 1.6fr 100px 80px;
  gap: 24px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--ink);
  transition: padding 0.2s, background 0.2s;
}
.work__row:hover { background: var(--mustard); padding-inline-start: 14px; padding-inline-end: 14px; }
.work__n    { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.work__name { font-family: var(--sans); font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.work__meta { font-size: 13px; color: var(--ink-2); letter-spacing: 0.02em; }
[lang="he"] .work__meta { font-family: var(--sans); letter-spacing: 0; font-size: 14px; }
.work__role { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
[lang="he"] .work__role { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; }
.work__year { font-size: 11px; color: var(--muted); text-align: end; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .work__row { grid-template-columns: 30px 1fr; gap: 6px; }
  .work__meta, .work__role, .work__year { grid-column: 2; text-align: start; }
}

/* ========== POSTER ========== */
.poster { background: var(--ox); color: var(--cream); padding: 90px 0; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.poster__big {
  font-family: var(--sans); font-weight: 900; font-size: clamp(56px, 12vw, 184px);
  line-height: 0.86; letter-spacing: -0.045em; margin: 0; text-wrap: balance;
}
[lang="he"] .poster__big { font-weight: 800; font-size: clamp(44px, 9vw, 144px); line-height: 0.98; letter-spacing: -0.025em; }
.poster__big .em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--mustard); letter-spacing: -0.02em; }
[lang="he"] .poster__big .em { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--mustard); }
.poster__big .ast { color: var(--mustard); font-family: var(--serif); font-weight: 300; }
.poster__sub { margin-top: 30px; font-size: clamp(17px, 1.6vw, 20px); max-width: 54ch; color: rgba(255,255,255,0.85); line-height: 1.5; }
.poster__sig { margin-top: 30px; display: inline-flex; align-items: baseline; gap: 12px; font-family: var(--hand); font-size: 36px; color: var(--mustard); }
.poster__sig small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
[lang="he"] .poster__sig small { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; }

/* ========== WRITING ========== */
.writing { padding: 90px 0; border-bottom: 2px solid var(--ink); }
.writing__list { border-top: 2px solid var(--ink); }
.art {
  display: grid; grid-template-columns: 120px 1fr 100px;
  gap: 30px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--ink);
  transition: padding 0.2s, background 0.2s; cursor: pointer;
}
.art:hover { background: var(--mustard); padding-inline-start: 16px; padding-inline-end: 16px; }
.art__date  { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
[lang="he"] .art__date { font-family: var(--sans); letter-spacing: 0; font-size: 13px; }
.art__title { font-family: var(--sans); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
[lang="he"] .art__title { font-weight: 600; }
.art__title .em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ox); }
[lang="he"] .art__title .em { font-family: var(--sans); font-style: normal; font-weight: 700; color: var(--ox); }
.art__read { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: end; letter-spacing: 0.04em; }
[lang="he"] .art__read { font-family: var(--sans); letter-spacing: 0; font-size: 13px; }
.writing__more {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px;
  font-family: var(--sans); font-size: 18px; font-weight: 700; color: var(--ox);
  border-bottom: 2px solid var(--ox); padding-bottom: 3px;
}
@media (max-width: 720px) { .art { grid-template-columns: 1fr; gap: 4px; } }

/* ========== NEWSLETTER ========== */
.news { padding: 100px 0; background: var(--olive); color: var(--cream); border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.news__star { position: absolute; top: -40px; right: -30px; font-family: var(--serif); font-weight: 300; font-size: 380px; color: var(--olive-2); line-height: 1; pointer-events: none; }
[dir="rtl"] .news__star { right: auto; left: -30px; }
.news__inner { position: relative; z-index: 1; max-width: 780px; }
.news .label { color: var(--mustard); }
.news__title { font-family: var(--sans); font-weight: 900; font-size: clamp(36px, 5.5vw, 76px); line-height: 0.96; letter-spacing: -0.035em; margin: 18px 0 20px; }
[lang="he"] .news__title { font-weight: 800; font-size: clamp(32px, 4.5vw, 64px); line-height: 1.05; letter-spacing: -0.02em; }
.news__title .em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--mustard); letter-spacing: -0.02em; }
[lang="he"] .news__title .em { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--mustard); }
.news__sub { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 48ch; line-height: 1.5; }
.news__form { display: flex; gap: 0; margin-top: 30px; max-width: 540px; }
.news__input {
  flex: 1; background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink); padding: 16px 20px;
  font: inherit; font-size: 16px; font-weight: 500; outline: none; border-inline-end: 0;
}
.news__input::placeholder { color: var(--muted); }
.news__submit {
  background: var(--mustard); color: var(--ink); border: 2px solid var(--ink);
  padding: 16px 30px; font: inherit; font-size: 15px; font-weight: 800;
  letter-spacing: -0.01em; cursor: pointer; transition: background 0.15s;
}
.news__submit:hover { background: var(--ox); color: var(--cream); }
.news__note { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 14px; letter-spacing: 0.04em; }
[lang="he"] .news__note { font-family: var(--sans); letter-spacing: 0; font-size: 13px; }

/* ========== CONTACT ========== */
.contact { background: var(--ink); color: var(--cream); padding: 120px 0; }
.contact .label { color: var(--mustard); }
.contact__title { font-family: var(--sans); font-size: clamp(40px, 6.5vw, 104px); line-height: 0.92; letter-spacing: -0.04em; font-weight: 900; margin: 24px 0 30px; max-width: 18ch; }
[lang="he"] .contact__title { font-weight: 800; font-size: clamp(36px, 5vw, 80px); line-height: 1.0; letter-spacing: -0.025em; }
.contact__title .em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--mustard); letter-spacing: -0.02em; }
[lang="he"] .contact__title .em { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--mustard); }
.contact__title .ast { color: var(--mustard); font-family: var(--serif); font-weight: 300; }
.contact__body { font-size: clamp(18px, 1.8vw, 22px); color: rgba(255,255,255,0.8); max-width: 54ch; margin-bottom: 48px; line-height: 1.5; }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 30px; font-size: 17px; font-weight: 800; letter-spacing: -0.01em;
  background: var(--ox); color: var(--cream); border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--mustard); transition: transform 0.12s, box-shadow 0.12s;
}
.contact__btn:hover { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--mustard); color: var(--cream); }
.contact__btn--alt { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: 6px 6px 0 rgba(243,220,93,0.4); }
.contact__btn--alt:hover { background: var(--cream); color: var(--ox); box-shadow: 3px 3px 0 var(--mustard); }
.contact__meta {
  display: flex; gap: 32px; flex-wrap: wrap; margin-top: 60px; padding-top: 30px;
  border-top: 2px solid rgba(255,255,255,0.2);
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}
[lang="he"] .contact__meta { font-family: var(--sans); letter-spacing: 0; font-size: 14px; }

/* ========== FOOTER ========== */
.foot { padding: 30px 0; background: var(--ink); color: rgba(255,255,255,0.55); border-top: 2px solid rgba(255,255,255,0.18); }
.foot__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
[lang="he"] .foot__inner { font-family: var(--sans); letter-spacing: 0; text-transform: none; font-size: 13px; }
.foot__inner > :nth-child(2) { text-align: center; }
.foot__inner > :nth-child(3) { text-align: end; }
.foot__inner a:hover { color: var(--mustard); }
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 8px; }
  .foot__inner > * { text-align: start !important; }
}
