:root {
  color-scheme: light;
  --ink: #17201d;
  --ink-soft: #34413d;
  --green-950: #0e2924;
  --green-900: #153c34;
  --green-800: #1a4b40;
  --green-700: #226454;
  --gold: #b48945;
  --gold-light: #d8bd89;
  --coral: #b8563e;
  --paper: #f5f4ef;
  --white: #ffffff;
  --line: #d9ddd8;
  --muted: #67716d;
  --shell: 1240px;
  --header-height: 76px;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(14, 41, 36, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.14;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--gold-light);
  color: var(--green-950);
}

:focus-visible {
  outline: 3px solid #db9b32;
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
}

.eyebrow.light {
  color: #e7ece9;
}

.eyebrow.light::before {
  background: var(--gold-light);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 32, 29, 0.09);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(14, 41, 36, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 228px;
  gap: 11px;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.brand-copy {
  display: grid;
  line-height: 1.22;
}

.brand-copy strong {
  color: var(--green-950);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
}

.brand-copy span {
  color: #7b5a28;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 3px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 228px;
}

.language-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.language-button {
  width: auto;
  grid-auto-flow: column;
  gap: 7px;
  padding-inline: 11px;
  color: var(--green-900);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.language-button svg,
.menu-button svg {
  width: 18px;
  height: 18px;
}

.header-contact {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 15px;
  border-radius: 6px;
  background: var(--green-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.header-contact svg {
  width: 15px;
  height: 15px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

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

.hero-media {
  background-image: url("/assets/hero-investment.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 25, 22, 0.94) 0%, rgba(8, 25, 22, 0.76) 37%, rgba(8, 25, 22, 0.22) 72%, rgba(8, 25, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 25, 22, 0.52), transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 76px 52px;
}

.hero-copy {
  width: min(760px, 68%);
  margin-right: auto;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 72px;
  font-weight: 750;
}

[dir="rtl"] .hero h1 {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 64px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  height: 17px;
}

.button.primary {
  background: var(--gold);
  color: #171b19;
}

.button.primary:hover {
  background: #c99c52;
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button.glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-proof {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof span {
  flex: 1 1 0;
  padding: 17px 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hero-proof span:last-child {
  border-inline-end: 0;
}

.intro-band,
.focus-section,
.approach-section {
  padding-block: 112px;
}

.intro-band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 100px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.approach-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: 44px;
  color: var(--green-950);
}

.intro-copy {
  padding-block-start: 38px;
}

.intro-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-block: 1px solid var(--line);
}

.principle-row div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 32px;
  border-inline-end: 1px solid var(--line);
}

.principle-row div:last-child {
  border-inline-end: 0;
}

.principle-row strong {
  color: var(--green-900);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 24px;
}

.principle-row span {
  color: var(--muted);
  font-size: 13px;
}

.focus-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 16px;
}

.focus-list {
  border-top: 1px solid var(--line);
}

.focus-item {
  display: grid;
  grid-template-columns: 56px 56px minmax(0, 1fr) 48px;
  gap: 28px;
  align-items: center;
  min-height: 182px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.focus-index {
  align-self: start;
  padding-top: 5px;
  color: var(--coral);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.focus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ecf1ed;
  color: var(--green-700);
}

.focus-icon svg {
  width: 25px;
  height: 25px;
}

.focus-body {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(220px, 0.72fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: start;
}

.focus-code {
  margin: 4px 0 0;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.focus-body h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 22px;
}

.focus-body > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.icon-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-900);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.icon-link:hover {
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--white);
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

.portfolio-section {
  padding-block: 108px 116px;
  background: var(--green-950);
  color: var(--white);
}

.light-heading h2,
.contact-copy h2 {
  color: var(--white);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--green-950);
}

.portfolio-search {
  min-width: 280px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
}

.portfolio-search svg {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.58);
}

.portfolio-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
}

.portfolio-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.portfolio-search:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 2px rgba(216, 189, 137, 0.2);
}

.portfolio-count {
  min-height: 22px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #173a33;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.portfolio-card:hover {
  border-color: rgba(216, 189, 137, 0.72);
  background: #1b463c;
  transform: translateY(-3px);
}

.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.portfolio-category {
  color: var(--gold-light);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.portfolio-card-top svg {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.35);
}

.portfolio-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 19px;
}

.portfolio-tag {
  margin-bottom: 16px;
  color: #d7dfdc;
  font-size: 12px;
  font-weight: 700;
}

.portfolio-description {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.72;
}

.portfolio-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
}

.button.outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.portfolio-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.portfolio-empty[hidden] {
  display: none;
}

.portfolio-empty svg {
  width: 30px;
  height: 30px;
}

.portfolio-empty p {
  margin: 0;
}

.approach-section {
  background: #eef1ec;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.approach-heading {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 36px);
}

.approach-heading h2 {
  margin-bottom: 22px;
}

.approach-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  border-top: 1px solid #ccd4ce;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 26px;
  padding-block: 34px;
  border-bottom: 1px solid #ccd4ce;
}

.approach-steps > li > span {
  color: var(--coral);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.approach-steps h3 {
  margin-bottom: 9px;
  color: var(--green-950);
  font-size: 21px;
}

.approach-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding-block: 108px;
  background: var(--coral);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1fr);
  gap: 110px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 38px;
}

.contact-details a,
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.contact-details svg {
  width: 19px;
  height: 19px;
  color: #f4d8b0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(70, 27, 17, 0.18);
}

.field-grid.two-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd5d1;
  border-radius: 5px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 14px;
}

.field input,
.field select {
  height: 48px;
  padding-inline: 13px;
}

.field textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(34, 100, 84, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b33a2e;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 3px 0 0;
  accent-color: var(--green-700);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
  background: var(--green-900);
  color: var(--white);
}

.submit-button:hover {
  background: var(--green-700);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  font-size: 12px;
  text-align: center;
}

.form-status.is-success {
  color: #176444;
}

.form-status.is-error {
  color: #a42f26;
}

.honeypot {
  position: absolute;
  inset-inline-start: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: #0b211d;
  color: var(--white);
}

.footer-top {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
}

.footer-brand span {
  display: grid;
  line-height: 1.35;
}

.footer-brand strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
}

.footer-brand small {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.linkedin-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
}

.linkedin-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  inset-inline-end: 20px;
  inset-block-end: 20px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.noscript-notice {
  position: fixed;
  inset-inline: 12px;
  inset-block-end: 12px;
  z-index: 200;
  padding: 12px;
  border-radius: 6px;
  background: #fff3cc;
  color: #442d00;
  text-align: center;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--green-950);
}

.error-panel {
  width: min(100%, 520px);
  padding: 48px 32px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.error-panel img {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.error-code {
  margin-bottom: 6px;
  color: var(--coral);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.error-panel h1 {
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 34px;
}

.error-panel > p:not(.error-code) {
  margin-bottom: 24px;
  color: var(--muted);
}

[dir="ltr"] [data-direction-icon] {
  transform: scaleX(-1);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 17px;
  }

  .header-contact {
    display: none;
  }

  .header-actions {
    min-width: auto;
  }

  .intro-grid,
  .contact-grid {
    gap: 64px;
  }

  .focus-body {
    grid-template-columns: 90px minmax(200px, 0.8fr) minmax(250px, 1fr);
    gap: 22px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 99;
    width: 100%;
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--white);
    overflow-y: auto;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
    font-size: 18px;
    font-weight: 800;
  }

  .hero {
    min-height: min(690px, calc(100svh - 102px));
  }

  .hero-copy {
    width: min(680px, 88%);
  }

  .hero h1,
  [dir="rtl"] .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .intro-band,
  .focus-section,
  .approach-section,
  .portfolio-section,
  .contact-section {
    padding-block: 84px;
  }

  .intro-grid,
  .split-heading,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    padding-block-start: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .focus-item {
    grid-template-columns: 42px 48px minmax(0, 1fr) 44px;
    gap: 18px;
  }

  .focus-icon {
    width: 48px;
    height: 48px;
  }

  .focus-body {
    grid-template-columns: 70px minmax(180px, 0.8fr) minmax(220px, 1fr);
    gap: 18px;
  }

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

  .approach-heading {
    position: static;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand,
  .footer-brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .language-button svg {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 176px);
  }

  .hero-media {
    background-position: 64% center;
  }

  [dir="rtl"] .hero-media {
    background-position: 70% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(8, 25, 22, 0.94) 0%, rgba(8, 25, 22, 0.76) 58%, rgba(8, 25, 22, 0.34) 100%);
  }

  .hero-inner {
    justify-content: flex-end;
    padding-block: 72px 104px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1,
  [dir="rtl"] .hero h1 {
    margin-bottom: 17px;
    font-size: 42px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    overflow: hidden;
  }

  .hero-proof span {
    min-width: 0;
    padding: 13px 7px;
    font-size: 9px;
    line-height: 1.35;
  }

  .intro-band,
  .focus-section,
  .approach-section,
  .portfolio-section,
  .contact-section {
    padding-block: 64px;
  }

  .intro-grid h2,
  .section-heading h2,
  .approach-heading h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .intro-copy p,
  .split-heading > p,
  .approach-heading > p:last-child,
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .principle-row {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .principle-row div {
    min-height: 86px;
    padding: 17px 8px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-row div:last-child {
    border-bottom: 0;
  }

  .focus-item {
    grid-template-columns: 32px 46px 1fr;
    gap: 13px;
    padding-block: 28px;
  }

  .focus-index {
    grid-row: 1;
  }

  .focus-icon {
    width: 46px;
    height: 46px;
  }

  .focus-body {
    grid-column: 2 / -1;
    display: block;
  }

  .focus-code {
    margin-bottom: 8px;
  }

  .focus-body h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .icon-link {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
  }

  .portfolio-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-group {
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .portfolio-search {
    min-width: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 230px;
  }

  .approach-steps li {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 20px;
  }

  .field-grid.two-fields {
    grid-template-columns: 1fr;
  }

  .footer-top {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 44px;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }
}

@media (max-width: 420px) {
  .brand-copy {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-button,
  .menu-button {
    height: 39px;
  }

  .hero h1,
  [dir="rtl"] .hero h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
