:root {
  --ink: #161616;
  --muted: #5f6165;
  --line: #d9e7ee;
  --paper: #fbfdfe;
  --soft: #edf7fc;
  --metal: #84cdf0;
  --metal-dark: #266f98;
  --metal-pale: #dff3fc;
  --graphite: #1f2f3a;
  --shadow: 0 24px 70px rgba(18, 38, 52, 0.12);
  --hairline: rgba(38, 111, 152, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(237, 247, 252, 0.28)),
    var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans Hebrew", "Arial", sans-serif;
  line-height: 1.75;
}

html:not([data-lang]),
html[data-lang="he"] {
  direction: rtl;
}

html[data-lang="en"] {
  direction: ltr;
}

html:not([data-lang]) .lang-en,
html[data-lang="he"] .lang-en,
html[data-lang="en"] .lang-he {
  display: none !important;
}

.hero-copy,
.hero-identity,
.hero-facts,
.main-nav,
.intro-section,
.services-section,
.projects-section,
.sources-section,
.about-section,
.contact-section,
.site-footer {
  transition: opacity .28s ease, transform .28s ease;
}

html.is-language-changing .hero-copy,
html.is-language-changing .hero-identity,
html.is-language-changing .hero-facts,
html.is-language-changing .main-nav,
html.is-language-changing .intro-section,
html.is-language-changing .services-section,
html.is-language-changing .projects-section,
html.is-language-changing .sources-section,
html.is-language-changing .about-section,
html.is-language-changing .contact-section,
html.is-language-changing .site-footer {
  opacity: .12;
  pointer-events: none;
  transform: translateY(8px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 50;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

main section {
  scroll-margin-top: 94px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(38, 111, 152, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.footer-inner,
.hero-actions,
.link-row,
.contact-actions,
.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-full {
  width: clamp(210px, 20vw, 278px);
}

.brand-logo-mark {
  display: none;
  width: 44px;
  height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 40px;
  border: 1px solid rgba(20, 54, 76, 0.22);
  color: #14364c;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fd 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.is-logo-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-frame,
.logo-rule,
.logo-letter,
.logo-accent {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.logo-frame {
  stroke: rgba(20, 54, 76, 0.48);
  stroke-width: 1.25;
  shape-rendering: geometricPrecision;
}

.logo-rule {
  stroke: rgba(38, 111, 152, 0.34);
  stroke-width: 0.9;
}

.logo-letter {
  stroke: #132f43;
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.logo-letter-i {
  stroke-width: 2.2;
}

.logo-letter-s {
  stroke-width: 2.35;
}

.logo-accent {
  stroke: #84cdf0;
  stroke-width: 1.15;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  color: #343638;
  font-size: 14px;
}

.main-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: var(--metal);
}

.header-cta {
  min-width: max-content;
  padding: 9px 14px;
  border: 1px solid rgba(18, 38, 52, 0.76);
  font-size: 14px;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(38, 111, 152, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.language-switch button {
  min-height: 30px;
  padding: 5px 9px;
  border: 0;
  background: transparent;
  color: #315467;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-switch button.is-active {
  background: #1f2f3a;
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(132, 205, 240, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 46%, #e8f6fc 100%);
  color: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(246, 251, 254, 0.82) 48%, rgba(229, 246, 253, 0.92) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(237, 247, 252, 0.44));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  align-self: center;
  justify-self: center;
  width: min(1080px, calc(100vw - 40px));
  margin-inline: auto;
  padding-block: clamp(42px, 6.5vh, 78px);
  text-align: center;
}

.hero-redesign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  text-align: start;
}

html[data-lang="en"] .hero-redesign {
  direction: ltr;
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  margin-block-end: 14px;
  padding-block-end: 8px;
  border-bottom: 1px solid rgba(126, 36, 48, 0.45);
  color: #314b59;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-identity {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px) clamp(22px, 3vw, 34px);
  border-inline-start: 1px solid rgba(38, 111, 152, 0.18);
}

html[data-lang="en"] .hero-identity {
  border-inline-start: 0;
  border-inline-end: 1px solid rgba(38, 111, 152, 0.18);
}

.hero-stamp {
  display: grid;
  place-items: center;
  width: clamp(118px, 12vw, 156px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(31, 47, 58, 0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,251,255,.72));
  box-shadow:
    0 28px 60px rgba(18, 38, 52, 0.10),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

.hero-stamp img {
  width: 100%;
  height: auto;
}

.hero-wordmark {
  width: min(300px, 100%);
  opacity: .96;
}

.hero-logo {
  display: inline-grid;
  place-items: center;
  width: clamp(250px, 27vw, 342px);
  height: auto;
  margin-block-end: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-logo img { width: 100%; height: auto; }

.hero-logo .is-logo-svg {
  width: 55px;
  height: 42px;
}

.brand-mark .is-logo-svg {
  width: 30px;
  height: 23px;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1 {
  --text-gradient-end: #122633;
  max-width: 780px;
  margin: 0 0 14px;
  color: #122633;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

h1,
h2,
h3,
.hero-subtitle {
  background:
    linear-gradient(
      180deg,
      var(--text-gradient-end, #122633) 0%,
      var(--text-gradient-end, #122633) 93%,
      #203744 97%,
      #b7c4c9 99.1%,
      #73828a 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span,
.hero-subtitle span {
  display: block;
}

h1 > .lang-he,
h1 > .lang-en,
.hero-subtitle > .lang-he,
.hero-subtitle > .lang-en {
  display: block;
}

h1 > .lang-he span,
h1 > .lang-en span,
.hero-subtitle > .lang-he span,
.hero-subtitle > .lang-en span {
  display: block;
  white-space: nowrap;
}

.refined-abbr {
  display: inline-block !important;
  white-space: nowrap;
}

.refined-quote {
  display: inline-block !important;
  margin-inline: .045em .02em;
  color: #122633;
  font-family: "Inter", "IBM Plex Sans Hebrew", Arial, sans-serif;
  font-size: .72em;
  font-weight: 600;
  line-height: 1;
  opacity: .86;
  transform: translateY(-.18em);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #122633;
}

.hero-subtitle {
  --text-gradient-end: #1d566f;
  max-width: 760px;
  margin-inline: 0;
  margin-block-end: 16px;
  color: #1d566f;
  font-size: clamp(23px, 2.35vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-topics {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: 10px;
  justify-content: start;
  max-width: 680px;
  margin: 0 0 30px;
  padding: 0;
  color: #355b6e;
  list-style: none;
}

.hero-topics li {
  padding: 7px 11px;
  border: 1px solid rgba(155, 215, 244, 0.42);
  background: rgba(255, 255, 255, 0.36);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

html:not([data-lang]) .hero-topics li:last-child:nth-child(odd),
html[data-lang="he"] .hero-topics li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

html[data-lang="en"] .hero-topics {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

html:not([data-lang]) .hero-actions,
html[data-lang="he"] .hero-actions {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid rgba(38, 111, 152, 0.22);
  font-weight: 700;
  letter-spacing: 0;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.btn.primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(134,207,240,.76)),
    linear-gradient(90deg, rgba(255,255,255,.46), rgba(255,255,255,0));
  border-color: rgba(38, 111, 152, 0.28);
  color: #0d2634;
  box-shadow:
    0 14px 30px rgba(38, 111, 152, 0.12),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.btn.primary:hover {
  border-color: rgba(18, 38, 52, 0.34);
  box-shadow:
    0 18px 38px rgba(38, 111, 152, 0.16),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(-2px);
}

.btn.secondary {
  color: #17384b;
  background: rgba(255, 255, 255, 0.66);
}

.hero-facts {
  position: relative;
  z-index: 1;
  grid-column: 1;
  align-self: end;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto clamp(18px, 4vw, 42px);
  background: rgba(38, 111, 152, 0.14);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-block-end: 8px;
  color: #1f4d66;
  font-size: 20px;
}

.hero-facts span {
  color: #46606d;
  font-size: 14px;
  line-height: 1.6;
}

.intro-section,
.services-section,
.projects-section,
.estates-section,
.sources-section,
.faq-section,
.about-section,
.contact-section {
  padding-block: clamp(72px, 9vw, 120px);
}

.services-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.services-section::before,
.contact-section::before {
  position: absolute;
  inset-block: clamp(32px, 6vw, 78px);
  width: min(30vw, 360px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.99), rgba(255,255,255,.68) 42%, rgba(255,255,255,.18) 76%, rgba(255,255,255,0)),
    url("assets/editorial/legal-architecture.jpg") center right / cover no-repeat;
  opacity: .13;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 74%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 74%, transparent 100%);
  pointer-events: none;
  content: "";
}

.services-section::after,
.contact-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0 12%, rgba(38,111,152,.045) 12% calc(12% + 1px), rgba(255,255,255,0) calc(12% + 1px) 100%),
    repeating-linear-gradient(135deg, rgba(38,111,152,.026) 0 1px, transparent 1px 24px);
  opacity: .68;
  pointer-events: none;
  content: "";
}

.services-section::before {
  left: max(0px, calc((100vw - 1180px) / 2 - 86px));
  transform: scaleX(-1);
}

.contact-section::before {
  right: max(0px, calc((100vw - 1180px) / 2 - 86px));
}

.services-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 2;
}

.intro-section,
.estates-section,
.faq-section,
.sources-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    var(--soft);
}

.intro-grid,
.about-grid,
.contact-grid,
.sources-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.about-grid-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

h2 {
  --text-gradient-end: #122633;
  margin-block-end: 18px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  --text-gradient-end: #1f2f3a;
  margin-block-end: 12px;
  font-size: 21px;
  line-height: 1.35;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
}

.process-list > span {
  position: relative;
  padding-inline-start: 30px;
  color: #2a2c2f;
  font-weight: 700;
}

.process-list > span::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.67em;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(38, 111, 152, 0.72);
  border-radius: 50%;
  background: var(--metal);
  content: "";
}

.process-list > span > span {
  padding: 0;
}

.process-list > span > span::before {
  content: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-start {
  margin-inline: 0;
  text-align: start;
}

.authority-note {
  display: inline-flex;
  align-items: center;
  margin-block-start: 22px;
  padding-block: 10px;
  border-block: 1px solid rgba(38, 111, 152, 0.16);
  color: #27495b;
  font-size: 15px;
  font-weight: 800;
}

.authority-note::before {
  width: 34px;
  height: 1px;
  margin-inline-end: 12px;
  background: rgba(126, 36, 48, 0.38);
  content: "";
}

.section-kicker {
  margin-block-end: 10px;
  color: #315467;
  font-size: 14px;
  font-weight: 800;
}

.estates-card {
  display: grid;
  grid-template-columns: minmax(240px, .76fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,252,255,.74)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.035) 0 1px, transparent 1px 22px);
  box-shadow:
    0 26px 70px rgba(18, 38, 52, 0.065),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

.estates-card h2 {
  margin-block-end: 0;
}

.estates-card p {
  margin: 0;
  color: #4f6673;
  font-size: clamp(17px, 1.35vw, 19px);
}

.estates-expanded {
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.estates-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.estates-intro h2 {
  margin-block-end: 2px;
}

.estates-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.74);
}

.estates-panel h3,
.estates-dispute h3 {
  margin-block-end: 16px;
  color: #142937;
  font-size: clamp(20px, 2vw, 25px);
}

.estates-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estates-list li {
  position: relative;
  padding-block: 10px;
  padding-inline: 18px 12px;
  border-block-end: 1px solid rgba(38, 111, 152, 0.14);
  color: #294c5f;
  font-size: 15px;
  font-weight: 700;
}

html[data-lang="he"] .estates-list li {
  padding-inline: 12px 18px;
}

.estates-list li::before {
  position: absolute;
  inset-block-start: 1.05em;
  inset-inline-start: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #75c7ec;
  box-shadow: 0 0 0 4px rgba(117, 199, 236, 0.16);
  content: "";
}

html[data-lang="he"] .estates-list li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

.estates-dispute {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding-block-start: clamp(22px, 3vw, 30px);
  border-block-start: 1px solid rgba(38, 111, 152, 0.16);
}

.estates-dispute h3 {
  margin: 0;
}

.estates-dispute a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: 22px;
  border: 1px solid rgba(38, 111, 152, 0.24);
  background: linear-gradient(180deg, #8bd4f3, #62bee7);
  color: #122633;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.estates-dispute a:hover {
  border-color: rgba(18, 38, 52, 0.38);
  box-shadow: 0 16px 34px rgba(38, 111, 152, 0.18);
  transform: translateY(-2px);
}

.estates-full-section {
  position: relative;
  overflow: hidden;
}

.estates-full-section::before {
  position: absolute;
  inset-block: 7% 8%;
  inset-inline-start: max(0px, calc((100vw - 1120px) / 2 - 96px));
  width: min(34vw, 420px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.32) 48%, rgba(255,255,255,0)),
    url("assets/editorial/legal-architecture.jpg") center right / cover no-repeat;
  opacity: .11;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 78%, transparent 100%);
  pointer-events: none;
  content: "";
}

.estates-full {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.estates-hero {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,252,255,.8)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.035) 0 1px, transparent 1px 22px);
  box-shadow:
    0 26px 70px rgba(18, 38, 52, 0.065),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

.estates-lead {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.estates-lead p,
.estates-feature p,
.estates-services-band p,
.estates-process p,
.estates-dispute-full p {
  margin: 0;
  color: #4f6673;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.85;
}

.estates-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, .96fr));
  gap: 18px;
}

.estates-feature {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(18, 38, 52, 0.045);
}

.estates-feature-primary {
  background:
    linear-gradient(160deg, rgba(255,255,255,.94), rgba(232,248,255,.82)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.038) 0 1px, transparent 1px 20px);
}

.feature-number {
  display: inline-block;
  margin-block-end: 24px;
  color: rgba(38, 111, 152, 0.48);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.estates-feature h3,
.estates-services-band h3,
.estates-process h3,
.estates-dispute-full h3 {
  margin-block-end: 12px;
  color: #142937;
  font-size: clamp(21px, 2.15vw, 28px);
}

.estates-services-band {
  display: grid;
  grid-template-columns: minmax(230px, .45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.68)),
    linear-gradient(90deg, rgba(117,199,236,.1), transparent 42%);
}

.estates-process {
  display: grid;
  grid-template-columns: minmax(230px, .52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(30px, 4vw, 44px);
  border-block: 1px solid rgba(38, 111, 152, 0.16);
}

.estates-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(38, 111, 152, 0.13);
  border: 1px solid rgba(38, 111, 152, 0.13);
}

.estates-process li {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: #24485c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.estates-process li::before {
  display: block;
  width: 34px;
  height: 1px;
  margin-block-end: 18px;
  background: rgba(126, 36, 48, 0.36);
  content: "";
}

.estates-dispute-full {
  grid-template-columns: minmax(240px, .44fr) minmax(0, 1fr) auto;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(38, 111, 152, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,248,255,.78)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.035) 0 1px, transparent 1px 20px);
}

.estates-refined {
  max-width: 1080px;
  gap: 18px;
}

.estates-hero-refined {
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(34px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(247,252,255,.72)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.026) 0 1px, transparent 1px 24px);
  box-shadow:
    0 22px 56px rgba(18, 38, 52, 0.052),
    inset 0 0 0 1px rgba(255,255,255,.76);
}

.estates-hero-refined .section-heading {
  align-self: center;
}

.estates-hero-refined .estates-lead {
  max-width: 650px;
  gap: 15px;
}

.estates-hero-refined .estates-lead p {
  font-size: clamp(16px, 1.26vw, 18px);
  line-height: 1.9;
}

.estates-services-refined {
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
  padding: clamp(26px, 3.5vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.estates-services-refined h3 {
  font-size: clamp(22px, 2vw, 26px);
}

.estates-services-refined .estates-list {
  gap: 0 18px;
}

.estates-services-refined .estates-list li {
  padding-block: 12px;
  font-size: 14.5px;
}

.estates-inline-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: 24px;
  border: 1px solid rgba(38, 111, 152, 0.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(132,205,240,.7)),
    linear-gradient(90deg, rgba(255,255,255,.48), rgba(255,255,255,0));
  color: #122633;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.estates-inline-cta:hover {
  border-color: rgba(18, 38, 52, 0.38);
  box-shadow: 0 16px 34px rgba(38, 111, 152, 0.16);
  transform: translateY(-2px);
}

.faq-section .section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.motion-ready .faq-section .section-heading[data-reveal] {
  opacity: 1;
  filter: none;
  transform: none;
}

.faq-list {
  box-shadow: 0 18px 50px rgba(18, 38, 52, 0.045);
}

.faq-list article {
  padding: clamp(20px, 2.6vw, 26px);
}

.faq-list h3 {
  color: #142937;
  font-size: 18px;
}

.service-grid,
.project-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article,
.project-list article,
.about-card,
.note-card,
.contact-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(18, 38, 52, 0.045);
}

.service-grid article {
  padding: 28px;
  min-width: 0;
}

.service-grid article::before {
  display: block;
  width: 42px;
  height: 2px;
  margin-block-end: 22px;
  background: var(--metal);
  content: "";
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: clamp(460px, 48vw, 610px);
  margin-block: -6px clamp(28px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(38, 111, 152, 0.16);
  background:
    linear-gradient(135deg, rgba(132, 205, 240, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 28px 76px rgba(18, 38, 52, 0.08),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

html[data-lang="en"] .project-showcase {
  direction: ltr;
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(24px, 4vw, 38px);
  padding: clamp(30px, 5vw, 58px);
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 252, 0.72)),
    rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: none;
}

.project-art {
  position: relative;
  min-height: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-inline-end: 1px solid rgba(38, 111, 152, 0.14);
  background:
    radial-gradient(circle at 50% 54%, rgba(255,255,255,.04), rgba(255,255,255,.62) 62%, rgba(245,251,254,.94) 100%),
    url("assets/editorial/blueprint-projects.jpg") center 52% / auto 98% no-repeat,
    #f7fcff;
  box-shadow: none;
}

.project-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.56), transparent 32%, transparent 72%, rgba(255,255,255,.62)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.035) 0 1px, transparent 1px 22px);
  content: "";
}

.project-feature p {
  color: #4f6673;
  font-size: clamp(17px, 1.4vw, 19px);
}

.project-feature dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.project-feature dl div {
  padding: 20px;
  border: 1px solid rgba(38, 111, 152, 0.16);
  background: rgba(255, 255, 255, 0.68);
}

.project-feature dt {
  color: #5b7380;
  font-size: 13px;
}

.project-feature dd {
  margin: 0;
  color: #1f4d66;
  font-size: 34px;
  font-weight: 800;
}

.link-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 24px;
}

.link-row a,
.project-list a,
.sources-grid a {
  color: var(--metal-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.project-feature .link-row a {
  color: var(--metal-dark);
}

.project-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-list article {
  min-height: 250px;
  padding: 26px;
  min-width: 0;
}

.project-list p {
  min-height: 112px;
  font-size: 16px;
}

.sources-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sources-grid li {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  min-width: 0;
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  position: absolute;
  inset-block: 38px;
  inset-inline-start: max(0px, calc((100vw - 1120px) / 2 - 60px));
  width: min(30vw, 360px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.34) 46%, rgba(255,255,255,0)),
    url("assets/editorial/legal-architecture.jpg") center right / cover no-repeat;
  opacity: .12;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 74%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 74%, transparent 100%);
  pointer-events: none;
  content: "";
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(38, 111, 152, 0.16);
  background: rgba(38, 111, 152, 0.13);
  box-shadow: 0 26px 70px rgba(18, 38, 52, 0.055);
}

.faq-list article {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.9);
}

.faq-list h3 {
  margin-block-end: 8px;
  font-size: 19px;
}

.faq-list p {
  margin: 0;
  font-size: 16px;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 62%, rgba(237, 247, 252, 0.54) 62% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(135deg, rgba(155, 215, 244, 0.22) 0 1px, transparent 1px 18px);
}

.about-section::after {
  position: absolute;
  inset-block: 0;
  right: max(0px, calc((100vw - 1120px) / 2 - 54px));
  width: min(34vw, 430px);
  min-width: 300px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.36) 38%, rgba(255,255,255,.04)),
    url("assets/editorial/legal-architecture.jpg") center right / cover no-repeat;
  opacity: .78;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 78%, transparent 100%);
  pointer-events: none;
  content: "";
}

.about-section .container {
  position: relative;
  z-index: 1;
  padding-right: min(36vw, 440px);
}

.about-card,
.note-card {
  padding: clamp(28px, 5vw, 48px);
}

.note-card {
  border-color: rgba(155, 215, 244, 0.7);
  background: #f4fbff;
}

.contact-grid {
  align-items: center;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  min-height: 118px;
  padding: 22px;
  min-width: 0;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 14px;
}

.contact-card strong {
  margin-block-start: 6px;
  font-size: 19px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-card[href^="mailto"] strong {
  direction: ltr;
  text-align: start;
  white-space: nowrap;
  font-size: clamp(15px, 2vw, 18px);
}

.email-card {
  grid-column: span 2;
}

.service-grid {
  gap: 0;
  border-block: 1px solid rgba(38, 111, 152, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.service-grid article {
  min-height: 248px;
  padding: clamp(26px, 3vw, 36px);
  border: 0;
  border-inline-start: 1px solid rgba(38, 111, 152, 0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.38));
  box-shadow: none;
}

.service-grid article:last-child {
  border-inline-start: 0;
}

html[data-lang="en"] .service-grid article {
  border-inline-start: 0;
  border-inline-end: 1px solid rgba(38, 111, 152, 0.13);
}

html[data-lang="en"] .service-grid article:last-child {
  border-inline-end: 0;
}

.service-grid article::before {
  width: 34px;
  height: 1px;
  margin-block-end: 24px;
  background: rgba(126, 36, 48, 0.38);
}

.service-grid h3 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.32;
}

.service-grid p {
  color: #607380;
  font-size: 15.5px;
  line-height: 1.78;
}

.project-list article {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  box-shadow: none;
}

.sources-grid li,
.faq-list article,
.contact-card {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.contact-grid {
  grid-template-columns: minmax(280px, .86fr) minmax(360px, 1.14fr);
  align-items: start;
}

.contact-actions {
  position: relative;
  gap: 0;
  border: 1px solid rgba(38, 111, 152, 0.17);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(236,248,254,.42)),
    repeating-linear-gradient(135deg, rgba(38,111,152,.024) 0 1px, transparent 1px 22px);
  box-shadow:
    0 26px 70px rgba(18, 38, 52, 0.055),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.contact-card {
  min-height: 118px;
  border: 0;
  border-inline-start: 1px solid rgba(38, 111, 152, 0.12);
  border-block-end: 1px solid rgba(38, 111, 152, 0.12);
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}

.contact-card:nth-child(2n) {
  border-inline-start: 0;
}

.contact-card:nth-last-child(-n + 2) {
  border-block-end: 1px solid rgba(38, 111, 152, 0.12);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-1px);
}

.contact-card strong {
  color: #142937;
}

.email-card {
  grid-column: 1 / -1;
  min-height: 104px;
}

.contact-card[href*="google.com"] {
  grid-column: 1 / -1;
  min-height: 100px;
  border-block-end: 0;
}

.email-card,
.contact-card[href*="google.com"] {
  display: grid;
  grid-template-columns: minmax(92px, .38fr) minmax(0, 1fr);
  align-items: center;
}

.contact-card[href^="mailto"] strong {
  letter-spacing: .01em;
}

.site-footer {
  padding-block: 28px;
  background: #111214;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-section::before,
  .contact-section::before {
    opacity: .08;
    width: min(46vw, 260px);
  }

  .services-section::after,
  .contact-section::after {
    opacity: .38;
  }

  .hero-content {
    width: var(--container);
    margin-inline: auto;
  }

  .hero-redesign {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .hero-kicker {
    justify-self: center;
  }

  .hero-identity {
    order: -1;
    min-height: auto;
    padding: 18px 0 0;
    border: 0;
    gap: 10px;
  }

  html[data-lang="en"] .hero-identity {
    border: 0;
  }

  .hero-stamp {
    display: none;
  }

  .hero-wordmark {
    width: min(246px, 72vw);
  }

  .hero-facts {
    grid-column: 1;
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    margin: 0 auto 30px;
  }

  .hero-facts div {
    min-height: auto;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .sources-grid,
  .faq-grid,
  .estates-card,
  .project-feature {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .estates-expanded,
  .estates-hero,
  .estates-feature-grid,
  .estates-services-band,
  .estates-process,
  .estates-dispute {
    grid-template-columns: 1fr;
  }

  .estates-dispute {
    align-items: start;
  }

  .estates-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estates-dispute a {
    justify-self: start;
  }

  .estates-hero-refined,
  .estates-services-refined {
    grid-template-columns: 1fr;
  }

  .estates-inline-cta {
    justify-self: start;
  }
}

@media (max-width: 660px) {
  :root {
    --container: min(calc(100vw - 28px), 1120px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    min-height: 68px;
    gap: 14px;
    padding-inline: 14px;
  }

  .brand { min-width: 0; }
  .brand-logo-full { display: none; }
  .brand-logo-mark { display: block; }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 14px;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch button {
    min-height: 28px;
    padding-inline: 7px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 254, 0.92)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(237, 247, 252, 0.62));
  }

  .hero-media img {
    object-position: 45% center;
    opacity: 0.62;
  }

  .hero-redesign {
    position: relative;
    align-content: center;
    justify-items: center;
    min-height: calc(100svh - 92px);
    gap: 16px;
    padding-block: 22px 24px;
    isolation: isolate;
  }

  .hero-redesign::before {
    position: absolute;
    top: 54px;
    left: 50%;
    z-index: -1;
    width: min(286px, calc(100vw - 64px));
    height: 196px;
    border: 1px solid rgba(38, 111, 152, 0.13);
    background:
      radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.98) 0 36%, rgba(241, 250, 254, 0.62) 59%, rgba(255, 255, 255, 0) 80%),
      linear-gradient(90deg, transparent 0 calc(50% - .5px), rgba(38, 111, 152, 0.13) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    content: "";
    transform: translateX(-50%);
  }

  .hero-identity {
    position: relative;
    display: grid;
    justify-items: center;
    width: min(300px, 78vw);
    margin-inline: auto;
    padding: 0;
    gap: 7px;
  }

  .hero-identity::before,
  .hero-identity::after {
    position: absolute;
    top: 41px;
    width: 46px;
    height: 1px;
    background: rgba(126, 36, 48, 0.34);
    content: "";
  }

  .hero-identity::before {
    right: calc(50% + 54px);
  }

  .hero-identity::after {
    left: calc(50% + 54px);
  }

  .hero-stamp {
    display: grid;
    width: clamp(74px, 21vw, 90px);
    padding: 4px;
    border-color: rgba(31, 47, 58, 0.24);
    background: rgba(255, 255, 255, 0.58);
    box-shadow:
      0 16px 38px rgba(18, 38, 52, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  }

  .hero-wordmark {
    width: min(222px, 64vw);
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-kicker {
    margin-block-end: 14px;
  }

  h1 {
    width: 100%;
    max-width: 352px;
    margin-block-end: 12px;
    font-size: clamp(32px, 8.7vw, 36px);
    line-height: 1.08;
    margin-inline: auto;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
    margin-block-end: 16px;
    font-size: clamp(19px, 5.35vw, 21px);
    line-height: 1.28;
  }

  .hero-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100%, 330px);
    gap: 6px 10px;
    margin-block-end: 26px;
    margin-inline: auto;
  }

  .hero-topics li {
    padding: 7px 9px;
    border-color: rgba(155, 215, 244, 0.38);
    background: rgba(255, 255, 255, 0.42);
    font-size: 12.5px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }

  .hero-topics li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: min(178px, 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
    padding-block: 20px 24px;
  }

  .hero-logo {
    width: min(248px, 76vw);
    height: auto;
    margin-block-end: 8px;
  }

  h1 span,
  .hero-subtitle span {
    white-space: normal;
  }

  h1 > .lang-he span,
  h1 > .lang-en span,
  .hero-subtitle > .lang-he span,
  .hero-subtitle > .lang-en span {
    white-space: normal;
  }

  html:not([data-lang]) h1 > .lang-he span,
  html[data-lang="he"] h1 > .lang-he span,
  html:not([data-lang]) .hero-subtitle > .lang-he span,
  html[data-lang="he"] .hero-subtitle > .lang-he span {
    white-space: nowrap;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 278px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-facts {
    width: min(calc(100vw - 28px), 560px);
    overflow: hidden;
  }

  .hero-facts div {
    padding: 22px 20px;
    text-align: center;
  }

  .hero-facts strong {
    font-size: 18px;
  }

  .service-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border: 1px solid rgba(38, 111, 152, 0.16);
  }

  .service-grid article,
  html[data-lang="en"] .service-grid article {
    min-height: auto;
    border-inline: 0;
    border-block-end: 1px solid rgba(38, 111, 152, 0.13);
    text-align: center;
  }

  .service-grid article:last-child,
  html[data-lang="en"] .service-grid article:last-child {
    border-block-end: 0;
  }

  .service-grid article::before {
    margin-inline: auto;
  }

  .estates-expanded {
    gap: 24px;
  }

  .estates-full {
    gap: 20px;
  }

  .estates-hero,
  .estates-services-band,
  .estates-process,
  .estates-dispute-full {
    padding: 28px 22px;
  }

  .estates-hero-refined,
  .estates-services-refined {
    padding: 28px 22px;
  }

  .estates-refined {
    gap: 16px;
  }

  .estates-feature {
    min-height: auto;
    padding: 26px 22px;
  }

  .estates-intro,
  .estates-hero,
  .estates-lead,
  .estates-feature,
  .estates-services-band,
  .estates-process,
  .estates-process-copy,
  .estates-panel,
  .estates-dispute {
    text-align: center;
  }

  .estates-full .align-start {
    text-align: center;
  }

  .estates-full .align-start h2::after {
    margin-inline: auto;
  }

  .estates-hero-refined .estates-lead {
    gap: 14px;
  }

  .estates-hero-refined .estates-lead p {
    font-size: 16px;
    line-height: 1.82;
  }

  .estates-list {
    grid-template-columns: 1fr;
  }

  .estates-process ol {
    grid-template-columns: 1fr;
  }

  .estates-process li {
    min-height: auto;
    text-align: center;
  }

  .estates-process li::before {
    margin-inline: auto;
  }

  .estates-list li,
  html[data-lang="he"] .estates-list li {
    padding-inline: 0;
    padding-block: 12px;
  }

  .estates-list li::before,
  html[data-lang="he"] .estates-list li::before {
    inset-inline: 50% auto;
    inset-block-start: auto;
    inset-block-end: -3px;
    transform: translateX(-50%);
  }

  html[data-lang="he"] .estates-list li::before {
    transform: translateX(50%);
  }

  .estates-dispute a {
    justify-self: stretch;
    width: 100%;
  }

  .estates-inline-cta {
    justify-self: stretch;
    width: 100%;
  }

  .faq-section .section-heading h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .section-heading.align-start {
    margin-inline: auto;
    text-align: center;
  }

  .intro-section,
  .services-section,
  .projects-section,
  .estates-section,
  .sources-section,
  .faq-section,
  .about-section,
  .contact-section {
    padding-block: 64px;
    scroll-margin-top: 78px;
  }

  .project-feature,
  .project-art,
  .service-grid article,
  .project-list article,
  .about-card,
  .note-card,
  .contact-card,
  .process-list,
  .faq-list article,
  .sources-grid li {
    padding-inline: 20px;
  }

  .project-art {
    min-height: 360px;
    padding-inline: 0;
    border-inline-end: 0;
    border-block-end: 1px solid rgba(38, 111, 152, 0.14);
    background-size: auto 100%, auto 96%, auto;
  }

  .project-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-block: 0 34px;
  }

  .project-feature {
    padding: 28px 20px;
  }

  .project-feature dl {
    grid-template-columns: 1fr;
  }

  .project-feature dl div {
    padding: 18px;
  }

  .project-list p {
    min-height: auto;
  }

  .contact-actions,
  .footer-inner {
    align-items: stretch;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-grid > div:first-child {
    max-width: 340px;
    margin-inline: auto;
    text-align: center;
  }

  .contact-card,
  .email-card,
  .contact-card[href*="google.com"] {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 110px;
    text-align: center;
    border-inline: 0;
  }

  .contact-card[href^="mailto"] strong {
    width: 100%;
    text-align: center;
  }

  .faq-list article {
    text-align: center;
  }

  .email-card {
    grid-column: auto;
  }

  .contact-card[href*="google.com"] {
    grid-column: auto;
  }

  .about-section::after {
    inset-block: 34px auto;
    right: -96px;
    width: 286px;
    min-width: 0;
    height: 410px;
    opacity: .16;
    background-position: center right;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 15%, #000 62%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 15%, #000 62%, transparent 100%);
  }

  .about-section .container {
    padding-right: 0;
  }
}
