:root {
    --ink: #10152b;
    --ink-soft: #4e5364;
    --paper: #f4f0e8;
    --paper-deep: #e9e3d8;
    --surface: #fcfaf5;
    --line: rgba(16, 21, 43, .15);
    --indigo: #243fbf;
    --indigo-bright: #5269ea;
    --coral: #f16d5b;
    --coral-text: #b94034;
    --dark: #10162f;
    --white: #fffdf8;
    --radius: 1.35rem;
    --shell: min(1180px, calc(100% - 2.5rem));
    --shadow: 0 28px 80px rgba(12, 20, 51, .12);
}

[data-theme="dark"] {
    --ink: #f4f0e8;
    --ink-soft: #acaebe;
    --paper: #0d1226;
    --paper-deep: #151b32;
    --surface: #171d35;
    --line: rgba(244, 240, 232, .14);
    --coral-text: #ff8b7a;
    --shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
    font-family: Tahoma, "Noto Sans Arabic", Arial, sans-serif;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.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: 1rem;
    inset-inline-start: 1rem;
    z-index: 1000;
    padding: .7rem 1rem;
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(16px);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(12, 20, 51, .05); }
.nav-shell {
    width: var(--shell);
    min-height: 78px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; width: max-content; }
.brand-mark {
    width: 2.5rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: .7rem;
    background: var(--ink);
    color: var(--paper);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: -.04em;
}
.brand-text { font-size: .86rem; font-weight: 740; line-height: 1.1; letter-spacing: -.025em; }
.brand-text span { display: block; font-weight: 500; color: var(--ink-soft); }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 1.55rem; }
.site-nav a { position: relative; color: var(--ink-soft); font-size: .82rem; font-weight: 650; }
.site-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: -.65rem;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .45rem; }
.theme-toggle, .language-switch {
    min-width: 2.45rem;
    height: 2.45rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}
.theme-toggle:hover, .language-switch:hover { background: var(--surface); }
.theme-toggle svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.language-switch { padding-inline: .8rem; font-size: .75rem; font-weight: 750; }
.menu-toggle { display: none; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 1.5rem;
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
.eyebrow > span { width: 1.7rem; height: 1px; background: var(--coral); }
.hero {
    min-height: calc(100svh - 78px);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    padding-block: 4.5rem 5.5rem;
}
.hero h1 {
    max-width: 9ch;
    margin: 0;
    font-size: clamp(4rem, 7.2vw, 7.1rem);
    font-weight: 780;
    letter-spacing: -.075em;
    line-height: .88;
}
html[dir="rtl"] .hero h1 { direction: ltr; text-align: right; }
.hero h1 span { display: block; color: var(--indigo); }
[data-theme="dark"] .hero h1 span { color: #8294ff; }
.hero-roles {
    max-width: 38rem;
    margin: 2rem 0 0;
    color: var(--ink);
    font-size: clamp(.84rem, 1.4vw, 1rem);
    font-weight: 720;
    line-height: 1.7;
}
.hero-roles i { color: var(--coral-text); font-style: normal; padding-inline: .25rem; }
.hero-intro { max-width: 37rem; margin: 1.4rem 0 0; color: var(--ink-soft); font-size: 1.02rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button {
    min-height: 3.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: .7rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 720;
    transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--indigo); background: var(--indigo); color: #fff; }
.button-ghost { background: var(--surface); }
.button-light { border-color: var(--white); background: var(--white); color: #111a3f; }
.hero-visual {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border-radius: 18rem 18rem var(--radius) var(--radius);
    background: var(--dark);
    box-shadow: var(--shadow);
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5, 10, 30, .6));
    pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 58% center; }
.hero-visual figcaption {
    position: absolute;
    z-index: 1;
    inset-inline: 2rem;
    inset-block-end: 1.7rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #fff;
}
.hero-visual figcaption span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; opacity: .72; }
.hero-visual figcaption strong { font-size: 1.25rem; letter-spacing: -.04em; }
.identity-strip { border-block: 1px solid var(--line); }
.identity-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.identity-grid p {
    margin: 0;
    padding: 1.25rem 1.4rem;
    border-inline-end: 1px solid var(--line);
    font-size: .76rem;
    font-weight: 700;
}
.identity-grid p:first-child { border-inline-start: 1px solid var(--line); }
.identity-grid span { margin-inline-end: .75rem; color: var(--coral-text); font-size: .65rem; }

.section { padding-block: clamp(5rem, 9vw, 9rem); }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading h2, .page-hero h1 {
    margin: 0;
    font-size: clamp(2.55rem, 5vw, 5.25rem);
    font-weight: 760;
    letter-spacing: -.06em;
    line-height: .98;
}
html[dir="rtl"] .section-heading h2, html[dir="rtl"] .page-hero h1 { letter-spacing: -.035em; }
.split-heading { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 4rem; }
.split-heading > p { max-width: 34rem; margin: 0; color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: .8rem; border-bottom: 1px solid var(--ink); padding-bottom: .25rem; font-size: .82rem; font-weight: 750; }
html[dir="rtl"] .text-link span, html[dir="rtl"] .next-link-block i { transform: rotate(180deg); }
.journey-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    margin: 0 0 3rem;
    padding: 0;
    list-style: none;
}
.journey-rail::before { content: ""; position: absolute; inset-inline: 0; inset-block-start: .38rem; height: 1px; background: var(--line); }
.journey-rail li { position: relative; padding: 2rem .8rem 0 0; }
.rail-dot { position: absolute; inset-block-start: 0; inset-inline-start: 0; width: .8rem; height: .8rem; border: 2px solid var(--paper); border-radius: 50%; background: #8b8e9a; box-shadow: 0 0 0 1px var(--line); }
.rail-featured .rail-dot { background: var(--coral); }
.journey-rail small { display: block; margin-bottom: .45rem; color: var(--ink-soft); font-size: .65rem; }
.journey-rail strong { display: block; max-width: 9rem; font-size: .78rem; line-height: 1.35; }
.section-dark { --coral-text: #ff8b7a; background: var(--dark); color: var(--white); }
.section-dark .eyebrow, .section-dark .split-heading > p { color: #aeb3c6; }
.section-dark .text-link { border-color: rgba(255, 255, 255, .55); }
.featured-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 1rem; }
.featured-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: #171e3a; }
.project-art { position: absolute; inset: 0; overflow: hidden; }
.project-art::before { content: ""; position: absolute; width: 17rem; height: 17rem; inset-inline-end: -3rem; inset-block-start: 2rem; border-radius: 50%; background: #304ee0; box-shadow: 0 0 70px rgba(48,78,224,.3); }
.project-art span { position: absolute; width: 50%; height: 45%; inset-inline-start: 10%; inset-block-start: 20%; border: 1px solid rgba(255,255,255,.35); border-radius: 3rem; transform: rotate(-12deg); }
.project-art i { position: absolute; width: 80%; height: 1px; inset-inline: 10%; inset-block-start: 55%; background: var(--coral); }
.project-art b { position: absolute; width: 6rem; height: 6rem; inset-inline-start: 16%; inset-block-start: 42%; border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.visual-2 .project-art::before { width: 13rem; height: 23rem; border-radius: 7rem; background: #df604f; transform: rotate(18deg); }
.visual-2 .project-art i { background: #6377f0; transform: rotate(25deg); }
.visual-3 .project-art::before { background: #ece5d6; }
.visual-3 .project-art span { border-radius: 50%; border-width: 22px; border-color: rgba(80,102,230,.6); }
.featured-card-copy { position: absolute; z-index: 2; inset-inline: 1.5rem; inset-block-end: 1.5rem; padding-top: 4rem; background: linear-gradient(180deg, transparent, rgba(9,15,38,.92) 55%); }
.featured-card-copy p { margin: 0 0 .3rem; color: #aeb3c6; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.featured-card-copy h3 { margin: 0; font-size: 1.45rem; line-height: 1.15; letter-spacing: -.035em; }
.featured-card-copy span { display: block; margin-top: .6rem; color: #c8cbda; font-size: .72rem; }
.companies-preview h2 span { color: var(--coral-text); }
.update-teaser { border-top: 1px solid var(--line); }
.update-row { display: grid; grid-template-columns: .4fr 1fr auto; gap: 1rem; align-items: center; padding-block: 1.5rem; border-block: 1px solid var(--line); }
.update-row > span { color: var(--ink-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.update-row strong { font-size: clamp(1.2rem, 2.5vw, 2rem); letter-spacing: -.035em; }
.update-row i { font-style: normal; font-size: 1.5rem; }

.page-hero {
    min-height: 70svh;
    display: grid;
    grid-template-columns: 1.15fr .7fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 9rem);
    padding-block: clamp(7rem, 12vw, 11rem) clamp(4rem, 7vw, 7rem);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 12ch; }
.page-lead { margin: 0; color: var(--ink-soft); font-size: clamp(1.03rem, 1.4vw, 1.2rem); }
.profile-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.profile-card { position: sticky; inset-block-start: 7rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.portrait-mark { min-height: 340px; display: grid; place-items: center; border-radius: calc(var(--radius) - .4rem); background: linear-gradient(145deg, #111a3f, #243fbf); color: #fff; }
.portrait-mark::before { content: ""; width: 12rem; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.portrait-mark span { position: absolute; font-size: 4rem; font-weight: 780; letter-spacing: -.08em; }
.profile-card h2 { margin: 1.5rem 1rem .2rem; font-size: 1.4rem; line-height: 1.1; letter-spacing: -.04em; }
.profile-card > p { margin: 0 1rem 1.5rem; color: var(--ink-soft); }
.profile-card dl { margin: 0; border-top: 1px solid var(--line); }
.profile-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .75rem; }
.profile-card dt { color: var(--ink-soft); }
.profile-card dd { margin: 0; font-weight: 700; text-align: end; }
.chapter-number { margin: 0 0 2rem !important; color: var(--coral-text) !important; font-size: .68rem !important; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.prose h2 { margin: 0 0 2rem; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.prose p { margin: 0 0 1.5rem; color: var(--ink-soft); font-size: 1.07rem; }
.prose strong { color: var(--ink); }
.soft-section { background: var(--paper-deep); }
.narrow-heading { max-width: 47rem; }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.practice-grid article { padding: 2rem; border-inline-end: 1px solid var(--line); }
.practice-grid article:first-child { border-inline-start: 1px solid var(--line); }
.practice-grid span { color: var(--coral-text); font-size: .68rem; }
.practice-grid h3 { margin: 3rem 0 .7rem; font-size: 1.3rem; }
.practice-grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.next-link-block > p { margin: 0; color: var(--ink-soft); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.next-link-block a { display: flex; justify-content: space-between; gap: 2rem; align-items: center; margin-top: 1rem; padding-block: 2rem; border-block: 1px solid var(--line); font-size: clamp(1.5rem, 4vw, 3.5rem); font-weight: 720; letter-spacing: -.05em; line-height: 1; }
.next-link-block i { font-style: normal; color: var(--coral-text); }

.full-timeline ol { margin: 0; padding: 0; list-style: none; }
.full-timeline li { display: grid; grid-template-columns: .36fr 1fr; border-top: 1px solid var(--line); }
.full-timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline-index { position: relative; padding: 3rem 2rem 3rem 0; border-inline-end: 1px solid var(--line); }
.timeline-index::after { content: ""; position: absolute; width: .75rem; height: .75rem; inset-inline-end: -.43rem; inset-block-start: 3.4rem; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px var(--paper); }
.timeline-index span { color: var(--ink-soft); font-size: .75rem; }
.full-timeline article { padding: 3rem 0 3rem clamp(2rem, 7vw, 7rem); }
html[dir="rtl"] .full-timeline article { padding: 3rem clamp(2rem, 7vw, 7rem) 3rem 0; }
.full-timeline article > p:first-child { margin: 0 0 .5rem; color: var(--coral-text); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.full-timeline h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.055em; line-height: 1; }
.full-timeline article > p:last-of-type { max-width: 47rem; margin: 0; color: var(--ink-soft); }
.inline-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }
.inline-tags span, .tech-list li { padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; }
.chapter-close .section-shell { max-width: 900px; margin-inline: auto; text-align: center; }
.chapter-close .eyebrow { justify-content: center; }
.chapter-close h2 { margin: 0; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.065em; }
.chapter-close > div > p:not(.eyebrow) { max-width: 45rem; margin: 2rem auto; color: #b8bbca; }

.project-list { display: grid; gap: 1.25rem; }
.project-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.project-cover { position: relative; min-height: 330px; overflow: hidden; border-radius: calc(var(--radius) - .4rem); background: #111a3f; }
.project-cover > span { position: absolute; z-index: 2; inset-block-start: 1.2rem; inset-inline-start: 1.2rem; color: rgba(255,255,255,.65); font-size: .7rem; }
.project-cover::before { content: ""; position: absolute; width: 15rem; aspect-ratio: 1; inset-inline-end: -4rem; inset-block-start: 2rem; border-radius: 50%; background: #304ee0; }
.project-cover i { position: absolute; width: 70%; height: 55%; inset-inline-start: 12%; inset-block-start: 23%; border: 1px solid rgba(255,255,255,.28); border-radius: 35%; transform: rotate(-17deg); }
.project-cover b { position: absolute; width: 5.5rem; height: 5.5rem; inset-inline-start: 18%; inset-block-end: 12%; border-radius: 50%; background: var(--coral); }
.cover-2 { background: #e8dfce; }
.cover-2::before { background: #111a3f; border-radius: 1rem; transform: rotate(24deg); }
.cover-2 i { border-color: rgba(17,26,63,.35); border-radius: 1rem; transform: none; }
.cover-3::before { width: 22rem; border-radius: 7rem; background: var(--coral); transform: rotate(-25deg); }
.cover-3 b { background: #f4f0e8; }
.cover-4 { background: #253fb8; }
.cover-4::before { background: #f4f0e8; }
.cover-4 i { border-radius: 0; transform: rotate(45deg); }
.project-copy { display: flex; flex-direction: column; justify-content: center; padding: 2rem 3rem 2rem 0; }
html[dir="rtl"] .project-copy { padding: 2rem 0 2rem 3rem; }
.project-kicker { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; color: var(--ink-soft); font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; }
.project-kicker span + span { color: var(--coral-text); }
.project-copy h2 { margin: 1rem 0 .7rem; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.055em; }
.project-copy > p { max-width: 45rem; margin: 0; color: var(--ink-soft); }
.tech-list { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.project-link-status { margin-top: 1.4rem !important; font-size: .7rem; font-style: italic; }
.client-work { --coral-text: #ff8b7a; background: var(--dark); color: var(--white); }
.client-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(4rem, 10vw, 10rem); align-items: start; }
.client-grid .eyebrow { color: #aeb3c6; }
.client-grid h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.06em; line-height: .98; }
.client-grid > div > p:last-child { color: #b8bbca; }
.capability-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.capability-list li { display: grid; grid-template-columns: 3rem 1fr; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .9rem; }
.capability-list span { color: var(--coral-text); font-size: .67rem; }

.company-story { display: grid; gap: 4rem; }
.company-story article { display: grid; grid-template-columns: .5fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.company-monogram { min-height: 360px; display: grid; place-items: center; border-radius: var(--radius); color: #fff; font-size: clamp(4rem, 8vw, 7rem); font-weight: 780; letter-spacing: -.09em; }
.fc-mark { background: linear-gradient(145deg, #0f1838, #2544d0); }
.lq-mark { background: linear-gradient(145deg, #ec6c59, #243fbf); }
.company-copy h2 { margin: 0 0 1rem; font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.07em; line-height: .95; }
.company-copy > p:last-child { margin: 0; color: var(--ink-soft); }
.transition-marker { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; color: var(--ink-soft); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.transition-marker span { height: 1px; background: var(--line); }
.legal-clarity { background: var(--paper-deep); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.legal-grid h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.legal-note { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.legal-note > p { margin-top: 0; color: var(--ink-soft); }
.legal-note dl { margin: 2rem 0; border-top: 1px solid var(--line); }
.legal-note dl div { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.legal-note dt { color: var(--ink-soft); font-size: .68rem; }
.legal-note dd { margin: .2rem 0 0; font-weight: 720; }
.legal-note small { display: block; color: var(--ink-soft); }

.updates-list { display: grid; gap: 1rem; }
.updates-list article { display: grid; grid-template-columns: .3fr 1fr 1fr; column-gap: 3rem; padding: 2.2rem 0; border-block-start: 1px solid var(--line); }
.updates-list article:last-child { border-bottom: 1px solid var(--line); }
.updates-list article > p:first-child { margin: .3rem 0 0; color: var(--coral-text); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.updates-list h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.updates-list article > p:nth-of-type(2) { margin: 0; color: var(--ink-soft); }
.updates-list .text-link { grid-column: 3; margin-top: 1.5rem; width: max-content; }
.editorial-note { display: flex; align-items: center; gap: 2rem; border-top: 1px solid var(--line); }
.editorial-note > span { width: 4rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral-text); font-size: 2rem; }
.editorial-note p { max-width: 35rem; color: var(--ink-soft); }
.article-page { padding-block: clamp(6rem, 11vw, 11rem); }
.article-header { max-width: 900px; margin-inline: auto; padding-bottom: 4rem; border-bottom: 1px solid var(--line); }
.back-link { display: inline-flex; gap: .6rem; margin-bottom: 5rem; color: var(--ink-soft); font-size: .75rem; }
html[dir="rtl"] .back-link span { transform: rotate(180deg); }
.article-header h1 { margin: 0; font-size: clamp(3.5rem, 8vw, 7.7rem); letter-spacing: -.075em; line-height: .9; }
.article-header > p:last-child { max-width: 45rem; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1.15rem; }
.article-body { max-width: 720px; margin: 5rem auto 0; }
.article-body h2 { margin: 4rem 0 1.5rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.article-body blockquote { margin: 3rem 0; padding: 1.5rem 2rem; border-inline-start: 3px solid var(--coral); background: var(--surface); color: var(--ink); font-size: 1.35rem; font-weight: 680; }
.article-footer { max-width: 720px; display: flex; align-items: center; gap: 1rem; margin: 5rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-footer > span { width: 3rem; aspect-ratio: 1; display: grid; place-items: center; border-radius: .7rem; background: var(--ink); color: var(--paper); font-size: .7rem; font-weight: 750; }
.article-footer p { margin: 0; color: var(--ink-soft); font-size: .75rem; }
.article-footer strong { color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-card { min-height: 300px; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-number { color: var(--coral-text); font-size: .68rem; }
.contact-card h2 { margin: 7rem 0 .8rem; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -.05em; }
.contact-card p { margin: 0; color: var(--ink-soft); }
.contact-status { grid-column: 1 / -1; min-height: auto; display: flex; align-items: center; gap: 1.5rem; }
.contact-status h2 { margin: 0 0 .5rem; font-size: 1.5rem; }
.status-dot { flex: 0 0 auto; width: 1rem; height: 1rem; border-radius: 50%; background: #e2a227; box-shadow: 0 0 0 8px color-mix(in srgb, #e2a227 18%, transparent); }
.verification-note { display: grid; grid-template-columns: .5fr 1fr; gap: 3rem; border-top: 1px solid var(--line); }
.verification-note > p:last-child { max-width: 45rem; margin: 0; color: var(--ink-soft); font-size: 1.1rem; }

.not-found { min-height: 70svh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 6rem; }
.not-found h1 { max-width: 11ch; margin: 0; font-size: clamp(3.5rem, 8vw, 8rem); line-height: .9; letter-spacing: -.07em; }
.not-found > p:not(.eyebrow) { color: var(--ink-soft); }
.not-found .button { margin-top: 1rem; }

.site-footer { border-top: 1px solid var(--line); }
.footer-shell { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: 1fr .8fr; gap: 5rem; padding-block: 4rem 2rem; }
.footer-lead > p { max-width: 28rem; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: .85rem; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 2rem; align-content: start; }
.footer-nav a { color: var(--ink-soft); font-size: .78rem; }
.footer-nav a:hover { color: var(--ink); }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .68rem; }
.footer-meta p { margin: 0; }

@media (max-width: 1020px) {
    :root { --shell: min(100% - 2rem, 900px); }
    .nav-shell { grid-template-columns: 1fr auto auto; }
    .menu-toggle {
        grid-column: 3;
        display: grid;
        width: 2.5rem;
        height: 2.5rem;
        place-content: center;
        gap: .35rem;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: transparent;
    }
    .menu-toggle span:not(.sr-only) { width: 1rem; height: 1px; background: currentColor; }
    .site-nav {
        position: fixed;
        inset: 79px 1rem auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .75rem;
        border: 1px solid var(--line);
        border-radius: 1rem;
        background: var(--surface);
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: .75rem; }
    .site-nav a::after { display: none; }
    .nav-actions { grid-row: 1; grid-column: 2; }
    .hero { grid-template-columns: 1fr; padding-top: 5rem; }
    .hero-copy { max-width: 730px; }
    .hero h1 { max-width: 10ch; }
    .hero-visual { min-height: 570px; border-radius: 13rem 13rem var(--radius) var(--radius); }
    .hero-visual img { min-height: 570px; }
    .split-heading, .page-hero { grid-template-columns: 1fr; gap: 2rem; }
    .journey-rail { grid-template-columns: repeat(4, 1fr); row-gap: 2rem; }
    .journey-rail::before { display: none; }
    .journey-rail li { min-height: 7rem; border-top: 1px solid var(--line); }
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .featured-card:first-child { grid-column: 1 / -1; }
    .profile-grid { gap: 3rem; }
    .project-card { grid-template-columns: .9fr 1.1fr; }
    .project-copy { padding: 1.5rem 1rem 1.5rem 0; }
    html[dir="rtl"] .project-copy { padding: 1.5rem 0 1.5rem 1rem; }
    .updates-list article { grid-template-columns: .3fr 1fr; }
    .updates-list article > p:nth-of-type(2), .updates-list .text-link { grid-column: 2; }
}

@media (max-width: 720px) {
    :root { --shell: calc(100% - 1.5rem); --radius: 1.05rem; }
    .nav-shell { min-height: 68px; gap: .5rem; }
    .site-nav { inset-block-start: 69px; }
    .brand-text { font-size: .68rem; }
    .theme-toggle { display: none; }
    .language-switch { height: 2.35rem; }
    .hero { min-height: auto; padding-block: 4.5rem 3.5rem; }
    .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
    .hero-roles { max-width: 24rem; }
    .hero-visual, .hero-visual img { min-height: 470px; }
    .hero-visual { border-radius: 9rem 9rem var(--radius) var(--radius); }
    .identity-grid { grid-template-columns: repeat(2, 1fr); }
    .identity-grid p { border-bottom: 1px solid var(--line); }
    .section { padding-block: 5rem; }
    .section-heading h2, .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
    .journey-rail { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card:first-child { grid-column: auto; }
    .featured-card { min-height: 380px; }
    .update-row { grid-template-columns: 1fr auto; }
    .update-row > span { grid-column: 1 / -1; }
    .page-hero { min-height: 62svh; padding-top: 6rem; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-card { position: static; }
    .practice-grid { grid-template-columns: 1fr; }
    .practice-grid article { border-inline-start: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .practice-grid h3 { margin-top: 2rem; }
    .full-timeline li { grid-template-columns: 3rem 1fr; }
    .timeline-index { padding: 2rem .5rem 2rem 0; }
    .timeline-index::after { inset-block-start: 2.35rem; }
    .full-timeline article, html[dir="rtl"] .full-timeline article { padding: 2rem 0 2rem 1.5rem; }
    html[dir="rtl"] .full-timeline article { padding: 2rem 1.5rem 2rem 0; }
    .project-card { grid-template-columns: 1fr; }
    .project-cover { min-height: 300px; }
    .project-copy, html[dir="rtl"] .project-copy { padding: 1.5rem 1rem; }
    .client-grid, .company-story article, .legal-grid, .contact-grid, .verification-note { grid-template-columns: 1fr; }
    .company-monogram { min-height: 280px; }
    .transition-marker { grid-template-columns: 1fr; text-align: center; }
    .contact-status { grid-column: auto; }
    .updates-list article { grid-template-columns: 1fr; gap: 1rem; }
    .updates-list article > p:nth-of-type(2), .updates-list .text-link { grid-column: 1; }
    .article-header h1 { font-size: clamp(3.4rem, 16vw, 5.6rem); }
    .footer-shell { grid-template-columns: 1fr; gap: 3rem; }
    .footer-meta { grid-column: auto; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
