/* Option A — Editorial Paper */
.oa {
  --pad: 56px;
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--cream-200);
  min-height: 100%;
  direction: rtl;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

/* Sticky brand bar */
.oa-bar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(219, 212, 195, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-1);
}
.oa-bar__brand img { height: 30px; display: block; }
.oa-bar__meta { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.oa-bar__link {
  color: var(--espresso); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 120ms ease;
}
.oa-bar__link:hover { border-bottom-color: var(--espresso); }
.oa-bar__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sand-400); }

/* Hero — shortened ~40% from the original 560px. overflow:hidden
   intentionally crops the bottom of the people-arrow so the figures
   appear to march off the bottom edge of the band. */
.oa-hero {
  position: relative;
  padding: 48px var(--pad) 40px;
  border-bottom: 1px solid var(--line-1);
  overflow: hidden;
  min-height: 336px;
}
.oa-hero__inner { max-width: 1080px; position: relative; z-index: 2; }

/* People-arrow — anchored bottom-left and sized so the hero band's
   overflow:hidden crops the bottom edge (figures continue past the
   visible frame). mix-blend-mode: multiply tints the asset's white
   field down onto the cream surface so it reads as a single layer
   of "paper". */
.oa-hero__arrow {
  position: absolute;
  /* Negative bottom pushes ~28% of the arrow below the hero's lower
     edge so it gets cropped, leaving just the upper figures showing. */
  inset: auto auto -90px -80px;
  width: 60%;
  max-width: 780px;
  pointer-events: none;
  /* NOTE: no z-index / mask-image / opacity / filter on this wrapper.
     Any of those would create an isolated stacking context, and the
     child <img>'s mix-blend-mode: multiply would only blend WITHIN the
     wrapper (against nothing) instead of against the cream page surface.
     Paint order is fine without z-index because .oa-hero__inner has
     z-index:2 and comes after this element in the DOM. */
}
.oa-hero__arrow img {
  display: block;
  width: 100%;
  height: auto;
  /* Multiply the source against the cream parent. The asset is an
     opaque-ish PNG with a white field — multiply turns white into the
     cream backdrop, leaving only the figures visible. The parent surface
     MUST be cream (--cream-200) for this to read correctly. */
  mix-blend-mode: multiply;
  /* Soft fade of the densest head-of-arrow corner — mask is applied to
     the SAME element as the blend mode, so the masked pixels still
     composite onto the cream backdrop with multiply. */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,.4), #000 14%, #000 100%);
          mask-image: linear-gradient(to right, rgba(0,0,0,.4), #000 14%, #000 100%);
}

.oa-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel-500); margin: 0 0 28px;
}

.oa-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--espresso);
  margin: 0 0 32px;
  text-wrap: balance;
}

.oa-lede {
  font-size: 19px; line-height: 1.55; color: var(--fg-2);
  max-width: 720px; margin: 0 0 48px;
  font-weight: 400;
}

.oa-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
  margin-top: 8px;
}
.oa-pillar {
  padding: 24px 28px 0 0;
  border-inline-start: 1px solid var(--line-1);
}
.oa-pillar:first-child { border-inline-start: 0; padding-inline-start: 0; }
.oa-pillar:not(:first-child) { padding-inline-start: 28px; }
.oa-pillar__num {
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: .12em; color: var(--steel-500);
  margin-bottom: 12px;
}
.oa-pillar__title { font-size: 20px; font-weight: 700; color: var(--espresso); margin: 0 0 4px; }
.oa-pillar__sub { font-size: 14px; color: var(--fg-3); }

.oa-scroll-cue {
  position: absolute; bottom: 18px; inset-inline-end: var(--pad);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-3); letter-spacing: .04em;
}

/* Expandable rows */
.oa-rows { background: var(--cream-100); }
.oa-rows__inner { padding: 12px var(--pad) 24px; }

.oa-row { border-bottom: 1px solid var(--line-1); }
.oa-row:last-child { border-bottom: 0; }
.oa-row__head {
  width: 100%;
  display: flex; align-items: center; gap: 18px;
  padding: 28px 0;
  background: transparent; border: 0; cursor: pointer;
  font: inherit; color: var(--espresso);
  text-align: start;
}
.oa-row__plus {
  width: 28px; height: 28px; border: 1px solid var(--espresso-line);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
  flex: none;
}
.oa-row.is-open .oa-row__plus { background: var(--espresso); color: var(--cream-100); border-color: var(--espresso); }
.oa-row__label { font-size: 26px; font-weight: 700; letter-spacing: -.01em; flex: 1; }
.oa-row__count {
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 12px; color: var(--fg-3); letter-spacing: .04em;
}
.oa-row__body {
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.2,.6,.2,1);
}
.oa-row__inner { padding: 0 0 32px 46px; }

/* Areas */
.oa-areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.oa-area { border-top: 1px solid var(--line-2); padding-top: 20px; }
.oa-area__num {
  font-family: ui-monospace, monospace; font-size: 12px;
  color: var(--steel-500); letter-spacing: .12em; margin-bottom: 12px;
}
.oa-area__title { font-size: 19px; font-weight: 700; color: var(--espresso); margin: 0 0 10px; }
.oa-area__body { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }

/* Process */
.oa-process {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.oa-process li {
  padding: 20px 16px;
  border-inline-start: 1px solid var(--line-1);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.oa-process li:first-child { border-inline-start: 0; }
.oa-process__num {
  font-family: ui-monospace, monospace; font-size: 11px; color: var(--steel-500);
  letter-spacing: .12em;
}
.oa-process li > span:last-child { font-size: 15px; font-weight: 600; color: var(--espresso); line-height: 1.3; }
.oa-process__note { font-size: 15px; line-height: 1.65; color: var(--fg-2); max-width: 800px; margin: 0; }

/* Team */
.oa-team {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px;
}
.oa-member {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas: "av head" "av bio";
  gap: 4px 16px;
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
}
.oa-member__avatar {
  grid-area: av;
  width: 44px; height: 44px;
  background: var(--steel-500); color: var(--cream-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  letter-spacing: .02em;
}
.oa-member__head { grid-area: head; }
.oa-member__name { font-size: 16px; font-weight: 700; color: var(--espresso); }
.oa-member__role { font-size: 13px; color: var(--sand-400); margin-top: 2px; }
.oa-member__bio { grid-area: bio; font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 8px 0 0; }

.oa-prose { font-size: 15.5px; line-height: 1.7; color: var(--fg-2); margin: 0; max-width: 820px; }

/* Footer — thin single row */
.oa-foot {
  background: var(--espresso); color: var(--cream-200);
  padding: 18px var(--pad);
}
.oa-foot__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .02em;
}
.oa-foot__sig {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--cream-200);
}
.oa-foot__addr { color: var(--cream-300); }
.oa-foot__copy { color: var(--cream-300); }

/* ── Hebrew / RTL typographic corrections ─────────────────────────
   Claude Design used Latin display conventions (negative tracking,
   very tight leading). Hebrew needs zero or positive tracking and
   a real line-height at display sizes.
──────────────────────────────────────────────────────────────────── */
[dir="rtl"] .oa-h1 {
  letter-spacing: 0;
  line-height: 1.18;
}
[dir="rtl"] .oa-row__label {
  letter-spacing: 0;
}

/* Team card email */
.oa-member__email {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-3);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color 120ms ease;
}
.oa-member__email:hover { color: var(--steel-400); }
