:root {
  --bg: #f2f0ea;
  --surface: #fbfaf7;
  --text: #111318;
  --muted: #5b6068;
  --accent: #2450d8;
  --accent-contrast: #ffffff;
  --focus-dark: #93a8ff;
  --dark: #0d1117;
  --dark-muted: #a9afb9;
  --line: rgba(17, 19, 24, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --section-space: clamp(96px, 12vw, 176px);
  --shell: 1240px;
  --header-height: 80px;
  --radius-control: 999px;
  --radius-dialog: 24px;
  --shadow-float: 0 16px 50px rgba(6, 10, 18, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

button:disabled { cursor: not-allowed; opacity: 0.45; }

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-control);
}

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

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

.section { padding-block: var(--section-space); }

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--blue { color: #6f8aff; }

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

h3 { letter-spacing: -0.025em; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 13px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: transform 220ms var(--ease), background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform 220ms var(--ease); }
.button:hover svg { transform: translateX(4px); }
.button--light { background: var(--surface); color: var(--text); }
.button--light:hover { background: #ffffff; }
.button--dark { background: var(--dark); color: #ffffff; }
.button--dark:hover { background: var(--accent); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #ffffff;
  transition: color 250ms ease, background-color 250ms ease, box-shadow 250ms ease, height 250ms var(--ease);
}

.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.58), rgba(5, 8, 12, 0));
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(242, 240, 234, 0.93);
  color: var(--text);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(calc(100% - 48px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand i { font-family: var(--font-display); font-weight: 400; }
.brand__mark { width: 26px; fill: currentColor; }
.brand__mark path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a { position: relative; font-size: 13px; font-weight: 570; text-decoration: none; }
.site-nav > a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-control);
}

.language-switch button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  opacity: 0.66;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.language-switch button:hover { opacity: 1; }
.language-switch button[aria-pressed="true"] { background: #ffffff; color: var(--text); opacity: 1; }
.is-scrolled .language-switch { border-color: var(--line); }
.is-scrolled .language-switch button[aria-pressed="true"] { background: var(--text); color: #ffffff; }

.button--header {
  min-height: 42px;
  padding: 10px 17px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.is-scrolled .button--header { background: var(--text); border-color: var(--text); color: #ffffff; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background: #1b2329;
}

.hero__media, .hero__wash, .hero__grain { position: absolute; inset: 0; }
.hero__art {
  position: absolute;
  inset: -6% -4%;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(104, 145, 255, 0.7), transparent 5%),
    radial-gradient(circle at 78% 43%, rgba(55, 96, 210, 0.38), transparent 20%),
    radial-gradient(circle at 65% 66%, rgba(51, 143, 172, 0.28), transparent 25%),
    linear-gradient(135deg, #111c2a 0%, #1b2d3b 42%, #0a1018 100%);
  transform: translate3d(0, var(--hero-y, 0), 0) scale(1.045);
  will-change: transform;
}
.hero__art::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(132, 167, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 167, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-18deg) translate3d(12%, 4%, 0);
  transform-origin: 70% 40%;
}
.hero__art::after {
  content: "";
  position: absolute;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  top: 5%;
  right: -4%;
  border: 1px solid rgba(194, 211, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(111, 138, 255, 0.09),
    0 0 0 150px rgba(111, 138, 255, 0.055),
    0 0 120px rgba(78, 126, 255, 0.28);
}
.hero__art span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(225, 234, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(139, 174, 255, 0.95);
}
.hero__art span:nth-child(1) { top: 24%; right: 18%; }
.hero__art span:nth-child(2) { top: 46%; right: 34%; width: 7px; height: 7px; }
.hero__art span:nth-child(3) { top: 63%; right: 12%; width: 14px; height: 14px; }
.hero__art span:nth-child(4) { top: 74%; right: 42%; width: 6px; height: 6px; }
.hero__art span:nth-child(5) { top: 31%; right: 51%; width: 5px; height: 5px; }
.hero__wash { background: linear-gradient(90deg, rgba(7, 12, 18, 0.94) 0%, rgba(7, 12, 18, 0.76) 34%, rgba(7, 12, 18, 0.18) 68%, rgba(7, 12, 18, 0.08) 100%), linear-gradient(0deg, rgba(7, 12, 18, 0.45), transparent 48%); }
.hero__grain { opacity: 0.12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; pointer-events: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1440px);
  margin-inline: auto;
  padding: 150px 0 clamp(72px, 9vh, 108px);
}

.hero__eyebrow { margin-bottom: 28px; color: rgba(255, 255, 255, 0.72); }
.hero h1 { max-width: 960px; margin-bottom: 28px; font-size: clamp(64px, 8.4vw, 132px); line-height: 0.82; }
.hero__lede { max-width: 660px; margin-bottom: 36px; color: rgba(255, 255, 255, 0.83); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.48; }
.hero__action { display: flex; align-items: center; gap: 20px; }
.hero__action > span { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll i { position: relative; width: 48px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.32); }
.hero__scroll i::after { content: ""; position: absolute; width: 50%; height: 1px; background: #ffffff; animation: signal 2.4s ease-in-out infinite; }

.js .hero__eyebrow, .js .hero h1, .js .hero__lede, .js .hero__action { opacity: 0; transform: translateY(24px); animation: hero-in 900ms var(--ease) forwards; }
.js .hero h1 { animation-delay: 100ms; }
.js .hero__lede { animation-delay: 220ms; }
.js .hero__action { animation-delay: 340ms; }

@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
@keyframes signal { 0% { transform: translateX(-110%); } 50%, 100% { transform: translateX(210%); } }

.section-intro { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: end; }
.section-intro > p:last-child { max-width: 420px; margin: 0 0 6px; margin-inline-start: auto; color: var(--muted); font-size: 18px; }
.outcome-list { margin-top: clamp(72px, 9vw, 120px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.outcome-list article { min-height: 310px; padding: 27px 0 16px; padding-inline-end: 36px; border-inline-end: 1px solid var(--line); }
.outcome-list article + article { padding-inline-start: 36px; }
.outcome-list article:last-child { border-inline-end: 0; }
.outcome-list article > span { display: block; margin-bottom: 74px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.outcome-list h3 { margin-bottom: 16px; font-family: var(--font-display); font-size: 37px; font-weight: 400; }
.outcome-list p { max-width: 330px; margin-bottom: 0; color: var(--muted); font-size: 15px; }

.section--dark { background: var(--dark); color: #ffffff; }
.section--dark :focus-visible,
.closing :focus-visible,
.site-footer :focus-visible,
.site-header:not(.is-scrolled) :focus-visible { outline-color: var(--focus-dark); }
.workflow__grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(64px, 9vw, 140px); align-items: start; }
.workflow__heading { position: sticky; top: 112px; }
.workflow__heading h2 { max-width: 470px; margin-bottom: 28px; font-size: clamp(44px, 5vw, 68px); }
.workflow__heading > p:last-child { max-width: 430px; color: var(--dark-muted); }
.workflow__explorer { border-top: 1px solid var(--line-dark); }
.workflow__tabs { display: flex; gap: 8px; padding-block: 18px; border-bottom: 1px solid var(--line-dark); }
.workflow__tabs button { min-height: 44px; border: 0; border-radius: var(--radius-control); padding: 10px 16px; background: transparent; color: var(--dark-muted); cursor: pointer; font-size: 12px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; transition: color 200ms ease, background-color 200ms ease; }
.workflow__tabs button:hover { color: #ffffff; }
.workflow__tabs button[aria-selected="true"] { background: var(--accent); color: #ffffff; }
.workflow__panel { min-height: 530px; padding-block: 52px 12px; display: grid; grid-template-columns: 100px 1fr; gap: 24px; }
.workflow__panel[hidden] { display: none; }
.workflow__number { color: #6f8aff; font-family: var(--font-display); font-size: 62px; line-height: 1; }
.workflow__kicker { margin-bottom: 16px; color: var(--dark-muted); font-size: 12px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; }
.workflow__panel h3 { max-width: 590px; margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(42px, 5vw, 66px); font-weight: 400; line-height: 0.98; }
.workflow__panel div > p:not(.workflow__kicker) { max-width: 570px; color: var(--dark-muted); font-size: 17px; }
.workflow__panel ul { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.workflow__panel li { padding-block: 14px; border-bottom: 1px solid var(--line-dark); color: #e5e8ed; font-size: 14px; }
.workflow__panel li::before { content: "↳"; margin-inline-end: 12px; color: #6f8aff; }

.section-intro--row { grid-template-columns: 1.35fr 0.65fr; }
.section-intro--row h2 { max-width: 800px; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(72px, 9vw, 120px); border-top: 1px solid var(--line); }
.service-list article { padding: 27px 0 0; padding-inline-end: 34px; border-inline-end: 1px solid var(--line); }
.service-list article + article { padding-inline-start: 34px; }
.service-list article:last-child { padding-inline-end: 0; border-inline-end: 0; }
.service-list__index { color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; }
.service-list h3 { min-height: 126px; margin: 46px 0 22px; font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 52px); font-weight: 400; line-height: 0.98; }
.service-list p { min-height: 108px; color: var(--muted); font-size: 15px; }
.service-list ul { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-list li { padding-block: 13px; border-bottom: 1px solid var(--line); font-size: 13px; }

.approach { background: #dfe4f3; }
.approach .shell { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(64px, 9vw, 140px); }
.approach__intro { position: sticky; top: 112px; align-self: start; }
.approach__intro h2 { margin-bottom: 28px; }
.approach__intro > p:last-child { max-width: 380px; color: #4f5664; }
.approach__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(17, 19, 24, 0.22); }
.approach__steps li { min-height: 184px; display: grid; grid-template-columns: 90px 1fr; align-content: center; border-bottom: 1px solid rgba(17, 19, 24, 0.22); }
.approach__steps li > span { color: var(--accent); font-size: 12px; font-weight: 700; }
.approach__steps h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 42px; font-weight: 400; }
.approach__steps p { max-width: 510px; margin-bottom: 0; color: #4f5664; }

.perspective__grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(64px, 10vw, 156px); }
.perspective__statement h2 { margin-bottom: 90px; }
.perspective blockquote { margin: 0; padding: 0; }
.perspective blockquote p { max-width: 780px; margin-bottom: 18px; font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); line-height: 1.18; letter-spacing: -0.03em; }
.perspective blockquote footer { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.perspective__principles { padding-top: 46px; border-top: 1px solid var(--line); }
.perspective__principles article { padding-block: 28px; border-bottom: 1px solid var(--line); }
.perspective__principles span { display: block; margin-bottom: 13px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.perspective__principles p { max-width: 470px; margin-bottom: 0; color: var(--muted); font-size: 15px; }

.faq { padding-top: 36px; background: var(--surface); }
.faq__grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(64px, 9vw, 140px); }
.faq__heading h2 { max-width: 430px; font-size: clamp(42px, 5vw, 64px); }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary > span[aria-hidden] { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq summary > span[aria-hidden]::before, .faq summary > span[aria-hidden]::after { content: ""; position: absolute; top: 8px; left: 2px; width: 14px; height: 1px; background: currentColor; transition: transform 240ms var(--ease); }
.faq summary > span[aria-hidden]::after { transform: rotate(90deg); }
.faq details[open] summary > span[aria-hidden]::after { transform: rotate(0); }
.faq details > p { max-width: 680px; margin: -6px 0 28px; margin-inline-end: 50px; color: var(--muted); font-size: 15px; }

.closing { position: relative; overflow: hidden; min-height: 760px; display: flex; align-items: center; background: var(--dark); color: #ffffff; }
.closing__inner { position: relative; z-index: 2; }
.closing h2 { max-width: 1040px; margin-bottom: 32px; font-size: clamp(58px, 8vw, 112px); line-height: 0.88; }
.closing__inner > p:not(.eyebrow) { max-width: 600px; margin-bottom: 38px; color: var(--dark-muted); font-size: 18px; }
.closing__signal { position: absolute; right: -8vw; top: 50%; width: min(46vw, 700px); aspect-ratio: 1; transform: translateY(-50%) rotate(-12deg); opacity: 0.38; }
.closing__signal span { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #6180ff 40%, transparent); }
.closing__signal span:nth-child(1) { top: 30%; }
.closing__signal span:nth-child(2) { top: 50%; width: 74%; }
.closing__signal span:nth-child(3) { top: 70%; width: 46%; }

.site-footer { padding-block: 50px; background: #080b10; color: #ffffff; border-top: 1px solid var(--line-dark); }
.site-footer__inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 24px; }
.site-footer p { margin: 0; color: var(--dark-muted); font-family: var(--font-display); font-size: 18px; text-align: center; }
.site-footer__inner > div { display: flex; flex-direction: column; align-items: flex-end; color: #7d8490; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }

.consultation {
  width: min(calc(100% - 32px), 720px);
  max-height: min(90svh, 840px);
  margin: auto;
  padding: clamp(32px, 6vw, 64px);
  border: 0;
  border-radius: var(--radius-dialog);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-float);
  overflow-y: auto;
}
.consultation::backdrop { background: rgba(7, 10, 15, 0.72); backdrop-filter: blur(8px); }
.consultation__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.consultation__close span { position: absolute; top: 21px; left: 13px; width: 18px; height: 1px; background: currentColor; transform: rotate(45deg); }
.consultation__close span + span { transform: rotate(-45deg); }
.consultation__intro h2 { max-width: 570px; margin-bottom: 20px; font-size: clamp(42px, 7vw, 66px); }
.consultation__intro > p:last-child { max-width: 560px; margin-bottom: 40px; color: var(--muted); }
.consultation__form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.consultation__form label { display: grid; gap: 8px; }
.consultation__form label:nth-child(4) { grid-column: 1 / -1; }
.consultation__form label span { font-size: 12px; font-weight: 650; }
.consultation__form input, .consultation__form textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; padding: 12px 13px; background: #ffffff; color: var(--text); }
.consultation__form textarea { resize: vertical; }
.consultation__form .button { justify-self: start; }
.consultation__form small { align-self: center; color: var(--muted); font-size: 11px; }
.consultation__success { text-align: center; padding-block: 40px; }
.consultation__success > span { width: 62px; height: 62px; margin: 0 auto 26px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #ffffff; font-size: 28px; }
.consultation__success h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 44px; font-weight: 400; }
.consultation__success p { max-width: 500px; margin: 0 auto 28px; color: var(--muted); }

.js.reveal-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1023px) {
  :root { --section-space: 112px; }
  .menu-toggle { position: relative; z-index: 3; width: 44px; height: 44px; display: block; border: 0; background: transparent; color: inherit; }
  .menu-toggle > span:not(.sr-only) { position: absolute; left: 10px; width: 24px; height: 1px; background: currentColor; transition: transform 250ms var(--ease), top 250ms var(--ease); }
  .menu-toggle > span:nth-child(2) { top: 17px; }
  .menu-toggle > span:nth-child(3) { top: 26px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; padding: 116px 24px 32px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; visibility: hidden; opacity: 0; transform: translateY(-16px); overflow-y: auto; overscroll-behavior: contain; background: var(--dark); color: #ffffff; transition: opacity 240ms ease, transform 300ms var(--ease), visibility 0s linear 300ms; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }
  .site-nav > a, .site-nav > a:nth-child(4) { display: block; padding-block: 18px; border-bottom: 1px solid var(--line-dark); font-family: var(--font-display); font-size: 34px; font-weight: 400; }
  .site-nav > a::after { display: none; }
  .site-nav .language-switch { width: fit-content; margin-top: 28px; border-color: var(--line-dark); }
  .site-nav .language-switch button { color: #ffffff; }
  .site-nav .language-switch button[aria-pressed="true"] { background: #ffffff; color: var(--text); }
  .site-nav .button { margin-top: 24px; align-self: flex-start; background: var(--accent); border-color: var(--accent); }
  .menu-open .site-header { color: #ffffff; background: transparent; box-shadow: none; }
  .hero h1 { font-size: clamp(68px, 11vw, 108px); }
  .section-intro { gap: 48px; }
  .workflow__grid, .approach .shell, .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
  .workflow__panel { grid-template-columns: 72px 1fr; }
  .workflow__number { font-size: 48px; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article, .service-list article + article { padding: 32px 0 48px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .service-list h3 { min-height: 0; margin: 34px 0 20px; font-size: 44px; }
  .service-list p { min-height: 0; max-width: 620px; }
  .service-list ul { max-width: 620px; }
  .perspective__grid { gap: 64px; }
}

@media (max-width: 767px) {
  :root { --header-height: 68px; --section-space: 88px; }
  .shell, .site-header__inner, .hero__inner { width: min(calc(100% - 36px), var(--shell)); }
  .site-header__inner { width: calc(100% - 36px); }
  .menu-toggle { position: relative; z-index: 3; width: 44px; height: 44px; display: block; border: 0; background: transparent; color: inherit; }
  .menu-toggle > span:not(.sr-only) { position: absolute; left: 10px; width: 24px; height: 1px; background: currentColor; transition: transform 250ms var(--ease), top 250ms var(--ease); }
  .menu-toggle > span:nth-child(2) { top: 17px; }
  .menu-toggle > span:nth-child(3) { top: 26px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; padding: 116px 24px 32px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; visibility: hidden; opacity: 0; transform: translateY(-16px); background: var(--dark); color: #ffffff; transition: opacity 240ms ease, transform 300ms var(--ease), visibility 0s linear 300ms; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }
  .site-nav > a, .site-nav > a:nth-child(4) { display: block; padding-block: 18px; border-bottom: 1px solid var(--line-dark); font-family: var(--font-display); font-size: 34px; font-weight: 400; }
  .site-nav > a::after { display: none; }
  .site-nav .button { margin-top: 32px; align-self: flex-start; background: var(--accent); border-color: var(--accent); }
  .menu-open .site-header { color: #ffffff; background: transparent; box-shadow: none; }
  .hero { min-height: max(720px, 100svh); }
  .hero__media img { height: 108%; object-position: 61% center; }
  .hero__wash { background: linear-gradient(90deg, rgba(7, 12, 18, 0.91) 0%, rgba(7, 12, 18, 0.48) 100%), linear-gradient(0deg, rgba(7, 12, 18, 0.62), transparent 58%); }
  .hero__inner { padding-top: 130px; padding-bottom: 72px; }
  .hero__eyebrow { max-width: 280px; margin-bottom: 22px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(53px, 15.5vw, 76px); line-height: 0.88; }
  .hero__lede { max-width: 520px; margin-bottom: 28px; font-size: 16px; }
  .hero__action { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero__action .button { width: 100%; gap: 14px; }
  .hero__scroll { display: none; }
  h2 { font-size: clamp(42px, 12vw, 58px); }
  .section-intro, .section-intro--row { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .section-intro > p:last-child { margin-inline-start: 0; }
  .outcome-list, .service-list { grid-template-columns: 1fr; margin-top: 64px; }
  .outcome-list article, .outcome-list article + article { min-height: auto; padding: 24px 0 30px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .outcome-list article > span { margin-bottom: 36px; }
  .outcome-list p { max-width: 520px; }
  .workflow__grid, .approach .shell, .faq__grid, .perspective__grid { grid-template-columns: 1fr; gap: 58px; }
  .workflow__heading, .approach__intro { position: static; }
  .workflow__tabs { overflow-x: auto; scrollbar-width: none; }
  .workflow__panel { min-height: 560px; grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .workflow__number { font-size: 42px; }
  .service-list article, .service-list article + article { padding: 26px 0 56px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .service-list h3 { min-height: auto; margin: 34px 0 20px; font-size: 44px; }
  .service-list p { min-height: auto; }
  .approach__steps li { grid-template-columns: 54px 1fr; min-height: 158px; }
  .perspective__statement h2 { margin-bottom: 64px; }
  .perspective__principles { padding-top: 0; }
  .faq { padding-top: 88px; }
  .closing { min-height: 720px; }
  .closing h2 { font-size: clamp(54px, 15vw, 78px); }
  .closing__signal { width: 84vw; opacity: 0.22; }
  .site-footer__inner { grid-template-columns: 1fr; align-items: start; gap: 32px; }
  .site-footer p { text-align: start; }
  .site-footer__inner > div { align-items: flex-start; }
  .consultation { max-height: calc(100svh - 16px); width: calc(100% - 16px); padding: 58px 22px 28px; border-radius: 18px; }
  .consultation__form { grid-template-columns: 1fr; }
  .consultation__form label:nth-child(4) { grid-column: auto; }
  .consultation__form .button { width: 100%; }
}

@media (max-width: 379px) {
  .hero h1 { font-size: 49px; }
  .button { padding-inline: 17px; }
  .workflow__panel h3 { font-size: 39px; }
}

html[dir="rtl"] {
  --font-display: "Geeza Pro", "Noto Naskh Arabic", "Traditional Arabic", Tahoma, serif;
  --font-sans: "SF Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] body { line-height: 1.7; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { letter-spacing: 0; }
html[dir="rtl"] h1 { line-height: 1.03; }
html[dir="rtl"] h2 { line-height: 1.08; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .workflow__kicker,
html[dir="rtl"] .workflow__tabs button,
html[dir="rtl"] .service-list__index,
html[dir="rtl"] .perspective blockquote footer,
html[dir="rtl"] .perspective__principles span,
html[dir="rtl"] .site-footer__inner > div { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .brand { direction: ltr; }
html[dir="rtl"] .skip-link { right: 12px; left: auto; }
html[dir="rtl"] .hero__media { transform: scaleX(-1); }
html[dir="rtl"] .hero__wash { background: linear-gradient(270deg, rgba(7, 12, 18, 0.94) 0%, rgba(7, 12, 18, 0.76) 34%, rgba(7, 12, 18, 0.18) 68%, rgba(7, 12, 18, 0.08) 100%), linear-gradient(0deg, rgba(7, 12, 18, 0.45), transparent 48%); }
html[dir="rtl"] .hero__eyebrow,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero__lede { margin-inline-start: 0; margin-inline-end: auto; }
html[dir="rtl"] .hero__scroll { right: auto; left: max(24px, calc((100vw - 1440px) / 2)); }
html[dir="rtl"] .button svg { transform: scaleX(-1); }
html[dir="rtl"] .button:hover svg { transform: translateX(-4px) scaleX(-1); }
html[dir="rtl"] .workflow__panel li::before { display: inline-block; transform: scaleX(-1); }
html[dir="rtl"] .closing__signal { right: auto; left: -8vw; }
html[dir="rtl"] .consultation__close { right: auto; left: 20px; }
html[dir="rtl"] .service-list__index { unicode-bidi: isolate; }

@media (max-width: 767px) {
  html[dir="rtl"] .hero__wash { background: linear-gradient(270deg, rgba(7, 12, 18, 0.91) 0%, rgba(7, 12, 18, 0.48) 100%), linear-gradient(0deg, rgba(7, 12, 18, 0.62), transparent 58%); }
  html[dir="rtl"] .site-footer__inner > div { align-items: flex-start; }
}

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