:root {
  --ink: #12100e;
  --ink2: #1c1917;
  --paper: #f4f2ee;
  --muted: #a8a39b;
  --dim: #6b6862;
  --line: rgba(168, 163, 155, .22);
  --paper-muted: #5c5852;
  --paper-line: rgba(18, 16, 14, .14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--ink); color: var(--paper); }
body {
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans Hebrew", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 22px; }

nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 10;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #fff;
}
body.inner nav { background: var(--ink); }
nav .word { font-size: 13px; letter-spacing: .16em; }
nav .links { display: flex; gap: 22px; align-items: center; font-size: 14px; color: var(--muted); }
nav .go { color: #fff; }
nav .lang { color: var(--paper); letter-spacing: .04em; }
@media (max-width: 720px) {
  nav .links a:not(.go):not(.lang) { display: none; }
}

header {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
header video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #12100e 12%, rgba(18, 16, 14, .58) 52%, rgba(18, 16, 14, .28) 100%);
}
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 22px 52px;
  max-width: 980px;
  margin: 0 auto;
}
h1 {
  font-size: clamp(34px, 7.4vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 11ch;
}
html[lang="en"] h1 { max-width: 18ch; }
.sub {
  margin-top: 16px;
  font-size: clamp(18px, 2.4vw, 22px);
  color: #ddd8d0;
  max-width: 22ch;
  line-height: 1.35;
}
.where { margin-top: 20px; font-size: 15px; color: #cfc9c0; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  background: #fff;
  color: #12100e;
  border: 0;
  border-radius: 980px;
  padding: 13px 22px;
  font: inherit;
  font-size: 17px;
  cursor: pointer;
}
.pill:hover { opacity: .92; }

section { padding: 88px 0; }
.paper { background: var(--paper); color: var(--ink); }
.dark2 { background: var(--ink2); }
h2 {
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 16ch;
  margin-bottom: 16px;
}
.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}
.paper .lede { color: var(--paper-muted); }

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.cell {
  padding: 32px 0 8px;
  padding-inline-end: 28px;
  border-inline-end: 1px solid var(--line);
}
.cell:last-child { border-inline-end: 0; padding-inline-end: 0; }
.cell h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; line-height: 1.25; }
.cell p { font-size: 16px; color: var(--muted); line-height: 1.65; }
.paper .grid3 { border-top-color: var(--paper-line); }
.paper .cell { border-inline-end-color: var(--paper-line); }
.paper .cell p { color: var(--paper-muted); }
@media (max-width: 800px) {
  .grid3 { grid-template-columns: 1fr; }
  .cell {
    border-inline-end: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
  }
  .paper .cell { border-top-color: var(--paper-line); }
  .cell:first-child { border-top: 0; padding-top: 28px; }
}

.rows { margin-top: 12px; }
.row {
  display: grid;
  grid-template-columns: 72px 1fr 1.3fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.row b { font-size: 13px; letter-spacing: .12em; color: var(--dim); }
.row h3 { font-size: 24px; font-weight: 700; }
.row p { color: var(--muted); font-size: 17px; }
@media (max-width: 720px) {
  .row { grid-template-columns: 52px 1fr; }
  .row p { grid-column: 2; }
}

.who { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.who span { border: 1px solid var(--line); padding: 8px 14px; font-size: 15px; }
.paper .who span { border-color: rgba(18, 16, 14, .16); }

.more { display: inline-block; margin-top: 28px; text-decoration: underline; text-underline-offset: 3px; font-size: 16px; }
.paper .more { color: var(--ink); }

.faq { max-width: 640px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.paper .faq details { border-bottom-color: var(--paper-line); }
.faq summary { cursor: pointer; font-size: 20px; font-weight: 600; }
.faq p { margin-top: 10px; color: var(--muted); }
.paper .faq p { color: var(--paper-muted); }

form { max-width: 440px; margin: 28px 0 0; display: grid; gap: 12px; }
input, textarea {
  width: 100%;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 16, 14, .12);
  border-radius: 980px;
  padding: 12px 20px;
  outline: none;
}
textarea { border-radius: 22px; min-height: 110px; resize: vertical; }
.mail {
  display: inline-block;
  margin-top: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bio { max-width: 46ch; font-size: 18px; color: var(--muted); line-height: 1.65; }
.bio + .bio { margin-top: 16px; }
.bio a, .lede a, .prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page { padding: 120px 0 88px; }
.prose { max-width: 58ch; }
.prose p { margin-bottom: 16px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.prose h2 {
  font-size: clamp(22px, 3vw, 28px);
  max-width: none;
  margin: 36px 0 12px;
  color: var(--paper);
}
.prose .updated { font-size: 15px; color: var(--dim); margin-bottom: 28px; }

footer {
  padding: 28px 22px 48px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  max-width: 980px;
  margin: 0 auto;
}
footer a:hover { color: var(--paper); }

.founder { display:grid; grid-template-columns:160px 1fr; gap:28px; align-items:start; }
.tel { display:inline-block; margin-top:10px; }
@media (max-width:720px){ .founder { grid-template-columns:1fr; } .founder img { width:120px; height:120px; } }

