@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Hebrew:wght@400;500;600;700;800&display=swap');

:root {
  --forest: #0b3b39;
  --forest-dark: #071f20;
  --orange: #f4512a;
  --bullet-orange: #f15a29;
  --sage: #cfd784;
  --ice: #acd8dc;
  --paper: #f6f3ea;
  --white: #ffffff;
  --ink: #111b1a;
  --muted: #5f6967;
  --line: rgba(17, 27, 26, 0.18);
  --header-height: 96px;
  --page-pad: 64px;
  --content-max: 1440px;
}

html[lang="he"] {
  --forest: #2857f2;
  --forest-dark: #0b0d12;
  --sage: #dce5ff;
  --ice: #c9e5ff;
  --paper: #f7f7f4;
  --ink: #0b0d12;
  --muted: #5d616b;
  --line: rgba(11, 13, 18, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans Hebrew", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0;
  overflow-x: hidden;
}
html[lang="en"] body { font-family: "Inter", Arial, sans-serif; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -80px;
  inset-inline-start: 20px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.site-header.inner-header,
.site-header.scrolled {
  height: 96px;
  color: var(--forest-dark);
  background: rgba(246,243,234,0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand-lockup { display: flex; align-items: center; min-width: 132px; }
.brand-logo {
  width: 126px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: width 0.25s ease, filter 0.25s ease;
}
.site-header.inner-header .brand-logo,
.site-header.scrolled .brand-logo,
html[lang="he"] .site-header .brand-logo { filter: none; }
.site-header.inner-header .brand-logo,
.site-header.scrolled .brand-logo { width: 126px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { position: relative; font-size: 14px; font-weight: 650; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.header-tools { direction: ltr; display: flex; align-items: center; gap: 22px; }
.language-switch { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; }
.lang-button { padding: 5px 0; border: 0; opacity: 0.45; background: transparent; cursor: pointer; }
.lang-button.active { color: var(--orange); opacity: 1; }
.header-cta { padding: 10px 15px; border: 1px solid currentColor; font-size: 12px; font-weight: 700; }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform 0.2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest-dark);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav nav { display: grid; gap: 20px; text-align: center; }
.mobile-nav a { font-size: 34px; line-height: 1.15; font-weight: 750; }

.home-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  padding: 170px var(--page-pad) 90px;
  color: var(--white);
  background: url("assets/eshkol-hero.png") center / cover no-repeat;
  overflow: hidden;
}
.home-hero::before { content: ""; position: absolute; inset: 0; background: rgba(4, 24, 24, 0.76); }
.home-hero::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 12px; background: var(--orange); }
html[dir="rtl"] .home-hero::after { inset: 0 0 0 auto; }
.hero-content { position: relative; z-index: 1; max-width: 910px; }
.kicker { display: flex; align-items: center; gap: 13px; margin: 0 0 25px; font-size: 13px; line-height: 1.2; font-weight: 750; text-transform: uppercase; }
.kicker::before { content: ""; width: 36px; height: 3px; background: var(--orange); }
.kicker.on-dark { color: rgba(255,255,255,0.74); }
.home-hero h1 { max-width: 860px; margin: 0; font-size: 86px; line-height: 0.98; font-weight: 880; }
.home-hero h1 em { color: var(--sage); font-style: normal; }
.hero-copy { max-width: 730px; margin: 30px 0 34px; font-size: 22px; line-height: 1.6; font-weight: 500; text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 2px solid currentColor; font-weight: 750; }
.text-link b { color: var(--orange); font-size: 22px; }

.metric-band { display: grid; grid-template-columns: repeat(4, 1fr); color: var(--paper); background: var(--forest); }
.metric { min-height: 136px; display: flex; flex-direction: column; justify-content: center; padding: 26px var(--page-pad); border-inline-end: 1px solid rgba(255,255,255,0.22); }
.metric:last-child { border-inline-end: 0; }
.metric strong { font-family: "Inter", Arial, sans-serif; font-size: 34px; line-height: 1; }
.metric span { margin-top: 10px; color: rgba(255,255,255,0.68); font-size: 13px; }
.he-only { display: none; }
html[lang="he"] .he-only { display: block; }

.heritage-proof {
  padding: 105px var(--page-pad);
  color: var(--white);
  background: var(--forest-dark);
}
.heritage-proof-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; max-width: var(--content-max); margin: 0 auto 66px; }
.heritage-proof-head .kicker { grid-column: 1 / -1; color: rgba(255,255,255,0.65); }
.heritage-proof-head h2 { max-width: 780px; margin: 0; font-size: 54px; line-height: 1.15; }
.heritage-proof-head > p:last-child { align-self: end; max-width: 570px; margin: 0; color: rgba(255,255,255,0.66); font-size: 18px; line-height: 1.7; }
.heritage-names { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--content-max); margin: 0 auto 45px; border-top: 1px solid rgba(255,255,255,0.22); border-inline-start: 1px solid rgba(255,255,255,0.22); }
.heritage-names span,
.heritage-logo { min-height: 106px; display: grid; place-items: center; padding: 18px; border-inline-end: 1px solid rgba(255,255,255,0.22); border-bottom: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.82); font-family: "Inter", Arial, sans-serif; font-size: 14px; font-weight: 750; text-align: center; }
.heritage-logo img { width: min(168px, 82%); max-height: 54px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: 0.82; }
.heritage-logo:nth-child(2) img { max-height: 60px; }
.heritage-logo:nth-child(8) img,
.heritage-logo:nth-child(9) img { max-height: 48px; }
.heritage-logo:nth-child(10) img,
.heritage-logo:nth-child(11) img { max-height: 62px; }
.heritage-proof > .text-link { display: flex; width: max-content; margin-inline-start: auto; }

.experience-strip {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  align-items: center;
  gap: 40px;
  padding: 28px var(--page-pad);
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.experience-strip p { margin: 0; font-size: 12px; font-weight: 750; }
.experience-types { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 22px; }
.experience-types span { color: #7b808b; font-family: "Inter", Arial, sans-serif; font-size: clamp(10px, 1.2vw, 16px); font-weight: 800; text-align: center; }

.section { padding: 115px var(--page-pad); }
.section-grid { display: grid; grid-template-columns: 0.7fr 2.3fr; gap: 70px; max-width: var(--content-max); margin: 0 auto; }
.section-index { font-family: "Inter", Arial, sans-serif; color: var(--orange); font-size: 12px; font-weight: 800; }
.display-title { max-width: 1080px; margin: 0; font-size: 68px; line-height: 1.05; font-weight: 820; }
.lead { max-width: 780px; margin: 34px 0 0; color: var(--muted); font-size: 23px; line-height: 1.65; }
.section-actions { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.section-actions .text-link { color: var(--forest); }

.gateway-list { border-top: 1px solid var(--line); background: var(--white); }
.gateway-link {
  display: grid;
  grid-template-columns: 55px 1.15fr 1fr 36px;
  align-items: center;
  gap: 28px;
  min-height: 145px;
  padding: 28px var(--page-pad);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}
.gateway-link:hover { color: var(--paper); background: var(--forest); }
.gateway-link .num { color: var(--orange); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.gateway-link h3 { margin: 0; font-size: 40px; line-height: 1.1; }
.gateway-link p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.55; }
.gateway-link:hover p { color: rgba(255,255,255,0.72); }
.gateway-link .arrow { justify-self: end; font-size: 24px; }

.selected-work-section { padding: 110px var(--page-pad); background: #f1f3f8; }
.selected-work-head {
  display: grid;
  grid-template-columns: 0.35fr 1.7fr 0.55fr;
  align-items: end;
  gap: 45px;
  max-width: var(--content-max);
  margin: 0 auto 58px;
}
.selected-work-head h2 { max-width: 800px; margin: 0; font-size: 58px; line-height: 1.12; font-weight: 740; }
.selected-work-head .text-link { justify-self: end; color: var(--ink); }
.case-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--content-max); margin: 0 auto; }
.case-card { min-width: 0; background: var(--white); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(11,13,18,0.12); }
.case-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.case-card-copy { min-height: 245px; display: flex; flex-direction: column; padding: 26px; }
.case-card-copy > span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 10px; font-weight: 800; }
.case-card-copy h3 { margin: 38px 0 12px; font-size: 29px; line-height: 1.22; font-weight: 720; }
.case-card-copy p { margin: auto 0 0; color: var(--muted); font-size: 14px; }
.concept-disclaimer { max-width: var(--content-max); margin: 24px auto 0; color: #777c86; font-size: 11px; line-height: 1.5; }

.bullet-panel { padding: 0 var(--page-pad) 105px; color: var(--paper); background: var(--forest-dark); }
.bullet-bar { display: flex; align-items: center; justify-content: space-between; margin: 0 calc(var(--page-pad) * -1); padding: 18px var(--page-pad); color: var(--ink); background: var(--white); }
.bullet-bar img { width: 126px; height: auto; }
.bullet-bar span { font-size: 13px; font-weight: 600; }
.bullet-body { display: grid; grid-template-columns: 1.45fr 0.75fr; gap: 80px; padding-top: 88px; }
.bullet-body h2 { max-width: 800px; margin: 0; font-size: 68px; line-height: 1.04; }
.bullet-body h2 em { color: var(--orange); font-style: normal; }
.bullet-detail { align-self: end; }
.bullet-detail p { margin: 0 0 32px; color: rgba(255,255,255,0.7); font-size: 19px; line-height: 1.65; }
.bullet-detail a { color: var(--paper); }
.bullet-manifesto { display: none; }

.teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.teaser-visual { position: relative; background: url("assets/eshkol-hero.png") 15% 62% / 180% auto no-repeat; }
.teaser-visual::after { content: "1989"; position: absolute; right: 35px; bottom: 20px; color: var(--sage); font-family: "Inter", Arial, sans-serif; font-size: 96px; line-height: 1; font-weight: 850; }
.teaser-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px var(--page-pad); color: var(--paper); background: var(--forest); }
.teaser-copy h2 { max-width: 670px; margin: 0; font-size: 55px; line-height: 1.08; }
.teaser-copy p { max-width: 620px; margin: 28px 0 36px; color: rgba(255,255,255,0.7); font-size: 19px; line-height: 1.65; }

.page-hero { padding: 190px var(--page-pad) 85px; color: var(--paper); background: var(--forest); }
.page-hero-inner { max-width: var(--content-max); margin: 0 auto; }
.page-hero h1 { max-width: 1050px; margin: 0; font-size: 82px; line-height: 0.98; font-weight: 850; }
.page-hero p { max-width: 760px; margin: 32px 0 0; color: rgba(255,255,255,0.72); font-size: 22px; line-height: 1.6; }
.page-hero .kicker { color: var(--sage); }

.content-intro { max-width: var(--content-max); margin: 0 auto; padding: 100px var(--page-pad); }
.content-intro h2 { max-width: 970px; margin: 0; font-size: 60px; line-height: 1.08; }
.content-intro p { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 21px; line-height: 1.7; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px 1fr 1.35fr; gap: 30px; padding: 48px var(--page-pad); border-bottom: 1px solid var(--line); }
.service-row .num { color: var(--orange); font-family: "Inter", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.service-row h2 { margin: 0; font-size: 38px; line-height: 1.15; }
.service-row p { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.method-section { padding: 110px var(--page-pad); background: #f0f2f7; }
.method-heading { display: grid; grid-template-columns: 0.45fr 2.55fr; gap: 50px; max-width: var(--content-max); margin: 0 auto 60px; }
.method-heading h2 { max-width: 860px; margin: 0; font-size: 57px; line-height: 1.14; font-weight: 740; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--line); }
.method-step { min-height: 310px; padding: 25px 25px 30px; border-inline-end: 1px solid var(--line); }
.method-step:first-child { padding-inline-start: 0; }
.method-step:last-child { border-inline-end: 0; }
.method-step > span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.method-step h3 { margin: 80px 0 15px; font-size: 30px; }
.method-step p { margin: 0; color: var(--muted); line-height: 1.65; }
.integration-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 650px; }
.integration-media { min-height: 540px; overflow: hidden; }
.integration-media img { width: 100%; height: 100%; object-fit: cover; }
.integration-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px var(--page-pad); color: var(--white); background: var(--forest-dark); }
.integration-copy h2 { max-width: 650px; margin: 0; font-size: 52px; line-height: 1.14; }
.integration-copy > p:not(.kicker) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; }
.integration-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 38px; }
.integration-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,0.3); font-family: "Inter", Arial, sans-serif; font-size: 10px; font-weight: 750; }

.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.sector-block { min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; padding: 55px var(--page-pad); border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sector-block:nth-child(even) { border-inline-end: 0; }
.sector-block:nth-child(1) { background: var(--white); }
.sector-block:nth-child(2) { background: var(--ice); }
.sector-block:nth-child(3) { background: var(--sage); }
.sector-block:nth-child(4) { color: var(--paper); background: var(--forest-dark); }
.sector-block span { font-family: "Inter", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.sector-block h2 { max-width: 600px; margin: 0; font-size: 52px; line-height: 1.04; }
.sector-block p { max-width: 560px; margin: 25px 0 0; line-height: 1.65; }
.sector-depth { padding: 110px var(--page-pad); background: var(--paper); }
.sector-depth-head { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 70px; max-width: var(--content-max); margin: 0 auto 70px; }
.sector-depth-head .kicker { grid-column: 1 / -1; }
.sector-depth-head h2 { max-width: 780px; margin: 0; font-size: 60px; line-height: 1.12; }
.sector-depth-head > p:last-child { align-self: end; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.sector-detail-list { max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--line); }
.sector-detail { display: grid; grid-template-columns: 55px 0.75fr 1fr 1fr; align-items: start; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--line); }
.sector-detail .num { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.sector-detail h3 { margin: 0; font-size: 31px; }
.sector-detail strong { display: block; margin-bottom: 10px; font-size: 12px; }
.sector-detail p { margin: 0; color: var(--muted); line-height: 1.6; }

.playbook-list { padding: 0 var(--page-pad) 110px; }
.playbook { display: grid; grid-template-columns: 1fr 1fr; min-height: 390px; border-top: 1px solid var(--line); }
.playbook:last-child { border-bottom: 1px solid var(--line); }
.playbook-head { padding: 48px 36px 48px 0; }
.playbook-head span { color: var(--orange); font-family: "Inter", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.playbook h2 { max-width: 570px; margin: 45px 0 0; font-size: 50px; line-height: 1.08; }
.playbook-detail { display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; border-inline-start: 1px solid var(--line); }
.playbook-detail p { max-width: 620px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag-list span { padding: 8px 12px; border: 1px solid var(--line); font-size: 11px; font-weight: 700; }

.case-study { display: grid; grid-template-columns: 1.12fr 0.88fr; min-height: 640px; border-top: 1px solid var(--line); }
.case-study:nth-child(even) .case-study-media { order: 2; }
.case-study-media { min-height: 520px; overflow: hidden; background: #e7eaf0; }
.case-study-media img { width: 100%; height: 100%; object-fit: cover; }
.case-study-content { display: flex; flex-direction: column; justify-content: center; padding: 65px var(--page-pad); background: var(--white); }
.case-study-content > span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.case-study-content h2 { max-width: 650px; margin: 30px 0 24px; font-size: 48px; line-height: 1.14; font-weight: 740; }
.case-study-content > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.case-method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.case-method div { min-width: 0; }
.case-method strong { display: block; margin-bottom: 7px; font-size: 12px; }
.case-method span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.materials-hero { padding: 150px var(--page-pad) 75px; color: var(--white); background: var(--forest-dark); }
.materials-hero-inner { max-width: 1060px; margin: 0 auto; }
.materials-hero .internal-label { display: inline-block; margin-bottom: 25px; padding: 7px 11px; color: var(--forest-dark); background: var(--orange); font-size: 10px; font-weight: 850; }
.materials-hero h1 { margin: 0; font-size: 67px; line-height: 1.08; font-weight: 740; }
.materials-hero p { max-width: 750px; margin: 28px 0 0; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1.7; }
.materials-section { max-width: 1180px; margin: 0 auto; padding: 90px var(--page-pad); }
.materials-section > h2 { max-width: 800px; margin: 0 0 45px; font-size: 48px; line-height: 1.18; }
.materials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.material-card { min-height: 300px; display: flex; flex-direction: column; padding: 32px; background: var(--white); border: 1px solid var(--line); }
.material-card .priority { align-self: flex-start; padding: 5px 9px; color: var(--white); background: var(--forest); font-size: 9px; font-weight: 850; }
.material-card h3 { margin: 42px 0 15px; font-size: 28px; }
.material-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.material-card ul { margin: auto 0 0; padding: 24px 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.delivery-note { margin-top: 35px; padding: 28px; color: var(--white); background: var(--forest); }
.delivery-note strong { display: block; margin-bottom: 8px; font-size: 20px; }
.delivery-note p { margin: 0; color: rgba(255,255,255,0.75); line-height: 1.6; }

.story-layout { display: grid; grid-template-columns: 0.8fr 1.7fr; gap: 80px; padding: 110px var(--page-pad); }
.story-year { color: var(--orange); font-family: "Inter", Arial, sans-serif; font-size: 110px; line-height: 0.8; font-weight: 850; writing-mode: vertical-rl; transform: rotate(180deg); }
.story-copy h2 { max-width: 900px; margin: 0; font-size: 62px; line-height: 1.07; }
.story-copy p { max-width: 780px; margin: 32px 0 0; color: var(--muted); font-size: 20px; line-height: 1.75; }
.about-evidence { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; }
.about-evidence-visual { position: relative; min-height: 500px; background: url("assets/eshkol-hero.png") 18% 60% / 185% auto no-repeat; overflow: hidden; }
.about-evidence-visual::after { content: ""; position: absolute; inset: 0; background: rgba(11,13,18,0.15); }
.about-evidence-visual span { position: absolute; right: 30px; bottom: 22px; z-index: 1; color: var(--white); font-family: "Inter", Arial, sans-serif; font-size: 65px; line-height: 1; font-weight: 800; }
.about-evidence-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px var(--page-pad); background: var(--white); }
.about-evidence-copy h2 { max-width: 650px; margin: 0; font-size: 49px; line-height: 1.18; }
.about-evidence-copy > p:not(.kicker) { max-width: 660px; margin: 27px 0 34px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.experience-index { scroll-margin-top: 72px; padding: 110px var(--page-pad); background: var(--white); }
.experience-index-head { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto 64px; }
.experience-index-head h2 { max-width: 900px; margin: 0; font-size: 58px; line-height: 1.14; }
.experience-index-head div > p:last-child { max-width: 760px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; }
.experience-groups { display: grid; grid-template-columns: repeat(2, 1fr); max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.experience-group { min-width: 0; padding: 34px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.experience-group header { display: flex; align-items: baseline; justify-content: space-between; gap: 25px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.experience-group header span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.experience-group h3 { margin: 0; font-size: 28px; }
.name-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; padding-top: 22px; }
.name-list span { min-width: 0; padding: 9px 0; color: #4d515b; border-bottom: 1px solid rgba(11,13,18,0.09); font-family: "Inter", Arial, sans-serif; font-size: 13px; line-height: 1.35; }
.principles-section { padding: 110px var(--page-pad); background: #f0f2f7; }
.principles-head { display: grid; grid-template-columns: 0.4fr 2.6fr; gap: 50px; max-width: var(--content-max); margin: 0 auto 60px; }
.principles-head h2 { max-width: 820px; margin: 0; font-size: 57px; line-height: 1.14; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--content-max); margin: 0 auto; }
.principle { min-height: 330px; display: flex; flex-direction: column; padding: 30px; background: var(--white); }
.principle > span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.principle h3 { margin: 75px 0 15px; font-size: 28px; line-height: 1.25; }
.principle p { margin: auto 0 0; color: var(--muted); line-height: 1.65; }
.quote-band { padding: 85px var(--page-pad); color: var(--paper); background: var(--forest-dark); }
.quote-band blockquote { max-width: 1100px; margin: 0 auto; font-size: 48px; line-height: 1.2; font-weight: 720; }
.quote-band blockquote::before { content: "“"; display: block; color: var(--orange); font-family: Georgia, serif; font-size: 90px; line-height: 0.5; }
.timeline { padding: 100px var(--page-pad); }
.timeline-row { display: grid; grid-template-columns: 170px 1fr; gap: 35px; padding: 34px 0; border-top: 1px solid var(--line); }
.timeline-row:last-child { border-bottom: 1px solid var(--line); }
.timeline-row strong { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 28px; }
.timeline-row h3 { margin: 0 0 10px; font-size: 26px; }
.timeline-row p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.6; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; }
.contact-statement { padding: 120px var(--page-pad); color: var(--paper); background: var(--forest-dark); }
.contact-statement h1 { max-width: 650px; margin: 0; font-size: 68px; line-height: 1.02; }
.contact-statement p { max-width: 560px; margin: 28px 0 0; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1.65; }
.contact-form { padding: 120px var(--page-pad) 80px; background: var(--white); }
.field { display: grid; gap: 8px; margin-bottom: 25px; }
.field label { font-size: 12px; font-weight: 750; }
.field input, .field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--orange); }
.field textarea { min-height: 105px; resize: vertical; }
.submit-button { margin-top: 12px; padding: 14px 22px; color: var(--paper); border: 0; background: var(--forest); font-weight: 750; cursor: pointer; }
.submit-button:disabled { cursor: wait; opacity: 0.62; }
.field-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-status { min-height: 24px; margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.form-status.success { color: #17663a; }
.form-status.error { color: #a52a2a; }
.contact-topics { padding: 110px var(--page-pad); background: #f0f2f7; }
.contact-topics-head { max-width: var(--content-max); margin: 0 auto 55px; }
.contact-topics-head h2 { max-width: 800px; margin: 0; font-size: 57px; line-height: 1.14; }
.contact-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--content-max); margin: 0 auto; border-top: 1px solid var(--line); }
.contact-topic { min-height: 300px; display: flex; flex-direction: column; padding: 26px; border-inline-end: 1px solid var(--line); }
.contact-topic:first-child { padding-inline-start: 0; }
.contact-topic:last-child { border-inline-end: 0; }
.contact-topic > span { color: var(--forest); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 800; }
.contact-topic h3 { margin: 70px 0 15px; font-size: 26px; line-height: 1.25; }
.contact-topic p { margin: auto 0 0; color: var(--muted); line-height: 1.6; }
.next-step-section { padding: 100px var(--page-pad); color: var(--white); background: var(--forest-dark); }
.next-step-head { display: grid; grid-template-columns: 0.4fr 2.6fr; max-width: var(--content-max); margin: 0 auto 55px; }
.next-step-head h2 { max-width: 780px; margin: 0; font-size: 52px; line-height: 1.15; }
.next-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: var(--content-max); margin: 0 auto; background: rgba(255,255,255,0.18); }
.next-step-grid article { min-height: 270px; padding: 30px; background: var(--forest-dark); }
.next-step-grid strong { color: var(--orange); font-family: "Inter", Arial, sans-serif; font-size: 12px; }
.next-step-grid h3 { margin: 70px 0 12px; font-size: 27px; }
.next-step-grid p { margin: 0; color: rgba(255,255,255,0.65); line-height: 1.6; }

.site-footer { padding: 58px var(--page-pad) 25px; color: var(--paper); background: var(--forest); }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; padding-bottom: 55px; }
.footer-brand .brand-logo { width: 158px; filter: brightness(0) invert(1); }
.footer-main h3 { margin: 0 0 15px; color: var(--sage); font-size: 12px; text-transform: uppercase; }
.footer-main p { max-width: 410px; margin: 18px 0 0; color: rgba(255,255,255,0.66); line-height: 1.55; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.55); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* The Hebrew edition has its own lighter art direction. */
html[lang="he"] .site-header:not(.inner-header):not(.scrolled) {
  color: var(--forest-dark);
  background: rgba(255,255,255,0.72);
  border-bottom-color: rgba(11,13,18,0.15);
  backdrop-filter: blur(12px);
}
html[lang="he"] .home-hero {
  min-height: 740px;
  color: var(--forest-dark);
  background-image: url("assets/eshkol-hero-he.png");
  background-position: center;
}
html[lang="he"] .home-hero::before {
  background: linear-gradient(to left, rgba(247,247,244,0.97) 0%, rgba(247,247,244,0.9) 31%, rgba(247,247,244,0.28) 61%, rgba(247,247,244,0) 78%);
}
html[lang="he"] .home-hero h1 {
  max-width: 660px;
  font-size: 74px;
  line-height: 1.11;
  font-weight: 760;
}
html[lang="he"] .home-hero .kicker.on-dark { color: var(--forest); }
html[lang="he"] .hero-copy {
  max-width: 650px;
  color: #343943;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: none;
}
html[lang="he"] .home-hero .text-link { color: var(--forest-dark); }
html[lang="he"] .metric-band { color: var(--forest-dark); background: var(--white); border-bottom: 1px solid var(--line); }
html[lang="he"] .metric { border-inline-end-color: var(--line); }
html[lang="he"] .metric span { color: var(--muted); }
html[lang="he"] .display-title,
html[lang="he"] .bullet-body h2,
html[lang="he"] .page-hero h1,
html[lang="he"] .content-intro h2,
html[lang="he"] .story-copy h2,
html[lang="he"] .contact-statement h1 {
  font-weight: 740;
  line-height: 1.16;
}
html[lang="he"] .display-title { max-width: 960px; font-size: 61px; }
html[lang="he"] .gateway-link h3 { font-size: 36px; font-weight: 720; line-height: 1.25; }
html[lang="he"] .section-grid {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 28px;
  max-width: 1200px;
}
html[lang="he"] .section-grid .section-index,
html[lang="he"] .selected-work-head .section-index {
  padding-top: 3px;
  text-align: start;
}
html[lang="he"] .selected-work-head {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  max-width: 1200px;
}
html[lang="he"] .selected-work-head .text-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}
html[lang="he"] .bullet-panel {
  position: relative;
  color: #111111;
  background: #fff8f5;
  border-inline-start: 10px solid var(--bullet-orange);
}
html[lang="he"] .bullet-bar {
  direction: ltr;
  color: #111111;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
html[lang="he"] .bullet-bar img {
  order: 1;
  width: 126px;
}
html[lang="he"] .bullet-bar span {
  order: 2;
  direction: rtl;
  color: #393b42;
  text-align: right;
}
html[lang="he"] .bullet-body h2 { max-width: 760px; font-size: 59px; }
html[lang="he"] .bullet-detail p { color: #4d4e54; }
html[lang="he"] .bullet-detail a { color: #111111; }
html[lang="he"] .bullet-detail .text-link { border-bottom-color: #111111; }
html[lang="he"] .bullet-detail .text-link b { color: var(--bullet-orange); }
html[lang="he"] .bullet-manifesto {
  direction: ltr;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 88px;
  padding-top: 28px;
  color: var(--bullet-orange);
  border-top: 1px solid rgba(241,90,41,0.36);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(27px, 3.8vw, 68px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}
html[lang="he"] .bullet-manifesto i {
  color: #111111;
  font-style: normal;
  font-weight: 400;
}
html[lang="he"] .teaser-copy { color: var(--forest-dark); background: var(--sage); }
html[lang="he"] .teaser-copy .kicker.on-dark,
html[lang="he"] .teaser-copy p { color: #303745; }
html[lang="he"] .teaser-copy h2 { font-size: 49px; font-weight: 740; line-height: 1.2; }
html[lang="he"] .page-hero {
  color: var(--forest-dark);
  background: var(--ice);
}
html[lang="he"] .page-hero .kicker { color: var(--forest); }
html[lang="he"] .page-hero h1 { max-width: 980px; font-size: 70px; }
html[lang="he"] .page-hero p { color: #46546a; line-height: 1.75; }
html[lang="he"] .content-intro h2 { font-size: 54px; }
html[lang="he"] .service-row h2,
html[lang="he"] .sector-block h2,
html[lang="he"] .playbook h2,
html[lang="he"] .timeline-row h3 { font-weight: 720; line-height: 1.25; }
html[lang="he"] .quote-band { color: var(--forest-dark); background: var(--sage); }
html[lang="he"] .contact-statement { color: var(--forest-dark); background: var(--ice); }
html[lang="he"] .contact-statement p { color: #46546a; }
html[lang="he"] .site-footer { background: var(--forest-dark); }
html[lang="he"] body[data-page="sectors"] .page-hero { background: #eef1f7; }
html[lang="he"] body[data-page="about"] .page-hero { background: #ffd9cf; }
html[lang="he"] body[data-page="work"] .page-hero { background: var(--sage); }

html[lang="he"] body[data-page="expertise"] .page-hero,
html[lang="he"] body[data-page="sectors"] .page-hero,
html[lang="he"] body[data-page="work"] .page-hero,
html[lang="he"] body[data-page="about"] .page-hero {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  background-color: var(--paper);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
html[lang="he"] body[data-page="expertise"] .page-hero {
  background-image: linear-gradient(to left, rgba(247,247,244,0.98) 0%, rgba(247,247,244,0.94) 38%, rgba(247,247,244,0.28) 67%, rgba(247,247,244,0) 84%), url("assets/case-cruise.png");
}
html[lang="he"] body[data-page="sectors"] .page-hero {
  background-image: linear-gradient(to left, rgba(247,247,244,0.98) 0%, rgba(247,247,244,0.93) 39%, rgba(247,247,244,0.22) 67%, rgba(247,247,244,0) 84%), url("assets/case-destination.png");
}
html[lang="he"] body[data-page="work"] .page-hero {
  background-image: linear-gradient(to left, rgba(247,247,244,0.98) 0%, rgba(247,247,244,0.93) 39%, rgba(247,247,244,0.2) 67%, rgba(247,247,244,0) 84%), url("assets/case-airline.png");
}
html[lang="he"] body[data-page="about"] .page-hero {
  background-image: linear-gradient(to left, rgba(247,247,244,0.98) 0%, rgba(247,247,244,0.94) 40%, rgba(247,247,244,0.26) 68%, rgba(247,247,244,0) 85%), url("assets/eshkol-hero.png");
  background-position: 34% center;
}
html[lang="he"] .page-hero-inner { position: relative; width: 100%; }
html[lang="he"] body[data-page="contact"] .contact-statement {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(to left, rgba(247,247,244,0.97) 0%, rgba(247,247,244,0.86) 52%, rgba(247,247,244,0.18) 100%), url("assets/eshkol-hero-he.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 42% center;
}

@media (max-width: 860px) {
  html[lang="he"] .home-hero h1 { font-size: 58px; }
  html[lang="he"] .page-hero h1 { font-size: 56px; }
  html[lang="he"] .display-title,
  html[lang="he"] .bullet-body h2 { font-size: 50px; }
  html[lang="he"] .section-grid,
  html[lang="he"] .selected-work-head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
  }
  html[lang="he"] .bullet-manifesto {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  html[lang="he"] .home-hero {
    min-height: 650px;
    background-position: 44% center;
  }
  html[lang="he"] .home-hero::before {
    background: linear-gradient(to bottom, rgba(247,247,244,0.45) 0%, rgba(247,247,244,0.96) 58%, var(--paper) 100%);
  }
  html[lang="he"] .home-hero h1 { font-size: 43px; line-height: 1.14; }
  html[lang="he"] .hero-copy { font-size: 16px; line-height: 1.7; }
  html[lang="he"] .metric:nth-child(-n+2) { border-bottom-color: var(--line); }
  html[lang="he"] .display-title,
  html[lang="he"] .bullet-body h2,
  html[lang="he"] .page-hero h1,
  html[lang="he"] .content-intro h2 { font-size: 39px; }
  html[lang="he"] .section-grid,
  html[lang="he"] .selected-work-head {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }
  html[lang="he"] .gateway-link h3 { font-size: 27px; }
  html[lang="he"] .bullet-panel { border-inline-start-width: 6px; }
  html[lang="he"] .bullet-manifesto {
    display: flex;
    gap: 8px 10px;
    margin-top: 58px;
    font-size: clamp(20px, 6.4vw, 25px);
    line-height: 1.15;
    white-space: normal;
  }
  html[lang="he"] .teaser-copy h2 { font-size: 38px; }
  html[lang="he"] body[data-page="expertise"] .page-hero,
  html[lang="he"] body[data-page="sectors"] .page-hero,
  html[lang="he"] body[data-page="work"] .page-hero,
  html[lang="he"] body[data-page="about"] .page-hero {
    min-height: 680px;
    background-position: center top;
    background-size: 100% 100%, auto 58%;
    background-color: var(--paper);
  }
  html[lang="he"] body[data-page="expertise"] .page-hero {
    background-image: linear-gradient(to bottom, rgba(247,247,244,0.02) 0%, rgba(247,247,244,0.08) 31%, var(--paper) 57%), url("assets/case-cruise.png");
  }
  html[lang="he"] body[data-page="sectors"] .page-hero {
    background-image: linear-gradient(to bottom, rgba(247,247,244,0.02) 0%, rgba(247,247,244,0.08) 31%, var(--paper) 57%), url("assets/case-destination.png");
  }
  html[lang="he"] body[data-page="work"] .page-hero {
    background-image: linear-gradient(to bottom, rgba(247,247,244,0.02) 0%, rgba(247,247,244,0.08) 31%, var(--paper) 57%), url("assets/case-airline.png");
  }
  html[lang="he"] body[data-page="about"] .page-hero {
    background-image: linear-gradient(to bottom, rgba(247,247,244,0.02) 0%, rgba(247,247,244,0.08) 31%, var(--paper) 57%), url("assets/eshkol-hero.png");
  }
  html[lang="he"] body[data-page="contact"] .contact-statement {
    min-height: 650px;
    background-image: linear-gradient(to bottom, rgba(247,247,244,0.05) 0%, rgba(247,247,244,0.42) 38%, var(--paper) 72%), url("assets/eshkol-hero-he.png");
    background-position: 40% top;
  }
}

@media (max-width: 1100px) {
  :root { --page-pad: 38px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 13px; }
  .home-hero h1 { font-size: 70px; }
  .display-title, .bullet-body h2 { font-size: 58px; }
  .page-hero h1 { font-size: 68px; }
  .bullet-body { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 860px) {
  :root { --header-height: 82px; --page-pad: 28px; }
  .site-header.inner-header,
  .site-header.scrolled { height: var(--header-height); }
  .brand-logo,
  .site-header.inner-header .brand-logo,
  .site-header.scrolled .brand-logo { width: 108px; }
  .main-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .home-hero { min-height: 720px; padding-top: 140px; }
  .home-hero h1 { font-size: 60px; }
  .hero-copy { font-size: 19px; }
  .metric-band { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-inline-end: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.22); }
  .experience-strip { grid-template-columns: 1fr; }
  .heritage-proof-head { grid-template-columns: 1fr; gap: 28px; }
  .heritage-proof-head .kicker { grid-column: 1; }
  .heritage-names { grid-template-columns: repeat(3, 1fr); }
  .experience-groups { grid-template-columns: 1fr; }
  .selected-work-head { grid-template-columns: 0.25fr 1.75fr; }
  .selected-work-head .text-link { grid-column: 2; justify-self: start; }
  .case-card-grid { grid-template-columns: 1fr; }
  .case-card { display: grid; grid-template-columns: 1fr 1fr; }
  .case-card img { height: 100%; aspect-ratio: auto; }
  .case-study { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-study-media { order: 0; }
  .materials-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2) { border-inline-end: 0; }
  .method-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .integration-feature { grid-template-columns: 1fr; }
  .sector-depth-head { grid-template-columns: 1fr; }
  .sector-depth-head .kicker { grid-column: 1; }
  .sector-detail { grid-template-columns: 45px 0.8fr 1fr; }
  .sector-detail > div:last-child { grid-column: 3; }
  .about-evidence { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { min-height: 250px; }
  .contact-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-topic:nth-child(2) { border-inline-end: 0; }
  .contact-topic:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-grid { grid-template-columns: 1fr; gap: 35px; }
  .display-title { font-size: 52px; }
  .gateway-link { grid-template-columns: 45px 1fr 30px; }
  .gateway-link p { grid-column: 2; }
  .gateway-link .arrow { grid-row: 1 / 3; grid-column: 3; }
  .bullet-body { grid-template-columns: 1fr; gap: 45px; }
  .bullet-detail { max-width: 650px; }
  .teaser { grid-template-columns: 1fr; }
  .teaser-visual { min-height: 370px; }
  .page-hero h1 { font-size: 58px; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row p { grid-column: 2; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-block { border-inline-end: 0; }
  .playbook { grid-template-columns: 1fr; }
  .playbook-detail { border-inline-start: 0; border-top: 1px solid var(--line); }
  .story-layout { grid-template-columns: 1fr; }
  .story-year { writing-mode: initial; transform: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --page-pad: 20px; }
  body { font-size: 16px; }
  .site-header { padding: 0 var(--page-pad); }
  .brand-lockup { min-width: 108px; }
  .brand-logo,
  .site-header.inner-header .brand-logo,
  .site-header.scrolled .brand-logo { width: 102px; }
  .header-tools { gap: 11px; }
  .home-hero { min-height: 680px; padding: 120px var(--page-pad) 58px; background-position: 58% center; }
  .home-hero::before { background: rgba(4,24,24,0.82); }
  .home-hero h1 { font-size: 46px; line-height: 1.02; }
  .hero-copy { font-size: 17px; line-height: 1.55; }
  .metric { min-height: 105px; padding: 20px; }
  .metric strong { font-size: 25px; }
  .experience-types { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .experience-types span:last-child { grid-column: 1 / -1; }
  .heritage-proof { padding-top: 75px; padding-bottom: 75px; }
  .heritage-proof-head { margin-bottom: 42px; }
  .heritage-proof-head h2 { font-size: 38px; }
  .heritage-proof-head > p:last-child { font-size: 16px; }
  .heritage-names { grid-template-columns: repeat(2, 1fr); margin-bottom: 34px; }
  .heritage-names span,
  .heritage-logo { min-height: 82px; padding: 13px; font-size: 11px; }
  .heritage-logo img { max-height: 42px; }
  .experience-index { padding-top: 75px; padding-bottom: 75px; }
  .experience-index-head { grid-template-columns: 30px minmax(0, 1fr); gap: 14px; margin-bottom: 42px; }
  .experience-index-head h2 { font-size: 38px; }
  .experience-group { padding: 24px 20px; }
  .experience-group h3 { font-size: 23px; }
  .name-list { grid-template-columns: 1fr; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .display-title, .bullet-body h2 { font-size: 42px; }
  .lead { font-size: 18px; }
  .gateway-link { min-height: 170px; padding: 25px var(--page-pad); }
  .gateway-link h3 { font-size: 29px; }
  .selected-work-section { padding-top: 75px; padding-bottom: 75px; }
  .selected-work-head { grid-template-columns: 1fr; gap: 25px; }
  .selected-work-head .text-link { grid-column: 1; }
  .selected-work-head h2 { font-size: 40px; }
  .case-card { display: block; }
  .case-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
  .case-card-copy { min-height: 220px; }
  .case-study { min-height: 0; }
  .case-study-media { min-height: 290px; }
  .case-study-content { padding-top: 55px; padding-bottom: 55px; }
  .case-study-content h2 { font-size: 38px; }
  .case-method { grid-template-columns: 1fr; }
  .materials-hero { padding-top: 120px; }
  .materials-hero h1 { font-size: 43px; }
  .materials-section { padding-top: 70px; padding-bottom: 70px; }
  .materials-section > h2 { font-size: 38px; }
  .method-section, .sector-depth, .principles-section, .contact-topics, .next-step-section { padding-top: 75px; padding-bottom: 75px; }
  .method-heading, .principles-head, .next-step-head { grid-template-columns: 1fr; gap: 25px; }
  .method-heading h2, .principles-head h2, .contact-topics-head h2, .next-step-head h2 { font-size: 40px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-step, .method-step:first-child { min-height: 220px; padding: 24px 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .method-step h3 { margin-top: 45px; }
  .integration-media { min-height: 300px; }
  .integration-copy { padding-top: 60px; padding-bottom: 60px; }
  .integration-copy h2 { font-size: 39px; }
  .sector-depth-head h2 { font-size: 42px; }
  .sector-detail { grid-template-columns: 34px 1fr; gap: 20px; }
  .sector-detail > div, .sector-detail > div:last-child { grid-column: 2; }
  .about-evidence-visual { min-height: 320px; background-size: 230% auto; }
  .about-evidence-visual span { font-size: 42px; }
  .about-evidence-copy { padding-top: 60px; padding-bottom: 60px; }
  .about-evidence-copy h2 { font-size: 38px; }
  .principle { min-height: 240px; }
  .contact-topic-grid, .next-step-grid { grid-template-columns: 1fr; }
  .contact-topic, .contact-topic:first-child { min-height: 220px; padding: 24px 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .contact-topic h3 { margin-top: 42px; }
  .next-step-grid article { min-height: 230px; }
  .bullet-bar { align-items: flex-end; gap: 20px; }
  .bullet-bar img { width: 106px; }
  .bullet-bar span { max-width: 145px; text-align: end; }
  .bullet-panel { padding-bottom: 75px; }
  .bullet-body { padding-top: 65px; }
  .teaser-visual { min-height: 300px; background-size: 230% auto; }
  .teaser-visual::after { right: 18px; font-size: 66px; }
  .teaser-copy { padding-top: 60px; padding-bottom: 60px; }
  .teaser-copy h2 { font-size: 40px; }
  .page-hero { padding: 135px var(--page-pad) 65px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero p { font-size: 18px; }
  .content-intro { padding-top: 75px; padding-bottom: 75px; }
  .content-intro h2 { font-size: 42px; }
  .service-row { grid-template-columns: 34px 1fr; padding: 34px var(--page-pad); }
  .service-row h2 { font-size: 29px; }
  .sector-block { min-height: 360px; padding-top: 42px; padding-bottom: 42px; }
  .sector-block h2 { font-size: 40px; }
  .playbook-list { padding: 0 var(--page-pad) 80px; }
  .playbook-head { padding: 38px 0; }
  .playbook h2 { margin-top: 34px; font-size: 38px; }
  .playbook-detail { padding: 38px 0; }
  .story-layout { gap: 45px; padding-top: 80px; padding-bottom: 80px; }
  .story-year { font-size: 76px; }
  .story-copy h2 { font-size: 42px; }
  .quote-band blockquote { font-size: 32px; }
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-statement, .contact-form { padding-top: 90px; padding-bottom: 65px; }
  .contact-statement h1 { font-size: 48px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}

@media (max-width: 560px) {
  html[lang="en"] .experience-index-head h2 { font-size: 35px; }
  html[lang="en"] .experience-group { padding: 22px 18px; }
  html[lang="en"] .experience-group h3 { font-size: 21px; }
  html[lang="en"] .name-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }
  html[lang="en"] .name-list span {
    overflow-wrap: anywhere;
    font-size: 10.5px;
  }
}

/* Final mobile composition overrides live after the shared breakpoints. */
@media (max-width: 560px) {
  html[lang="he"] .home-hero {
    min-height: 620px;
    align-items: flex-end;
    padding: 260px var(--page-pad) 42px;
    background-color: var(--paper);
    background-size: auto 260px;
    background-position: left top;
    background-repeat: no-repeat;
  }
  html[lang="he"] .home-hero::before {
    background: linear-gradient(to bottom, rgba(247,247,244,0.02) 0%, rgba(247,247,244,0.04) 35%, rgba(247,247,244,0.9) 42%, var(--paper) 48%);
  }
  html[lang="he"] .home-hero::after { width: 7px; }
  html[lang="he"] .hero-content { width: 100%; }
  html[lang="he"] .home-hero .kicker { margin-bottom: 17px; font-size: 11px; }
  html[lang="he"] .home-hero h1 { font-size: 40px; line-height: 1.14; }
  html[lang="he"] .hero-copy { margin: 22px 0 25px; font-size: 16px; line-height: 1.68; }
  html[lang="he"] .section-grid,
  html[lang="he"] .selected-work-head {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }
  html[lang="he"] .section-grid .section-index,
  html[lang="he"] .selected-work-head .section-index,
  html[lang="he"] .experience-index-head .section-index { padding-top: 5px; }
  html[lang="he"] .selected-work-head .text-link { grid-column: 2; }
  html[lang="he"] .experience-index-head {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }
  html[lang="he"] .name-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }
  html[lang="he"] .name-list span { font-size: 11px; }
}

/* The English edition uses a brighter, international travel direction. */
html[lang="en"] {
  --forest: #174b63;
  --forest-dark: #10171d;
  --sage: #cbdce1;
  --ice: #c9e0e5;
  --paper: #e9eef0;
  --white: #f7f8f8;
  --ink: #101820;
  --muted: #586875;
  --line: rgba(16, 24, 32, 0.15);
}
html[lang="en"] .site-header:not(.scrolled),
html[lang="en"] .site-header.inner-header {
  color: var(--ink);
  background: rgba(255,255,255,0.91);
  border-bottom-color: rgba(16,24,32,0.14);
  backdrop-filter: blur(16px);
}
html[lang="en"] .site-header .brand-logo { filter: none; }
html[lang="en"] .home-hero {
  min-height: 760px;
  color: var(--ink);
  background-position: center;
}
html[lang="en"] .home-hero::before {
  background: linear-gradient(90deg, rgba(235,240,242,0.98) 0%, rgba(235,240,242,0.91) 29%, rgba(235,240,242,0.48) 49%, rgba(235,240,242,0.04) 72%);
}
html[lang="en"] .home-hero .kicker.on-dark { color: #415664; }
html[lang="en"] .home-hero h1 { max-width: 790px; font-size: 80px; line-height: 1.01; }
html[lang="en"] .hero-copy {
  max-width: 660px;
  color: #3f505c;
  font-size: 19px;
  text-shadow: none;
}
html[lang="en"] .home-hero .text-link { color: var(--ink); }
html[lang="en"] .metric-band {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
html[lang="en"] .metric { border-inline-end-color: var(--line); }
html[lang="en"] .metric strong { color: var(--forest); }
html[lang="en"] .metric span { color: var(--muted); }
html[lang="en"] .heritage-proof {
  color: var(--ink);
  background: #dce6e9;
}
html[lang="en"] .heritage-proof-head .kicker,
html[lang="en"] .heritage-proof-head > p:last-child { color: var(--muted); }
html[lang="en"] .heritage-names { border-color: rgba(16,24,32,0.15); }
html[lang="en"] .heritage-logo {
  border-color: rgba(16,24,32,0.15);
  color: var(--ink);
  background: rgba(255,255,255,0.38);
}
html[lang="en"] .heritage-logo img {
  filter: grayscale(1) contrast(1.12);
  opacity: 0.7;
}
html[lang="en"] .selected-work-section,
html[lang="en"] .method-section,
html[lang="en"] .principles-section,
html[lang="en"] .contact-topics { background: #dfe7ea; }
html[lang="en"] .gateway-link:hover { color: var(--white); background: #174b63; }

html[lang="en"] .bullet-panel {
  position: relative;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--bullet-orange);
  border-inline-start: 0;
  overflow: hidden;
}
html[lang="en"] .bullet-panel::after {
  content: none;
}
html[lang="en"] .bullet-bar {
  position: relative;
  z-index: 1;
  margin: 0 calc(var(--page-pad) * -1);
  border-bottom: 1px solid rgba(16,24,32,0.18);
}
html[lang="en"] .bullet-body {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  gap: 0;
  padding-top: 0;
}
html[lang="en"] .bullet-body h2 {
  max-width: none;
  min-height: 510px;
  display: flex;
  align-items: center;
  padding: 82px 7vw 120px 0;
  font-size: 72px;
  line-height: 1.02;
}
html[lang="en"] .bullet-detail {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px var(--page-pad) 120px;
  color: var(--white);
  background: var(--forest-dark);
}
html[lang="en"] .bullet-detail p { color: rgba(255,255,255,0.74); }
html[lang="en"] .bullet-detail a { color: var(--white); }
html[lang="en"] .bullet-manifesto {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 calc(var(--page-pad) * -1);
  padding: 30px var(--page-pad) 38px;
  color: rgba(255,255,255,0.32);
  background: var(--bullet-orange);
  font-size: clamp(32px, 4.15vw, 62px);
  line-height: 0.92;
  font-weight: 850;
  white-space: nowrap;
}
html[lang="en"] .bullet-manifesto i { color: rgba(16,24,32,0.26); font-style: normal; }

html[lang="en"] .teaser-copy {
  color: var(--ink);
  background: #cedde1;
}
html[lang="en"] .teaser-copy .kicker.on-dark,
html[lang="en"] .teaser-copy p { color: var(--muted); }
html[lang="en"] .teaser-copy .text-link { color: var(--ink); }
html[lang="en"] .teaser-visual::after { color: var(--white); text-shadow: 0 3px 18px rgba(16,24,32,0.28); }

html[lang="en"] .page-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  padding-top: 170px;
  color: var(--ink);
  background-color: #e1e8ea;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
html[lang="en"] .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233,238,240,0.98) 0%, rgba(233,238,240,0.91) 43%, rgba(233,238,240,0.25) 70%, rgba(233,238,240,0.03) 100%);
}
html[lang="en"] .page-hero-inner { position: relative; z-index: 1; width: 100%; }
html[lang="en"] .page-hero h1 { max-width: 890px; font-size: 72px; line-height: 1.02; }
html[lang="en"] .page-hero p { max-width: 680px; color: #40525e; font-size: 19px; }
html[lang="en"] .page-hero .kicker { color: var(--forest); }
html[lang="en"] body[data-page="expertise"] .page-hero { background-image: url("assets/case-airline.png"); }
html[lang="en"] body[data-page="sectors"] .page-hero { background-image: url("assets/case-destination.png"); }
html[lang="en"] body[data-page="work"] .page-hero { background-image: url("assets/case-cruise.png"); }
html[lang="en"] body[data-page="about"] .page-hero { background-image: url("assets/eshkol-hero.png"); }
html[lang="en"] .integration-copy {
  color: var(--ink);
  background: var(--bullet-orange);
}
html[lang="en"] .integration-copy > p:not(.kicker) { color: rgba(16,24,32,0.72); }
html[lang="en"] .integration-list span { border-color: rgba(16,24,32,0.35); }
html[lang="en"] .sector-block:nth-child(4) { color: var(--ink); background: #cedde1; }
html[lang="en"] .quote-band { background: #174b63; }
html[lang="en"] .contact-statement {
  color: var(--ink);
  background: #cfdfe3;
}
html[lang="en"] .contact-statement .kicker.on-dark,
html[lang="en"] .contact-statement p { color: #465966; }
html[lang="en"] .next-step-section { background: #174b63; }
html[lang="en"] .next-step-grid article { background: #174b63; }
html[lang="en"] .site-footer { background: #24272b; }

/* Founder profile and the strengthened experience index. */
.founder-teaser .teaser-visual {
  min-height: 620px;
  background-image: url("assets/moshe-snir.png");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}
.founder-teaser .teaser-visual::after {
  content: "MOSHE SNIR";
  right: 30px;
  bottom: 24px;
  max-width: calc(100% - 60px);
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 76px);
  line-height: 0.9;
  text-shadow: 0 3px 22px rgba(11,13,18,0.4);
}

.story-layout.founder-profile {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.5fr);
  gap: 0;
  padding: 0;
  background: #f0f2f7;
}
html[lang="he"] .story-layout.founder-profile { direction: ltr; }
html[lang="he"] .founder-profile .story-copy { direction: rtl; }
html[lang="en"] .story-layout.founder-profile { direction: rtl; }
html[lang="en"] .founder-profile .story-copy { direction: ltr; }
.founder-portrait {
  position: relative;
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: #d9e0e5;
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(11,13,18,0.58), transparent);
  pointer-events: none;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}
.founder-portrait .story-year {
  position: absolute;
  inset-inline-start: 28px;
  bottom: 48px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(62px, 7vw, 112px);
  line-height: 0.8;
  writing-mode: initial;
  transform: none;
}
.founder-portrait figcaption {
  position: absolute;
  inset-inline-end: 30px;
  bottom: 25px;
  z-index: 1;
  max-width: 190px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}
.founder-profile .story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--page-pad);
}
.founder-profile .story-copy h2 { font-size: 58px; }
.founder-profile .story-copy p:not(.kicker) {
  max-width: 760px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}
.founder-profile .story-copy .founder-summary {
  max-width: 700px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.experience-group {
  position: relative;
  padding-top: 0;
  border-top: 5px solid var(--forest);
  background: #fbfbfa;
}
.experience-group header {
  min-height: 112px;
  align-items: center;
}
.experience-group header span {
  min-width: 48px;
  color: var(--orange);
  font-size: 18px;
}
.experience-group h3 {
  font-size: 30px;
  font-weight: 820;
}

@media (max-width: 860px) {
  .story-layout.founder-profile { grid-template-columns: 1fr; }
  .founder-profile .story-copy { padding: 75px var(--page-pad); }
  .founder-portrait,
  .founder-portrait img { min-height: 640px; }
}

@media (max-width: 560px) {
  .founder-teaser .teaser-visual {
    min-height: 390px;
    background-position: center 20%;
    background-size: cover;
  }
  .founder-teaser .teaser-visual::after {
    right: 18px;
    bottom: 17px;
    max-width: calc(100% - 36px);
    font-size: 34px;
  }
  .story-layout.founder-profile {
    gap: 0;
    padding: 0;
  }
  .founder-portrait,
  .founder-portrait img { min-height: 470px; }
  .founder-portrait .story-year {
    inset-inline-start: 18px;
    bottom: 40px;
    font-size: 62px;
  }
  .founder-portrait figcaption {
    inset-inline-end: 18px;
    bottom: 16px;
  }
  .founder-profile .story-copy { padding: 65px var(--page-pad); }
  .founder-profile .story-copy h2 { font-size: 39px; }
  .founder-profile .story-copy p:not(.kicker) {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
  }
  .experience-group { padding: 0 20px 24px; }
  .experience-group header { min-height: 94px; }
  .experience-group header span { min-width: 38px; font-size: 15px; }
  .experience-group h3 { font-size: 23px; }
}

@media (max-width: 860px) {
  html[lang="en"] .home-hero::before {
    background: linear-gradient(90deg, rgba(233,238,240,0.97) 0%, rgba(233,238,240,0.85) 54%, rgba(233,238,240,0.2) 100%);
  }
  html[lang="en"] .bullet-body { grid-template-columns: 1fr; }
  html[lang="en"] .bullet-body h2 { min-height: 0; padding: 70px 0 85px; }
  html[lang="en"] .bullet-detail { margin: 0 calc(var(--page-pad) * -1); padding: 65px var(--page-pad) 90px; }
  html[lang="en"] .page-hero { min-height: 570px; }
  html[lang="en"] .page-hero::before {
    background: linear-gradient(90deg, rgba(233,238,240,0.98) 0%, rgba(233,238,240,0.88) 62%, rgba(233,238,240,0.2) 100%);
  }
}

@media (max-width: 560px) {
  html[lang="en"] .home-hero {
    min-height: 680px;
    align-items: flex-end;
    padding: 245px var(--page-pad) 45px;
    background-position: 62% top;
  }
  html[lang="en"] .home-hero::before {
    background: linear-gradient(to bottom, rgba(233,238,240,0.04) 0%, rgba(233,238,240,0.16) 28%, rgba(233,238,240,0.93) 46%, var(--paper) 62%);
  }
  html[lang="en"] .home-hero h1 { font-size: 43px; line-height: 1.03; }
  html[lang="en"] .hero-copy { margin: 22px 0 25px; font-size: 16px; line-height: 1.58; }
  html[lang="en"] .metric:nth-child(-n+2) { border-bottom-color: var(--line); }
  html[lang="en"] .heritage-logo { background: rgba(255,255,255,0.55); }
  html[lang="en"] .bullet-body h2 { padding: 58px 0 72px; font-size: 43px; }
  html[lang="en"] .bullet-detail { padding-top: 58px; padding-bottom: 80px; }
  html[lang="en"] .bullet-manifesto {
    gap: 8px;
    padding-top: 22px;
    padding-bottom: 26px;
    font-size: clamp(14px, 4.2vw, 18px);
  }
  html[lang="en"] .page-hero {
    min-height: 650px;
    align-items: flex-end;
    padding: 285px var(--page-pad) 58px;
    background-position: center top;
    background-size: auto 300px;
    background-color: var(--paper);
  }
  html[lang="en"] .page-hero::before {
    background: linear-gradient(to bottom, rgba(233,238,240,0.03) 0%, rgba(233,238,240,0.08) 32%, rgba(233,238,240,0.94) 46%, var(--paper) 54%);
  }
  html[lang="en"] .page-hero h1 { font-size: 43px; line-height: 1.04; }
  html[lang="en"] .page-hero p { font-size: 17px; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
