:root {
  --ink: #11192a;
  --navy: #26364d;
  --muted: #667487;
  --paper: #fffdf8;
  --mist: #eef5f7;
  --line: rgba(17, 25, 42, 0.13);
  --red: #de4e47;
  --blue: #0c7891;
  --green: #5d806d;
  --gold: #b88752;
  --shadow: 0 34px 90px rgba(17, 25, 42, 0.16);
  --container: min(1180px, calc(100vw - 40px));
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(17, 25, 42, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 25, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #eef5f7 55%, var(--paper));
  background-size: 78px 78px, 78px 78px, auto;
}

body::selection {
  color: #fff;
  background: var(--red);
}

img,
canvas {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.7vw, 5.1rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(20px, 6vw, 72px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.62));
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.is-scrolled .site-header {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 52px rgba(17, 25, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand img {
  width: 60px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(222, 78, 71, 0.18));
}

.brand span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  padding: 10px 12px;
  color: #5f6c80;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--red);
}

.site-nav .language-switch {
  margin-inline-start: 10px;
  padding-inline: 15px;
  border-inline-start: 1px solid var(--line);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: auto;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.menu-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-lines {
  position: relative;
  font-size: 0;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(7px);
}

.menu-toggle.is-open .menu-lines {
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-lines::before {
  opacity: 0;
}

.menu-toggle.is-open .menu-lines::after {
  transform: rotate(90deg);
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.overline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button.solid {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #bf3d37);
  box-shadow: 0 18px 38px rgba(222, 78, 71, 0.25);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.home-stage,
.page-stage {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 84px;
}

.freight-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.stage-media,
.page-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.03);
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.08)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=80");
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 34% 100%);
  opacity: 0.5;
}

.home-stage::before,
.page-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.95) 42%, rgba(255, 253, 248, 0.62) 78%, rgba(255, 253, 248, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(238, 245, 247, 0.94));
}

.page-stage::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 45%, rgba(255, 253, 248, 0.68) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(238, 245, 247, 0.82));
}

.stage-inner,
.page-inner {
  width: var(--container);
  margin-inline: auto;
  min-height: calc(100svh - 84px);
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  padding: 8vh 0;
}

.stage-inner.narrow {
  max-width: 880px;
}

.stage-inner.split {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.75fr);
  gap: 70px;
  align-items: end;
}

.hero-stage h1 {
  max-width: 8.8ch;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
}

.page-stage h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 5.6vw, 5.95rem);
}

.stage-copy {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 620;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.manifesto-stage {
  background: var(--paper);
}

.manifesto-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.word-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  gap: 0;
  overflow: hidden;
  opacity: 0.12;
  pointer-events: none;
}

.word-wall span {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 700;
  line-height: 0.82;
  white-space: nowrap;
}

.logistics-gallery,
.image-ribbon {
  display: grid;
  gap: 14px;
}

.logistics-gallery {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, minmax(56px, 1fr));
  min-height: clamp(420px, 52vw, 560px);
}

.image-card,
.chapter-photo,
.service-photo,
.client-photo,
.mission-image,
.trust-panel,
.contact-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.image-card::after,
.chapter-photo::after,
.service-photo::after,
.client-photo::after,
.mission-image::after,
.trust-panel::after,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.42), rgba(255, 253, 248, 0.08) 52%, rgba(17, 25, 42, 0.16)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.16), transparent 55%);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.28);
}

.image-air {
  grid-area: 1 / 1 / 4 / 5;
  background-image: url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1600&q=80");
}

.image-sea {
  grid-area: 3 / 3 / 7 / 7;
  background-image: url("https://images.unsplash.com/photo-1524522173746-f628baad3644?auto=format&fit=crop&w=1600&q=80");
}

.image-warehouse {
  grid-area: 4 / 1 / 7 / 4;
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80");
}

.chapter-section {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 42vw) 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(88px, 12vw, 150px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(222, 78, 71, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #eef5f7, #fffdf8);
  background-size: 90px 90px, auto;
}

.chapter-pin {
  position: sticky;
  top: 128px;
  align-self: start;
}

.chapter-pin h2 {
  max-width: 7ch;
}

.chapter-list {
  display: grid;
  gap: clamp(58px, 10vh, 118px);
  padding-top: 5vh;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.66fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 58vh;
  padding: clamp(28px, 5vw, 70px) 0 clamp(28px, 5vw, 70px) clamp(22px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.chapter:nth-child(even) .chapter-photo {
  order: -1;
}

.chapter-photo {
  min-height: clamp(270px, 32vw, 430px);
}

.chapter-prepare {
  background-image: url("https://images.pexels.com/photos/4483608/pexels-photo-4483608.jpeg?auto=compress&cs=tinysrgb&w=1500");
}

.chapter-move {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1500&q=80");
}

.chapter-clear {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1500&q=80");
}

.chapter-control {
  background-image: url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1500&q=80");
}

.chapter span,
.service-scene span,
.client-scene span,
.principle-card span {
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.chapter p,
.service-scene p,
.client-scene p,
.principle-card p,
.contact-row strong {
  max-width: 660px;
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-copy {
  display: grid;
  gap: 26px;
}

.trust-panel {
  min-height: clamp(230px, 32vw, 420px);
  background-image: url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1500&q=80");
}

.trust-media {
  background-image: url("https://images.pexels.com/photos/6169056/pexels-photo-6169056.jpeg?auto=compress&cs=tinysrgb&w=1800");
  opacity: 0.26;
}

.page-stage {
  min-height: 76svh;
}

.page-inner {
  min-height: calc(76svh - 84px);
  padding: 6vh 0;
}

.about-media {
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80");
  opacity: 0.34;
}

.services-media {
  background-image: url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=80");
  opacity: 0.32;
}

.clients-media {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80");
  opacity: 0.3;
}

.philosophy-section,
.service-film,
.client-theatre,
.contact-experience {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 72px);
}

.philosophy-intro {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.image-ribbon {
  grid-template-columns: 1.1fr 0.8fr 0.95fr;
  margin-bottom: clamp(60px, 8vw, 104px);
}

.image-ribbon .image-card {
  min-height: clamp(240px, 28vw, 390px);
}

.image-ribbon .image-card:nth-child(2) {
  transform: translateY(34px);
}

.image-planning {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1500&q=80");
}

.image-handling {
  background-image: url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1500&q=80");
}

.image-distribution {
  background-image: url("https://images.unsplash.com/photo-1506306460327-3164753b74c7?auto=format&fit=crop&w=1500&q=80");
}

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

.principle-card {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  backdrop-filter: blur(16px);
}

.principle-card h3 {
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.mission-panel {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(12, 120, 145, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8, #eef5f7);
  background-size: 80px 80px, auto;
}

.mission-copy {
  max-width: 790px;
}

.mission-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.mission-copy p:not(.overline):not(.signature) {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  font-weight: 620;
}

.mission-image {
  min-height: clamp(380px, 48vw, 640px);
  background-image: url("https://images.pexels.com/photos/4483609/pexels-photo-4483609.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.signature {
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-film {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  background: linear-gradient(180deg, #eef5f7, #fffdf8);
}

.service-scene {
  min-height: 58svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(26px, 4vw, 58px) 0;
}

.service-scene:last-child {
  border-bottom: 1px solid var(--line);
}

.service-scene:nth-child(even) .service-photo {
  order: 2;
}

.service-scene:nth-child(even) .service-copy {
  order: 1;
}

.service-photo {
  min-height: clamp(280px, 34vw, 490px);
}

.service-scene h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 3.9vw, 4.4rem);
}

.service-air {
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80");
}

.service-sea {
  background-image: url("https://images.pexels.com/photos/1427541/pexels-photo-1427541.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.service-road {
  background-image: url("https://images.pexels.com/photos/13008068/pexels-photo-13008068.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.service-customs {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
}

.service-warehouse {
  background-image: url("https://images.pexels.com/photos/4484074/pexels-photo-4484074.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.service-documents {
  background-image: url("https://images.pexels.com/photos/6169133/pexels-photo-6169133.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.client-theatre {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  background: linear-gradient(180deg, #eef5f7, #fffdf8);
}

.client-scene {
  min-height: 56vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  padding: clamp(32px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.client-scene:nth-child(even) .client-photo {
  order: 2;
}

.client-photo {
  min-height: clamp(280px, 34vw, 470px);
}

.client-scene h2 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
}

.client-solmax {
  background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1600&q=80");
}

.client-pegas {
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1600&q=80");
}

.client-atlantic {
  background-image: url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1600&q=80");
}

.contact-experience {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: start;
  padding-top: clamp(114px, 12vw, 150px);
  background: linear-gradient(135deg, #fffdf8, #eef5f7);
}

.contact-visual {
  min-height: clamp(300px, 43vw, 560px);
  background-image: url("https://images.pexels.com/photos/26569137/pexels-photo-26569137.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.contact-copy {
  align-self: start;
}

.contact-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(2.8rem, 4.8vw, 5.35rem);
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-details {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-form h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

form {
  display: grid;
  gap: 15px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(12, 120, 145, 0.12);
}

.field-error {
  border-color: var(--red);
  background: #fff7f5;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.hf-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Noto Kufi Arabic", sans-serif;
  line-height: 1.32;
  text-wrap: pretty;
}

html[dir="rtl"] h1 {
  font-size: clamp(3rem, 5.8vw, 6.2rem);
}

html[dir="rtl"] h2 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
}

html[dir="rtl"] h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.85rem);
}

html[dir="rtl"] .hero-stage h1 {
  max-width: 13.5ch;
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  line-height: 1.25;
}

html[dir="rtl"] .page-stage h1,
html[dir="rtl"] .contact-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 4.8vw, 5.1rem);
}

html[dir="rtl"] .brand span,
html[dir="rtl"] .site-nav a,
html[dir="rtl"] .menu-label,
html[dir="rtl"] .overline,
html[dir="rtl"] .button,
html[dir="rtl"] .signature,
html[dir="rtl"] .chapter span,
html[dir="rtl"] .service-scene span,
html[dir="rtl"] .client-scene span,
html[dir="rtl"] .principle-card span,
html[dir="rtl"] .contact-row span,
html[dir="rtl"] label,
html[dir="rtl"] .site-footer p {
  font-family: "Noto Sans Arabic", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .site-nav a {
  font-size: 0.78rem;
}

html[dir="rtl"] .brand span {
  font-size: 0.88rem;
}

html[dir="rtl"] .hero-media {
  clip-path: polygon(0 0, 52% 0, 66% 100%, 0 100%);
}

html[dir="rtl"] .home-stage::before {
  background:
    linear-gradient(270deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.95) 42%, rgba(255, 253, 248, 0.62) 78%, rgba(255, 253, 248, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(238, 245, 247, 0.94));
}

html[dir="rtl"] .page-stage::before {
  background:
    linear-gradient(270deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 45%, rgba(255, 253, 248, 0.68) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(238, 245, 247, 0.82));
}

html[dir="rtl"] .stage-copy,
html[dir="rtl"] .chapter p,
html[dir="rtl"] .service-scene p,
html[dir="rtl"] .client-scene p,
html[dir="rtl"] .principle-card p,
html[dir="rtl"] .mission-copy p:not(.overline):not(.signature) {
  line-height: 1.9;
}

html[dir="rtl"] .chapter {
  padding: clamp(28px, 5vw, 70px) clamp(22px, 4vw, 56px) clamp(28px, 5vw, 70px) 0;
  border-right: 1px solid var(--line);
  border-left: 0;
}

html[dir="rtl"] .principle-card h3,
html[dir="rtl"] .mission-copy h2,
html[dir="rtl"] .service-scene h2,
html[dir="rtl"] .client-scene h2,
html[dir="rtl"] .chapter-pin h2 {
  max-width: 15ch;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  font-family: "Noto Sans Arabic", sans-serif;
  text-align: right;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] {
  direction: ltr;
}

html[dir="rtl"] .word-wall span,
html[dir="rtl"] .footer-brand span {
  font-family: "Noto Kufi Arabic", sans-serif;
}

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #344a63);
  background-size: 70px 70px, 70px 70px, auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 64px;
  height: 50px;
  object-fit: contain;
}

.footer-brand span {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: #dce8ef;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-meta {
  display: grid;
  gap: 5px;
  text-align: end;
}

.site-footer .footer-copyright,
.site-footer .footer-credit {
  color: rgba(220, 232, 239, 0.74);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: none;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.cf-turnstile {
  min-height: 65px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    height: 92px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .language-switch {
    margin-inline-start: 0;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .home-stage,
  .page-stage {
    padding-top: 92px;
  }

  .hero-media {
    clip-path: none;
    opacity: 0.22;
  }

  .stage-inner.split,
  .manifesto-grid,
  .chapter-section,
  .chapter,
  .service-scene,
  .client-scene,
  .mission-panel,
  .contact-experience {
    grid-template-columns: 1fr;
  }

  .chapter-section {
    min-height: auto;
  }

  .chapter-pin {
    position: relative;
    top: auto;
  }

  .chapter-pin h2 {
    max-width: 12ch;
  }

  .chapter-list {
    gap: 36px;
    padding-top: 0;
  }

  .chapter {
    min-height: auto;
    padding: 30px 0 30px 24px;
  }

  .chapter:nth-child(even) .chapter-photo,
  .service-scene:nth-child(even) .service-photo,
  .client-scene:nth-child(even) .client-photo {
    order: 0;
  }

  .service-scene {
    min-height: auto;
    padding: 46px 0;
  }

  .client-scene {
    min-height: auto;
    padding: 46px 0;
  }

  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .mission-image,
  .contact-visual {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 50px;
    height: 38px;
  }

  .brand span {
    max-width: 116px;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(2.65rem, 10.5vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.15rem, 8.8vw, 3.1rem);
  }

  h3 {
    font-size: clamp(1.75rem, 7.8vw, 2.55rem);
  }

  .hero-stage h1 {
    font-size: clamp(3.05rem, 13vw, 4.6rem);
  }

  .page-stage h1,
  .contact-copy h1 {
    font-size: clamp(2.6rem, 10.5vw, 3.75rem);
  }

  html[dir="rtl"] .hero-stage h1 {
    font-size: clamp(2.75rem, 11.5vw, 4rem);
  }

  html[dir="rtl"] .page-stage h1,
  html[dir="rtl"] .contact-copy h1 {
    font-size: clamp(2.35rem, 9vw, 3.35rem);
  }

  html[dir="rtl"] h2 {
    font-size: clamp(2rem, 7.8vw, 2.8rem);
  }

  .stage-inner,
  .page-inner {
    min-height: auto;
    padding: 76px 0;
  }

  .home-stage,
  .page-stage {
    min-height: auto;
  }

  .stage-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-meta {
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .chapter-section,
  .philosophy-section,
  .service-film,
  .client-theatre,
  .contact-experience,
  .mission-panel {
    padding-inline: 14px;
  }

  html[dir="rtl"] .chapter {
    padding: 30px 24px 30px 0;
  }

  .logistics-gallery {
    min-height: 520px;
  }

  .image-ribbon {
    grid-template-columns: 1fr;
  }

  .image-ribbon .image-card:nth-child(2) {
    transform: none;
  }

  .principle-card,
  .service-scene,
  .client-scene,
  .contact-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-scene {
    gap: 12px;
  }

  .contact-visual {
    min-height: 360px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
