/* =========================================================
   SULTAN OF BASRA CO. — Stylesheet
   Palette (3 brand colours): Bronze · Ink · Ivory
   ========================================================= */

:root {
  /* brand */
  --bronze: #9F7A55;
  --bronze-light: #C4A47C;
  --bronze-deep: #73553A;
  --bronze-glow: rgba(159, 122, 85, .22);

  --ink: #17140F;
  --ink-2: #2B2620;
  --ink-soft: #5E564C;

  --ivory: #F5F1EA;
  --ivory-2: #ECE5D9;
  --ivory-3: #E2D9C9;
  --white: #FFFDF9;

  /* type */
  --font-head: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* scale */
  --fs-hero: clamp(2.6rem, 6.4vw, 5.6rem);
  --fs-h2: clamp(2rem, 4vw, 3.4rem);
  --fs-h3: clamp(1.2rem, 1.6vw, 1.45rem);
  --fs-body: clamp(1rem, 1.05vw, 1.1rem);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 22px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 60px -24px rgba(23, 20, 15, .28);
  --shadow-sm: 0 10px 30px -14px rgba(23, 20, 15, .25);

}

/* Arabic typography */
html[lang="ar"] {
  --font-head: 'Noto Kufi Arabic', 'Tajawal', system-ui, sans-serif;
  --font-body: 'Tajawal', system-ui, sans-serif;
  --fs-hero: clamp(2.3rem, 5.6vw, 4.6rem);
  --fs-h2: clamp(1.8rem, 3.6vw, 3rem);
  --fs-body: clamp(1.05rem, 1.1vw, 1.18rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { letter-spacing: 0; line-height: 1.35; font-weight: 700; }
p { margin: 0 0 1rem; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--bronze); color: var(--white); }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--split { display: flex; justify-content: space-between; align-items: end; gap: 24px; max-width: none; }
.section__title { font-size: var(--fs-h2); color: var(--ink); text-wrap: balance; }
.section__sub { color: var(--ink-soft); margin-top: 14px; max-width: 60ch; }
.lead { font-family: var(--font-head); font-size: clamp(1.25rem, 1.8vw, 1.6rem); color: var(--bronze-deep); font-weight: 500; font-style: italic; margin: 6px 0 18px; }
html[lang="ar"] .lead { font-style: normal; font-weight: 500; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 18px;
}
html[lang="ar"] .kicker { letter-spacing: 0; font-size: .95rem; }
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--bronze); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em; white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--primary { background: var(--bronze); color: var(--white); box-shadow: 0 14px 30px -12px var(--bronze); }
.btn--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); z-index: -1; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px var(--bronze); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { border: 1px solid var(--bronze); color: var(--bronze-deep); background: transparent; }
.btn--ghost:hover { background: var(--bronze); color: var(--white); transform: translateY(-3px); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); transform: translateY(-3px); }
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Icons ---------- */
.ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--white); border: 1px solid var(--ivory-3); color: var(--bronze); flex: none; }
.ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--ivory); display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; justify-items: center; gap: 26px; }
.preloader__logo { width: clamp(110px, 16vw, 160px); animation: pulse 1.8s ease-in-out infinite; }
.preloader__bar { width: 140px; height: 2px; background: var(--ivory-3); overflow: hidden; border-radius: 2px; }
.preloader__bar span { display: block; height: 100%; width: 40%; background: var(--bronze); animation: bar 1.2s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes bar { 0% { transform: translateX(-120%); } 100% { transform: translateX(300%); } }
html[dir="rtl"] .preloader__bar span { animation-name: barRtl; }
@keyframes barRtl { 0% { transform: translateX(120%); } 100% { transform: translateX(-300%); } }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; width: 40px; height: 40px; margin: -20px 0 0 -20px; border: 1px solid var(--bronze); border-radius: 50%; opacity: 0; transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), opacity .3s, background .3s; mix-blend-mode: multiply; }
.cursor span { position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; margin: -2.5px; background: var(--bronze); border-radius: 50%; }
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { width: 68px; height: 68px; margin: -34px 0 0 -34px; background: var(--bronze-glow); }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ---------- Header ---------- */
:root { --topbar-h: 40px; --bar-h: 92px; --header-h: calc(var(--topbar-h) + var(--bar-h)); }
.header { position: fixed; inset-inline: 0; top: 0; z-index: 100; transition: transform .6s var(--ease); }
.header.is-hidden { transform: translateY(-110%); }

.topbar { height: var(--topbar-h); background: var(--ink); color: rgba(245,241,234,.78); font-size: .8rem; overflow: hidden; transition: height .45s var(--ease), opacity .3s; }
.header.is-scrolled .topbar { height: 0; opacity: 0; }
.topbar__inner { height: var(--topbar-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__list { display: flex; align-items: center; gap: 28px; }
.topbar__list li { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; letter-spacing: .02em; }
.topbar__list svg { width: 15px; height: 15px; fill: none; stroke: var(--bronze-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.topbar__list a { transition: color .3s; }
.topbar__list a:hover { color: var(--bronze-light); }
.topbar__list--end li:last-child a { color: var(--bronze-light); font-weight: 600; }

.header__bar { height: var(--bar-h); background: rgba(245,241,234,.72); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border-bottom: 1px solid rgba(23,20,15,.06); transition: height .45s var(--ease), background .4s, box-shadow .4s; }
.header.is-scrolled .header__bar { height: 76px; background: rgba(245,241,234,.9); box-shadow: 0 14px 34px -24px rgba(23,20,15,.35); }
.header .container { --container: 1400px; }
.header__inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px, 2.5vw, 36px); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { width: 62px; height: auto; transition: width .45s var(--ease); }
.header.is-scrolled .brand__logo { width: 50px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
html[lang="en"] .brand__text strong { font-size: 1.45rem; letter-spacing: .01em; }
.brand__text small { font-size: .74rem; color: var(--bronze); font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
html[lang="en"] .brand__text small { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }

.nav { justify-self: center; }
.nav__list { display: flex; gap: clamp(14px, 1.8vw, 30px); }
.nav__link { position: relative; font-weight: 600; font-size: .95rem; color: var(--ink-2); padding: 8px 0; white-space: nowrap; }
html[lang="ar"] .nav__link { font-size: 1.02rem; }
.nav__link::after { content: ""; position: absolute; inset-inline-start: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--bronze); transform: scaleX(0); transform-origin: var(--origin, left); transition: transform .5s var(--ease); }
html[dir="rtl"] .nav__link::after { --origin: right; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--bronze-deep); }

.header__actions { display: flex; align-items: center; gap: 14px; justify-self: end; }
.lang-toggle { position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; align-items: center; height: 44px; padding: 4px; border-radius: 999px; border: 1px solid var(--ivory-3); background: var(--white); isolation: isolate; }
.lang-toggle__opt { position: relative; z-index: 1; padding: 0 16px; font-size: .84rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); transition: color .3s; line-height: 1; }
.lang-toggle__pill { position: absolute; top: 4px; bottom: 4px; width: calc(50% - 4px); inset-inline-start: 4px; border-radius: 999px; background: var(--ink); transition: transform .5s var(--ease); }
html[lang="en"] .lang-toggle__pill { transform: translateX(var(--pill-x, 100%)); }
html[dir="ltr"] .lang-toggle__pill { --pill-x: 100%; }
html[dir="rtl"] .lang-toggle__pill { --pill-x: -100%; }
html[lang="ar"] .lang-toggle__opt[data-l="ar"], html[lang="en"] .lang-toggle__opt[data-l="en"] { color: var(--ivory); }
.header__cta { padding: 13px 24px; font-size: .9rem; height: 44px; }

.burger { display: none; width: 46px; height: 46px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 12px; background: var(--white); border: 1px solid var(--ivory-3); }
.burger span { width: 20px; height: 1.6px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; transform-origin: center; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 24px); padding-bottom: 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero__orb--1 { width: 55vw; height: 55vw; max-width: 720px; max-height: 720px; inset-inline-end: -15vw; top: -20vw; background: radial-gradient(circle, var(--bronze-light), transparent 65%); animation: float 14s ease-in-out infinite; }
.hero__orb--2 { width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; inset-inline-start: -14vw; bottom: -12vw; background: radial-gradient(circle, var(--ivory-3), transparent 65%); animation: float 18s ease-in-out infinite reverse; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,20,15,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23,20,15,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%); }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-3%, 4%); } }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 80px); align-items: center; position: relative; z-index: 1; }
.hero__title { font-size: var(--fs-hero); line-height: 1.02; margin: 8px 0 26px; }
html[lang="ar"] .hero__title { line-height: 1.32; }
.hero__line { display: block; overflow: hidden; padding-bottom: .22em; margin-bottom: -.22em; }
.hero__line > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.is-ready .hero__line > span { transform: translateY(0); }
.hero__line:nth-child(2) > span { transition-delay: .12s; }
.hero__line:nth-child(3) > span { transition-delay: .24s; }
.hero__accent { color: var(--bronze); font-style: italic; font-weight: 500; }
html[lang="ar"] .hero__accent { font-style: normal; }
.hero__sub { max-width: 56ch; color: var(--ink-soft); font-size: clamp(1.02rem, 1.2vw, 1.18rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats { display: flex; gap: clamp(20px, 4vw, 56px); margin-top: clamp(36px, 5vw, 60px); padding-top: 28px; border-top: 1px solid var(--ivory-3); }
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-family: var(--font-head); font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1; color: var(--ink); font-weight: 600; }
.hero__stats span:last-child { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; }

.hero__visual { position: relative; }
.hero__frame { position: relative; border-radius: var(--radius) var(--radius) 120px var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow); transform: translateY(40px) scale(.96); opacity: 0; transition: transform 1.4s var(--ease) .2s, opacity 1.2s .2s; }
html[dir="rtl"] .hero__frame { border-radius: var(--radius) var(--radius) var(--radius) 120px; }
.is-ready .hero__frame { transform: none; opacity: 1; }
.hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,20,15,.35), transparent 45%); }
.hero__frame::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,253,249,.5); border-radius: inherit; z-index: 2; pointer-events: none; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.12) translate(0, 0); } to { transform: scale(1.02) translate(-1.5%, 1.5%); } }

.hero__scroll { position: absolute; bottom: 26px; inset-inline-start: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
html[dir="rtl"] .hero__scroll { transform: translateX(50%); letter-spacing: 0; font-size: .85rem; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--bronze), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--ivory); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--ivory-3); background: var(--white); padding: 18px 0; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 36px; padding-inline-end: 36px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
html[dir="rtl"] .marquee__track { animation-name: marqueeRtl; }
.marquee__track span { font-family: var(--font-head); font-size: clamp(1.1rem, 1.6vw, 1.5rem); font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.marquee__track i { width: 8px; height: 8px; border-radius: 50%; background: var(--bronze); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marqueeRtl { to { transform: translateX(50%); } }

/* ---------- Reveal (fallback if GSAP missing) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.gsap-on .reveal { transition: none; }

/* ---------- About ---------- */
.about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.about__media { position: sticky; top: 130px; }
.about__img-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); position: relative; }
.about__img-wrap::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,253,249,.55); border-radius: calc(var(--radius) - 8px); pointer-events: none; }
.about__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.about__media:hover .about__img { transform: scale(1.05); }
.about__tag { font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-deep); margin: 10px 0 16px; }
html[lang="ar"] .about__tag { letter-spacing: 0; font-size: 1rem; }
.about__content p { color: var(--ink-soft); }
.about__content .lead { color: var(--bronze-deep); }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--ivory-3); }
.features li { display: flex; gap: 14px; align-items: flex-start; }
.features strong { display: block; color: var(--ink); font-size: 1rem; }
.features span { display: block; font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }

.activities { margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--ivory-3); }
.activities__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.activities__head h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.activities__head p { margin: 0; color: var(--ink-soft); }
.activities__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: act; }
.activities__list li { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 26px 24px; background: var(--white); border: 1px solid var(--ivory-3); border-radius: 18px; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.activities__list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 22px; bottom: 22px; width: 3px; border-radius: 3px; background: var(--bronze); opacity: 0; transition: opacity .4s; }
.activities__list li:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--bronze-light); }
.activities__list li:hover::before { opacity: 1; }
.activities__n { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--bronze); line-height: 1; display: inline-flex; align-items: center; gap: 10px; }
.activities__n::after { content: ""; flex: 1; height: 1px; background: var(--ivory-3); }
.activities__list p { margin: 0; color: var(--ink-2); font-size: .95rem; line-height: 1.7; }

.commitment { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 40px); align-items: center; padding: clamp(26px, 3.5vw, 44px); border-radius: var(--radius); background: linear-gradient(135deg, var(--white), var(--ivory-2)); border: 1px solid var(--ivory-3); position: relative; overflow: hidden; }
.commitment::before { content: ""; position: absolute; inset-inline-end: -8%; top: -60%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--bronze-glow), transparent 68%); pointer-events: none; }
.commitment__logo { width: clamp(90px, 10vw, 130px); flex: none; }
.commitment__label { font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; }
html[lang="ar"] .commitment__label { letter-spacing: 0; font-size: .95rem; }
.commitment__text { margin: 0; font-family: var(--font-head); font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.65; color: var(--ink-2); font-weight: 500; }
html[lang="ar"] .commitment__text { font-family: var(--font-body); font-weight: 500; font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.9; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 100% 0%, var(--bronze-glow), transparent 70%); pointer-events: none; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.svc { position: relative; padding: 34px 28px 30px; border: 1px solid var(--ivory-3); border-radius: var(--radius); background: var(--ivory); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .4s; display: flex; flex-direction: column; }
.svc::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, var(--bronze), var(--bronze-deep)); opacity: 0; transition: opacity .5s; }
.svc > * { position: relative; }
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { opacity: 1; }
.svc:hover h3, .svc:hover p, .svc:hover .svc__num, .svc:hover .svc__link { color: var(--white); }
.svc:hover .svc__ico { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: var(--white); }
.svc__num { position: absolute; top: 18px; inset-inline-end: 22px; font-family: var(--font-head); font-size: 2.2rem; color: var(--ivory-3); font-weight: 600; line-height: 1; transition: color .4s; }
.svc__ico { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; background: var(--white); border: 1px solid var(--ivory-3); color: var(--bronze); margin-bottom: 22px; transition: all .4s; }
.svc__ico svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { font-size: var(--fs-h3); margin-bottom: 10px; transition: color .4s; text-wrap: balance; }
.svc p { font-size: .92rem; color: var(--ink-soft); line-height: 1.65; flex: 1; transition: color .4s; }
.svc__link { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze); margin-top: 6px; display: inline-flex; align-items: center; gap: 8px; transition: color .4s; }
html[lang="ar"] .svc__link { letter-spacing: 0; font-size: .9rem; }
.svc__link::after { content: "→"; transition: transform .4s var(--ease); }
html[dir="rtl"] .svc__link::after { content: "←"; }
.svc:hover .svc__link::after { transform: translateX(4px); }
html[dir="rtl"] .svc:hover .svc__link::after { transform: translateX(-4px); }

/* ---------- Sectors ---------- */
.sectors { background: var(--ivory); }
.sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 18px; }
.sector { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); display: block; isolation: isolate; }
.sectors__grid .sector:nth-child(1), .sectors__grid .sector:nth-child(4), .sectors__grid .sector:nth-child(6) { grid-column: span 2; }
.sector__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), opacity .6s; opacity: .95; }
.sector__img.is-missing { opacity: 0; }
.sector::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, var(--bronze-deep), var(--ink)); z-index: -1; }
.sector::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,20,15,.85) 0%, rgba(23,20,15,.15) 55%, transparent 100%); transition: opacity .5s; }
.sector:hover .sector__img { transform: scale(1.07); }
.sector__body { position: absolute; inset-inline: 0; bottom: 0; padding: 26px 28px; color: var(--ivory); z-index: 2; transform: translateY(14px); transition: transform .6s var(--ease); }
.sector:hover .sector__body { transform: none; }
.sector__num { font-size: .72rem; letter-spacing: .3em; color: var(--bronze-light); font-weight: 700; }
.sector h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); margin: 6px 0 6px; color: var(--white); }
.sector p { font-size: .9rem; color: rgba(245,241,234,.8); margin: 0; max-width: 46ch; opacity: 0; transition: opacity .5s .1s; line-height: 1.55; }
.sector:hover p { opacity: 1; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.tab { padding: 11px 20px; border-radius: 999px; border: 1px solid var(--ivory-3); background: var(--ivory); font-weight: 600; font-size: .9rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; transition: all .35s var(--ease); }
.tab svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.tab:hover { border-color: var(--bronze); color: var(--bronze-deep); }
.tab.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.gallery__meta { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 18px; font-size: .85rem; color: var(--ink-soft); letter-spacing: .04em; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 14px; }
.gallery__grid .tile:nth-child(6n+1):not(:last-child) { grid-row: span 2; }
.gallery__grid .tile:nth-child(6n+4) { grid-column: span 2; }
.gallery__grid .tile:only-child { grid-column: span 2; grid-row: span 2; }
.tile { position: relative; margin: 0; border-radius: 16px; overflow: hidden; background: var(--ivory-2); cursor: zoom-in; isolation: isolate; opacity: 0; transform: translateY(20px) scale(.98); animation: tileIn .8s var(--ease) forwards; }
@keyframes tileIn { to { opacity: 1; transform: none; } }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,20,15,.55), transparent 50%); opacity: 0; transition: opacity .5s; }
.tile:hover::after { opacity: 1; }
.tile__label { position: absolute; bottom: 14px; inset-inline-start: 16px; z-index: 2; color: var(--white); font-size: .78rem; letter-spacing: .1em; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all .5s var(--ease); }
.tile:hover .tile__label { opacity: 1; transform: none; }
.tile__zoom { position: absolute; top: 14px; inset-inline-end: 14px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,253,249,.9); display: grid; place-items: center; color: var(--ink); opacity: 0; transform: scale(.6); transition: all .5s var(--ease); }
.tile__zoom svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tile:hover .tile__zoom { opacity: 1; transform: none; }
/* placeholder (missing photo) */
.tile.is-placeholder { cursor: default; background: linear-gradient(150deg, var(--ivory) 0%, var(--ivory-2) 60%, var(--ivory-3) 100%); display: grid; place-items: center; }
.tile.is-placeholder img { display: none; }
.tile.is-placeholder::after, .tile.is-placeholder .tile__zoom { display: none; }
.tile.is-placeholder .tile__ph { display: grid; justify-items: center; gap: 8px; color: var(--bronze); text-align: center; }
.tile.is-placeholder .tile__ph img { display: block; width: 54px; opacity: .55; }
.tile.is-placeholder .tile__ph span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; opacity: .8; }
html[lang="ar"] .tile.is-placeholder .tile__ph span { letter-spacing: 0; font-size: .85rem; }
.tile.is-placeholder .tile__ph em { font-family: var(--font-head); font-size: 1.6rem; font-style: normal; color: var(--ivory-3); line-height: 1; }
.tile.is-placeholder .tile__label { display: none; }
.gallery__more { display: flex; justify-content: center; margin-top: 34px; }
.gallery__more .btn[disabled] { opacity: .5; pointer-events: none; }

/* ---------- Sourcing / World map ---------- */
.sourcing { background: var(--ivory); overflow: hidden; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .kicker::before { display: none; }
.section__head--center .section__sub { margin-inline: auto; }

.worldmap { display: grid; gap: 28px; }
.worldmap__frame { position: relative; border-radius: var(--radius); background: var(--white); border: 1px solid var(--ivory-3); box-shadow: var(--shadow); overflow: hidden; padding: clamp(10px, 2vw, 28px); }
.worldmap__frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 45%, transparent 40%, rgba(159,122,85,.08) 100%); pointer-events: none; }
.worldmap__svg { width: 100%; height: auto; display: block; }
.worldmap__svg .land { fill: var(--ivory-2); stroke: var(--white); stroke-width: .7; transition: fill .4s; }
.worldmap__svg .land.hl { fill: var(--bronze-light); }
.worldmap__svg .land.hl.is-on, .worldmap__svg .land.hl:hover { fill: var(--bronze); }
.worldmap__svg .land.home { fill: var(--ink); }
.worldmap__svg .route { fill: none; stroke: var(--bronze); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 4 6; opacity: .75; }
.worldmap__svg .route-glow { fill: none; stroke: var(--bronze); stroke-width: 2.4; stroke-linecap: round; opacity: 0; stroke-dasharray: 60 1000; animation: routeRun 3.6s linear infinite; }
@keyframes routeRun { 0% { stroke-dashoffset: 0; opacity: 0; } 8% { opacity: .9; } 90% { opacity: .9; } 100% { stroke-dashoffset: -1060; opacity: 0; } }
.worldmap__svg .pin { fill: var(--bronze); stroke: var(--white); stroke-width: 2; }
.worldmap__svg .pin-ring { fill: none; stroke: var(--bronze); stroke-width: 1.2; opacity: 0; transform-box: fill-box; transform-origin: center; animation: ring 2.8s ease-out infinite; }
.worldmap__svg .home-pin { fill: var(--ink); stroke: var(--white); stroke-width: 2.5; }
.worldmap__svg .home-ring { fill: none; stroke: var(--ink); stroke-width: 1.4; opacity: 0; transform-box: fill-box; transform-origin: center; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.4); opacity: .8; } 100% { transform: scale(2.6); opacity: 0; } }

.worldmap__labels { position: absolute; inset: 0; pointer-events: none; }
.wm-label { position: absolute; transform: translate(-50%, -100%); padding: 5px 11px; border-radius: 999px; background: var(--white); color: var(--ink); border: 1px solid var(--ivory-3); font-size: .7rem; font-weight: 700; letter-spacing: .06em; white-space: nowrap; box-shadow: var(--shadow-sm); margin-top: -12px; transition: background .4s, color .4s, transform .5s var(--ease); }
.wm-label.is-on { background: var(--ink); color: var(--ivory); border-color: var(--ink); transform: translate(-50%, -100%) scale(1.08); }
.wm-label--below { transform: translate(-50%, 0); margin-top: 12px; }
.wm-label--below.is-on { transform: translate(-50%, 0) scale(1.08); }
.wm-label--below::after { bottom: auto; top: -5px; }
.wm-label--home { background: var(--bronze); color: var(--white); border-color: var(--bronze); margin-top: 14px; transform: translate(-50%, 0); font-size: .78rem; }
.wm-label::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 9px; height: 9px; background: inherit; border: inherit; border-top: 0; border-left: 0; transform: translateX(-50%) rotate(45deg); border-radius: 1px; }
.wm-label--home::after { bottom: auto; top: -5px; }
html[lang="ar"] .wm-label { letter-spacing: 0; font-size: .8rem; }

.worldmap__legend { position: absolute; bottom: 18px; inset-inline-start: 22px; display: flex; gap: 20px; font-size: .78rem; color: var(--ink-soft); background: rgba(255,253,249,.85); backdrop-filter: blur(8px); padding: 10px 16px; border-radius: 999px; border: 1px solid var(--ivory-3); }
.worldmap__legend span { display: inline-flex; align-items: center; gap: 8px; }
.sw { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.sw--src { background: var(--bronze); }
.sw--home { background: var(--ink); }

.worldmap__list { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.worldmap__list li { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 12px; border-radius: 16px; background: var(--white); border: 1px solid var(--ivory-3); font-weight: 600; text-align: center; cursor: default; transition: all .4s var(--ease); }
.worldmap__list li .n { font-family: var(--font-head); font-size: 1.1rem; color: var(--bronze); font-weight: 600; line-height: 1; }
.worldmap__list li:hover, .worldmap__list li.is-on { border-color: var(--bronze); transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ---------- Process ---------- */
.process { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; top: 40px; inset-inline: 10%; height: 1px; background: repeating-linear-gradient(90deg, var(--ivory-3) 0 8px, transparent 8px 14px); }
.step { position: relative; padding: 0 8px; }
.step__n { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--ivory-3); font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--bronze); margin-bottom: 22px; position: relative; transition: all .5s var(--ease); }
.step:hover .step__n { background: var(--bronze); color: var(--white); border-color: var(--bronze); box-shadow: 0 0 0 10px var(--bronze-glow); }
.step h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

/* ---------- Why ---------- */
.why { background: var(--ivory); }
.why__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.why__head { position: sticky; top: 120px; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why__list li { display: flex; gap: 16px; padding: 26px; background: var(--white); border: 1px solid var(--ivory-3); border-radius: var(--radius); transition: all .5s var(--ease); }
.why__list li:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--bronze-light); }
.why__list strong { display: block; font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 4px; }
.why__list span { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta { background: linear-gradient(120deg, var(--bronze) 0%, var(--bronze-deep) 100%); color: var(--white); padding: clamp(50px, 6vw, 80px) 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 50vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.cta::after { content: ""; position: absolute; inset: auto auto -50% -8%; width: 40vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; }
.cta h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 8px; }
.cta p { margin: 0; opacity: .9; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn--ghost { border-color: rgba(255,255,255,.7); color: var(--white); }
.cta .btn--ghost:hover { background: var(--white); color: var(--bronze-deep); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(30px, 5vw, 70px); }
.contact__list { display: grid; gap: 20px; margin-bottom: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list li > div { display: flex; flex-direction: column; }
.contact__list li > div > span:first-child { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 4px; }
html[lang="ar"] .contact__list li > div > span:first-child { letter-spacing: 0; font-size: .88rem; }
.contact__list a { font-weight: 600; color: var(--ink); transition: color .3s; overflow-wrap: anywhere; }
.contact__list a:hover { color: var(--bronze); }
.contact__list p { margin: 0; color: var(--ink-2); }
.contact__list .link { font-size: .85rem; color: var(--bronze-deep); text-decoration: underline; text-underline-offset: 4px; margin-top: 4px; }
.map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--ivory-3); box-shadow: var(--shadow-sm); filter: saturate(.85); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.form { background: var(--ivory); border: 1px solid var(--ivory-3); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); }
.form h3 { font-size: 1.5rem; margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field > span { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%), linear-gradient(135deg, var(--bronze) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-inline-end: 44px; }
html[dir="rtl"] .field select { background-position: 22px 55%, 16px 55%; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 16px; border-radius: 12px; border: 1px solid var(--ivory-3); background: var(--white); transition: border-color .3s, box-shadow .3s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 4px var(--bronze-glow); }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: #B4432F; }
.form__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.form__hint { margin: 14px 0 0; font-size: .8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(245,241,234,.75); padding-top: clamp(60px, 7vw, 90px); }
.footer__grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.3fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(245,241,234,.1); }
.footer__logo { width: 96px; margin-bottom: 16px; }
.footer__brand strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--ivory); }
.footer__brand small { display: block; font-size: .7rem; letter-spacing: .2em; color: var(--bronze-light); text-transform: uppercase; margin: 4px 0 16px; }
html[lang="ar"] .footer__brand small { letter-spacing: 0; font-size: .85rem; }
.footer__brand p { font-size: .9rem; line-height: 1.7; max-width: 40ch; }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 18px; font-weight: 700; }
html[lang="ar"] .footer h4 { letter-spacing: 0; font-size: .95rem; }
.footer ul li { margin-bottom: 10px; font-size: .92rem; overflow-wrap: anywhere; }
.footer ul a { transition: color .3s; }
.footer ul a:hover { color: var(--bronze-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 24px 0; font-size: .82rem; }
.footer__top { color: var(--bronze-light); font-weight: 600; }

/* ---------- Back to top ---------- */
.totop { position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 90; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: var(--ivory); display: grid; place-items: center; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .5s var(--ease); }
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--bronze); }
.totop svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(23,20,15,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: min(92vw, 1400px); max-height: 88vh; display: grid; grid-template-rows: 1fr auto; gap: 14px; transform: scale(.94); transition: transform .6s var(--ease); }
.lightbox.is-open .lightbox__figure { transform: none; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: 12px; margin: auto; box-shadow: 0 40px 80px -30px #000; }
.lightbox__figure figcaption { display: flex; justify-content: space-between; color: var(--ivory); font-size: .85rem; letter-spacing: .08em; opacity: .8; }
.lightbox__close, .lightbox__nav { position: absolute; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: var(--ivory); border: 1px solid rgba(245,241,234,.25); transition: all .35s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--bronze); border-color: var(--bronze); }
.lightbox__close { top: 24px; inset-inline-end: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
html[dir="rtl"] .lightbox__nav svg { transform: scaleX(-1); }

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .topbar__addr { display: none; }
}

@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .steps::before { display: none; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  :root { --topbar-h: 0px; --bar-h: 74px; }
  .topbar { display: none; }
  .header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .brand__logo { width: 50px; }
  .worldmap__list { grid-template-columns: repeat(4, 1fr); }
  .worldmap__legend { position: static; margin-top: 12px; justify-content: center; }
  .nav { position: fixed; inset: 0; background: var(--ivory); display: grid; place-items: center; transform: translateY(-100%); opacity: 0; transition: transform .7s var(--ease), opacity .5s; z-index: -1; }
  .nav.is-open { transform: none; opacity: 1; }
  .nav__list { flex-direction: column; align-items: center; gap: 22px; }
  .nav__link { font-family: var(--font-head); font-size: 2rem; font-weight: 600; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .header.is-hidden.is-menu { transform: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__frame { aspect-ratio: 4 / 3.6; }
  .hero__card { inset-inline-start: 12px; }
  .hero__ring { inset-inline-end: 6px; top: -20px; width: 120px; height: 120px; }
  .about__grid, .sourcing__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 560px; }
  .about__img-wrap { aspect-ratio: 16 / 11; }
  .activities__list { grid-template-columns: repeat(2, 1fr); }
  .why__head { position: static; }
  .sectors__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .sectors__grid .sector:nth-child(n) { grid-column: span 1; }
  .sectors__grid .sector:nth-child(1), .sectors__grid .sector:nth-child(6) { grid-column: span 2; }
  .sector p { opacity: 1; }
  .sector__body { transform: none; }
}

@media (max-width: 640px) {
  :root { --radius: 16px; }
  .brand__text { display: none; }
  .lang-toggle { height: 40px; }
  .lang-toggle__opt { padding: 0 12px; }
  .worldmap__list { grid-template-columns: repeat(2, 1fr); }
  .wm-label { display: none; }
  .wm-label--home { display: block; }
  .hero { padding-top: calc(var(--header-h) + 16px); }
  .hero__stats { gap: 22px; flex-wrap: wrap; }
  .hero__scroll { display: none; }
  .hero__card { padding: 12px 14px; gap: 10px; bottom: 30px; }
  .hero__card-logo { width: 38px; }
  .features { grid-template-columns: 1fr; }
  .activities__list { grid-template-columns: 1fr; }
  .commitment { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .totop { bottom: 18px; inset-inline-end: 18px; width: 44px; height: 44px; }
  .services__grid { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .sectors__grid .sector:nth-child(n) { grid-column: span 1 !important; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .gallery__grid .tile:nth-child(6n+4) { grid-column: span 2; }
  .countries__list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .lightbox__nav { width: 44px; height: 44px; top: auto; bottom: 22px; transform: none; }
  .lightbox__figure { max-height: 78vh; }
  .lightbox__figure img { max-height: 66vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__line > span, .hero__frame, .hero__card, .hero__ring { transform: none; opacity: 1; }
}
