:root {
  --ink: #0b0b0a;
  --ink-soft: #151513;
  --paper: #f2f0e9;
  --paper-deep: #e7e3d9;
  --gold: #c79b48;
  --gold-light: #e0bd78;
  --white: #ffffff;
  --muted: #a7a49c;
  --line-dark: rgba(18, 18, 16, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --shell: 1280px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { font-family: Tahoma, Arial, sans-serif; }
html.menu-open, body.menu-open { height: 100%; overflow: hidden; overscroll-behavior: none; }
body.menu-open { position: fixed; inset-inline: 0; width: 100%; touch-action: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.shell { width: min(var(--shell), calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; inset-block-start: 10px; inset-inline-start: 10px; padding: 12px 18px; transform: translateY(-160%); background: var(--gold); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.ambient { position: fixed; z-index: -1; width: 520px; height: 520px; border-radius: 50%; filter: blur(130px); opacity: .08; pointer-events: none; }
.ambient-one { inset-block-start: 15%; inset-inline-start: -280px; background: var(--gold); }
.ambient-two { inset-block-end: 5%; inset-inline-end: -300px; background: #8292a5; }

.site-header { position: fixed; z-index: 100; inset-block-start: 0; inset-inline: 0; border-block-end: 1px solid transparent; transition: background .24s var(--ease-out), border-color .24s var(--ease-out), transform .24s var(--ease-out); }
.site-header.is-scrolled { background: rgba(10, 10, 9, .88); border-color: var(--line-light); backdrop-filter: blur(18px); }
.header-inner { position: relative; z-index: 110; height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: 164px; }
.brand img { width: 100%; max-height: 52px; object-fit: contain; object-position: center left; }
[dir="rtl"] .brand img { object-position: center right; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.desktop-nav a { position: relative; color: #d3d0ca; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
[dir="rtl"] .desktop-nav a { font-size: 12px; letter-spacing: 0; }
.desktop-nav a::after { content: ""; position: absolute; inset-inline-start: 0; inset-block-end: -10px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--gold); transition: transform .2s var(--ease-out); }
[dir="rtl"] .desktop-nav a::after { transform-origin: right; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 12px; border: 1px solid var(--line-light); background: rgba(255, 255, 255, .03); cursor: pointer; transition: background .18s var(--ease-out), border-color .18s var(--ease-out); }
.language-switch:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .35); }
.language-switch span { font-size: 11px; font-weight: 800; }
.language-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.language-code { padding-inline-start: 7px; border-inline-start: 1px solid var(--line-light); color: var(--gold-light); letter-spacing: .08em; }
.header-contact { display: inline-flex; align-items: center; min-height: 40px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .35); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: background .18s var(--ease-out), color .18s var(--ease-out); }
[dir="rtl"] .header-contact { font-size: 12px; letter-spacing: 0; }
.header-contact:hover { background: var(--white); color: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0 10px; border: 1px solid var(--line-light); background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 1px; margin: 7px 0; background: var(--white); transition: transform .2s var(--ease-out); }
.menu-button[aria-expanded="true"] { border-color: var(--gold); background: #151512; box-shadow: 0 0 0 4px rgba(199, 155, 72, .08); }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 95; inset: 0; display: block; padding: calc(98px + env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); visibility: hidden; opacity: 0; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; pointer-events: none; background: radial-gradient(circle at 84% 8%, rgba(199, 155, 72, .12), transparent 29%), linear-gradient(145deg, #11110f 0%, #080807 62%, #0d0d0b 100%); transform: translateY(-10px); transition: opacity .22s var(--ease-out), transform .22s var(--ease-out), visibility .22s; -webkit-overflow-scrolling: touch; }
.mobile-menu::after { content: ""; position: fixed; z-index: -1; inset-inline-end: -110px; inset-block-end: -110px; width: 310px; height: 310px; border: 1px solid rgba(199, 155, 72, .15); transform: rotate(45deg); pointer-events: none; }
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu nav { width: min(660px, 100%); margin: 0 auto; padding-block: 16px 42px; }
.mobile-menu nav::before { content: "Navigation"; display: block; margin-block-end: 18px; color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
[dir="rtl"] .mobile-menu nav::before { content: "القائمة الرئيسية"; font-size: 12px; letter-spacing: 0; }
.mobile-menu a { display: grid; grid-template-columns: 52px minmax(0, 1fr) 28px; align-items: center; min-height: 82px; margin-block-end: 10px; padding: 15px 18px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .035); transition: border-color .18s var(--ease-out), background .18s var(--ease-out), transform .18s var(--ease-out); }
.mobile-menu a::after { content: "↗"; justify-self: end; color: var(--gold); font-size: 16px; }
[dir="rtl"] .mobile-menu a::after { content: "↖"; justify-self: start; }
.mobile-menu a:hover, .mobile-menu a:focus-visible { border-color: rgba(199, 155, 72, .58); background: rgba(199, 155, 72, .09); transform: translateX(4px); }
[dir="rtl"] .mobile-menu a:hover, [dir="rtl"] .mobile-menu a:focus-visible { transform: translateX(-4px); }
.mobile-menu a span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.mobile-menu a b { overflow-wrap: anywhere; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 6vw, 50px); font-weight: 400; line-height: 1.05; }
[dir="rtl"] .mobile-menu a b { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 180px 0 0; background: var(--ink); }
.hero-media { position: absolute; inset-block: 0; inset-inline-end: 0; width: 65%; overflow: hidden; }
[dir="rtl"] .hero-media { right: auto; left: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.07); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--ink) 0%, rgba(11, 11, 10, .82) 19%, rgba(11, 11, 10, .16) 68%, rgba(11, 11, 10, .38) 100%), linear-gradient(to top, rgba(11, 11, 10, .94), transparent 45%); }
[dir="rtl"] .hero-media::after { background: linear-gradient(to left, var(--ink) 0%, rgba(11, 11, 10, .82) 19%, rgba(11, 11, 10, .16) 68%, rgba(11, 11, 10, .38) 100%), linear-gradient(to top, rgba(11, 11, 10, .94), transparent 45%); }
.hero-noise { position: absolute; inset: 0; opacity: .18; pointer-events: none; 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='.12'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(250px, .42fr); gap: clamp(45px, 8vw, 140px); align-items: end; padding-block-end: 68px; }
.hero-copy { max-width: 880px; }
.kicker, .section-label { display: flex; align-items: center; gap: 13px; margin: 0 0 30px; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
[dir="rtl"] .kicker, [dir="rtl"] .section-label { font-size: 12px; letter-spacing: 0; }
.kicker span { width: 34px; height: 1px; background: var(--gold); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.052em; line-height: .94; }
html[lang="ar"] h1, html[lang="ar"] h2 { font-family: Tahoma, Arial, sans-serif; font-weight: 700; letter-spacing: -.025em; line-height: 1.12; }
h1 { max-width: 930px; font-size: clamp(58px, 8.2vw, 122px); }
h1 em, h2 em { display: block; color: var(--gold-light); font-weight: 400; }
html[lang="ar"] h1 em, html[lang="ar"] h2 em { font-style: normal; font-weight: 700; }
.hero-intro { max-width: 620px; margin: 32px 0 0; color: #bfbbb3; font-size: clamp(14px, 1.2vw, 17px); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-block-start: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 52px; padding: 0 22px; border: 1px solid currentColor; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; transition: transform .16s var(--ease-out), background .18s var(--ease-out), color .18s var(--ease-out); }
[dir="rtl"] .button { font-size: 12px; letter-spacing: 0; }
.button:active { transform: scale(.97); }
.button-gold { border-color: var(--gold); background: var(--gold); color: #17130d; }
.button-gold:hover { background: var(--gold-light); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #d4d1ca; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
[dir="rtl"] .text-link { font-size: 12px; letter-spacing: 0; }
.text-link i { color: var(--gold); font-style: normal; }
.hero-panel { border: 1px solid var(--line-light); background: rgba(13, 13, 12, .48); backdrop-filter: blur(12px); }
.hero-panel > p { margin: 0; padding: 20px 22px; border-block-end: 1px solid var(--line-light); color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
[dir="rtl"] .hero-panel > p { font-size: 12px; letter-spacing: 0; }
.hero-panel-row { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 19px 22px; border-block-end: 1px solid var(--line-light); }
.hero-panel-row:last-child { border-block-end: 0; }
.hero-panel-row strong { color: var(--gold); font-size: 10px; letter-spacing: .1em; }
.hero-panel-row span { color: #d6d2ca; font-size: 12px; }
.hero-footer { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); border-block-start: 1px solid var(--line-light); }
.hero-footer span { padding: 20px 0; color: #8f8b84; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-footer span:not(:first-child) { padding-inline-start: 25px; border-inline-start: 1px solid var(--line-light); }
[dir="rtl"] .hero-footer span { font-size: 11px; letter-spacing: 0; }

.metrics { background: #141412; border-block: 1px solid var(--line-light); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics article { min-height: 130px; padding: 28px 26px; border-inline-start: 1px solid var(--line-light); }
.metrics article:first-child { border-inline-start: 0; }
.metrics strong { display: block; margin-block-end: 10px; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.metrics span { color: #8d8a83; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
[dir="rtl"] .metrics strong { font-family: Tahoma, Arial, sans-serif; font-size: 20px; font-weight: 700; }
[dir="rtl"] .metrics span { font-size: 11px; letter-spacing: 0; }

.section { padding: clamp(92px, 11vw, 150px) 0; }
.paper { background: var(--paper); color: #181816; }
.dark { background: #11110f; }
.section-label { margin-block-end: 48px; }
.section-label span { color: var(--gold); }
.section-label i { width: 44px; height: 1px; background: var(--gold); }
.section-label b { font-weight: 800; }
.light-label { color: #d4d1ca; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: clamp(70px, 10vw, 150px); align-items: center; }
h2 { font-size: clamp(48px, 6.2vw, 88px); }
.paper h2 em { color: #9b702b; }
.large-copy { max-width: 680px; margin: 34px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 2vw, 29px); line-height: 1.42; }
[dir="rtl"] .large-copy { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }
.body-copy { max-width: 640px; margin: 0; color: #64615b; font-size: 15px; }
.signature-line { display: flex; align-items: center; gap: 14px; margin-block-start: 34px; color: #716e67; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
[dir="rtl"] .signature-line { font-size: 11px; letter-spacing: 0; }
.signature-line span { width: 34px; height: 1px; background: var(--gold); }
.about-visual { position: relative; padding-inline-end: 36px; padding-block-end: 40px; }
.image-frame { position: relative; min-height: 610px; overflow: hidden; background: #1a1a18; }
.image-frame::before { content: ""; position: absolute; z-index: 2; inset: 15px; border: 1px solid rgba(255, 255, 255, .25); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; transition: transform .7s var(--ease-out); }
.about-visual:hover .image-frame img { transform: scale(1.025); }
.material-card { position: absolute; inset-inline-end: 0; inset-block-end: 0; width: min(330px, 82%); padding: 24px; background: var(--ink); color: var(--white); box-shadow: 0 22px 50px rgba(0, 0, 0, .24); }
.material-card span { display: block; margin-block-end: 26px; color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.material-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }
[dir="rtl"] .material-card strong { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }
.material-card small { display: block; margin-block-start: 7px; color: #918e87; }

.split-heading { display: grid; grid-template-columns: 1.1fr .54fr; gap: 80px; align-items: end; margin-block-end: 68px; }
.split-heading > p { max-width: 500px; margin: 0 0 4px; color: #96938c; }
.services-layout { display: grid; grid-template-columns: 1.04fr .7fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.services-list { border-block-start: 1px solid var(--line-light); }
.service-item { display: grid; grid-template-columns: 44px 1fr 34px; gap: 18px; align-items: start; padding: 24px 0; border-block-end: 1px solid var(--line-light); transition: padding .2s var(--ease-out), background .2s var(--ease-out); }
.service-item:hover { padding-inline: 16px; background: rgba(255, 255, 255, .035); }
.service-item > span { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.service-item h3 { margin: 0 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 2.2vw, 32px); font-weight: 400; }
[dir="rtl"] .service-item h3 { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }
.service-item p { max-width: 530px; margin: 0; color: #8e8b84; font-size: 13px; }
.service-item > i { color: var(--gold); font-style: normal; }
.services-visual { position: sticky; inset-block-start: 120px; margin: 0; overflow: hidden; }
.services-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent 45%); pointer-events: none; }
.services-visual img { width: 100%; min-height: 680px; object-fit: cover; }
.services-visual figcaption { position: absolute; z-index: 2; inset-inline: 25px; inset-block-end: 24px; display: flex; justify-content: space-between; gap: 20px; color: var(--white); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
[dir="rtl"] .services-visual figcaption { letter-spacing: 0; }

.ink-heading > p { color: #68655f; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block-start: 1px solid var(--line-dark); border-inline-start: 1px solid var(--line-dark); }
.value-card { position: relative; min-height: 310px; padding: 30px; overflow: hidden; border-inline-end: 1px solid var(--line-dark); border-block-end: 1px solid var(--line-dark); background: rgba(255, 255, 255, .22); transition: background .2s var(--ease-out), transform .2s var(--ease-out); }
.value-card:hover { z-index: 2; transform: translateY(-4px); background: #faf8f2; }
.value-card > span { color: #9b702b; font-size: 10px; letter-spacing: .13em; }
.value-card h3 { margin: 112px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 400; }
[dir="rtl"] .value-card h3 { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }
.value-card p { max-width: 380px; margin: 0; color: #68655f; font-size: 13px; }
.value-featured { grid-row: span 2; min-height: 620px; background: var(--ink); color: var(--white); }
.value-featured:hover { background: #151512; }
.value-featured img { position: absolute; inset-inline-end: -80px; inset-block-start: 30px; width: 360px; opacity: .13; }
.value-featured h3 { margin-block-start: 355px; }
.value-featured p { color: #98958e; }
.value-wide { grid-column: span 2; }

.process { position: relative; min-height: 900px; display: flex; align-items: flex-end; overflow: hidden; padding: 140px 0 110px; }
.process-media, .process-overlay { position: absolute; inset: 0; }
.process-media img { width: 100%; height: 100%; object-fit: cover; }
.process-overlay { background: linear-gradient(to right, rgba(7, 7, 6, .96), rgba(7, 7, 6, .42)), linear-gradient(to top, rgba(7, 7, 6, .92), transparent 64%); }
[dir="rtl"] .process-overlay { background: linear-gradient(to left, rgba(7, 7, 6, .96), rgba(7, 7, 6, .42)), linear-gradient(to top, rgba(7, 7, 6, .92), transparent 64%); }
.process-inner { position: relative; z-index: 2; }
.process-title { max-width: 850px; margin-block-end: 72px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-block-start: 1px solid var(--line-light); border-inline-start: 1px solid var(--line-light); }
.process-steps article { min-height: 240px; padding: 25px; border-inline-end: 1px solid var(--line-light); border-block-end: 1px solid var(--line-light); background: rgba(10, 10, 9, .35); backdrop-filter: blur(8px); }
.process-steps span { color: var(--gold); font-size: 10px; letter-spacing: .13em; }
.process-steps h3 { margin: 60px 0 11px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }
[dir="rtl"] .process-steps h3 { font-family: Tahoma, Arial, sans-serif; font-weight: 700; }
.process-steps p { margin: 0; color: #a09d96; font-size: 12px; }

.contact-section { position: relative; overflow: hidden; background: var(--ink); }
.contact-mark { position: absolute; inset-inline-end: -8%; inset-block-end: -32%; width: min(760px, 56vw); opacity: .055; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .62fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.contact-copy { max-width: 680px; margin: 30px 0 0; color: #9b9891; }
.contact-card { padding: 34px; border: 1px solid var(--line-light); background: rgba(255, 255, 255, .025); }
.contact-card > span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
[dir="rtl"] .contact-card > span { font-size: 11px; letter-spacing: 0; }
.contact-card > a:not(.button) { display: block; margin: 24px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 2.3vw, 37px); overflow-wrap: anywhere; }
.contact-card > p { margin: 0 0 30px; color: #96938c; font-size: 13px; }
.full-button { width: 100%; }

.site-footer { background: #070706; border-block-start: 1px solid var(--line-light); }
.footer-top { display: grid; grid-template-columns: .7fr 1fr .7fr; gap: 40px; align-items: center; padding-block: 50px; }
.footer-brand { width: 154px; }
.footer-top p { max-width: 460px; margin: 0; color: #77746e; font-size: 12px; }
.footer-top > a:last-child { justify-self: end; color: var(--gold-light); font-size: 13px; }
[dir="rtl"] .footer-top > a:last-child { justify-self: start; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 25px; border-block-start: 1px solid var(--line-light); color: #68655f; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
[dir="rtl"] .footer-bottom { font-size: 10px; letter-spacing: 0; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .services-layout { grid-template-columns: 1fr .72fr; gap: 50px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-featured { grid-row: span 1; min-height: 310px; }
  .value-featured h3 { margin-block-start: 112px; }
  .value-wide { grid-column: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(var(--shell), calc(100% - 34px)); }
  .header-inner { height: 74px; }
  .brand { width: 132px; }
  .header-contact { display: none; }
  .language-switch { min-height: 38px; padding: 0 10px; }
  .language-switch #languageName { display: none; }
  .mobile-menu { padding-block-start: calc(84px + env(safe-area-inset-top)); padding-inline: max(17px, env(safe-area-inset-left)) max(17px, env(safe-area-inset-right)); }
  .mobile-menu nav { padding-block-start: 10px; }
  .mobile-menu a { grid-template-columns: 38px minmax(0, 1fr) 22px; min-height: 70px; padding: 12px 14px; }
  .mobile-menu a b { font-size: clamp(25px, 8vw, 38px); }
  .hero { min-height: 860px; padding-block-start: 140px; }
  .hero-media, [dir="rtl"] .hero-media { inset-inline: 0; right: 0; left: 0; width: 100%; opacity: .86; }
  .hero-media::after, [dir="rtl"] .hero-media::after { background: linear-gradient(to top, var(--ink) 5%, rgba(11, 11, 10, .52) 70%, rgba(11, 11, 10, .46) 100%); }
  .hero-inner { padding-block-end: 44px; }
  h1 { font-size: clamp(52px, 15vw, 82px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .text-link { justify-content: center; }
  .hero-footer { grid-template-columns: 1fr; }
  .hero-footer span { padding: 13px 0; }
  .hero-footer span:not(:first-child) { padding-inline-start: 0; border-inline-start: 0; border-block-start: 1px solid var(--line-light); }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metrics article:nth-child(3) { border-inline-start: 0; border-block-start: 1px solid var(--line-light); }
  .metrics article:nth-child(4) { border-block-start: 1px solid var(--line-light); }
  .about-grid, .split-heading, .services-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { gap: 60px; }
  .image-frame, .image-frame img { min-height: 470px; }
  .split-heading { gap: 24px; margin-block-end: 50px; }
  .services-visual { position: relative; inset-block-start: auto; }
  .services-visual img { min-height: 480px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card, .value-featured { min-height: 250px; }
  .value-card h3, .value-featured h3 { margin-block-start: 74px; }
  .process { min-height: 1060px; padding-block: 110px 80px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps article { min-height: 190px; }
  .process-steps h3 { margin-block-start: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > a:last-child { justify-self: start; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics article { border-inline-start: 0; border-block-start: 1px solid var(--line-light); }
  .metrics article:first-child { border-block-start: 0; }
  .service-item { grid-template-columns: 34px 1fr 20px; gap: 10px; }
  .contact-card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}

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