:root {
  --ink: #08090b;
  --ink-soft: #101216;
  --paper: #eeeae1;
  --paper-muted: #bcb8ae;
  --line: rgba(238, 234, 225, 0.18);
  --ember: #ff6a2b;
  --ember-bright: #ff8750;
  --blue: #236dff;
  --max-width: 1420px;
  --section-gutter: clamp(22px, 2.2vw, 36px);
  --header-height: 94px;
  --font-latin: "Manrope", Arial, sans-serif;
  --font-arabic: "Noto Sans Arabic", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ember) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-arabic);
  -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
  font-family: var(--font-latin);
}

html[dir="rtl"] body {
  text-align: right;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--ember);
  color: var(--ink);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(35, 109, 255, 0.085), transparent 67%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

.page-shell {
  width: min(var(--max-width), calc(100% - 8vw));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 90;
  direction: ltr;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 4vw;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

html[dir="rtl"] .desktop-nav a,
html[dir="rtl"] .mobile-menu a {
  direction: rtl;
}

html[dir="rtl"] .desktop-nav {
  direction: rtl;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(8, 9, 11, 0.87);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 234, 225, 0.7);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -1px;
  transform: rotate(45deg);
}

.brand-mark::first-letter {
  letter-spacing: 0;
}

.brand-mark {
  color: transparent;
}

.brand-mark::after {
  content: "MM";
  color: var(--paper);
  transform: rotate(-45deg);
}

.brand-name {
  font-family: var(--font-latin);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.text-link,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.text-link::after,
.site-footer a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  direction: ltr;
  gap: 20px;
}

.language-switcher {
  display: flex;
  direction: ltr;
  padding: 4px;
  border: 1px solid rgba(238, 234, 225, 0.28);
  border-radius: 999px;
}

.lang-button {
  width: 36px;
  height: 28px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: rgba(238, 234, 225, 0.62);
  cursor: pointer;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-button.active {
  background: var(--paper);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--paper);
  transition: transform 0.3s ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  overflow: hidden;
  background: #050608;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/majid-mehraban-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.74) 34%, rgba(5, 6, 8, 0.1) 70%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.9) 0%, transparent 34%, rgba(5, 6, 8, 0.22) 100%);
}

html[dir="rtl"] .hero::after {
  background:
    linear-gradient(270deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.74) 34%, rgba(5, 6, 8, 0.1) 70%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.9) 0%, transparent 34%, rgba(5, 6, 8, 0.22) 100%);
}

.hero-sweep {
  position: absolute;
  z-index: -1;
  top: 19%;
  inset-inline-end: 8%;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 135, 80, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 106, 43, 0.06);
}

.hero-sweep::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(238, 234, 225, 0.12);
  border-radius: inherit;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(760px, 66%);
}

.eyebrow,
.signature-overline,
.signature-meta,
.section-index,
.proof-meta,
.manifesto-kicker {
  font-family: var(--font-latin);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(238, 234, 225, 0.78);
  font-size: 12px;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ember);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--ember);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(41px, 5vw, 83px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

html[dir="rtl"] .hero h1 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--ember-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

html[dir="rtl"] .hero h1 em {
  font-family: var(--font-arabic);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.hero-copy > p {
  max-width: 630px;
  margin: 34px 0 0;
  color: rgba(238, 234, 225, 0.76);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.9;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

html[dir="rtl"] .button svg {
  transform: scaleX(-1);
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--ember);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 15%;
  width: min(320px, 25vw);
  direction: ltr;
}

html[dir="rtl"] .hero-signature {
  right: auto;
  left: 0;
}

.signature-overline,
.signature-meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.signature-line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 13px 0;
  background: linear-gradient(90deg, var(--ember), rgba(238, 234, 225, 0.18));
}

.signature-meta {
  color: rgba(238, 234, 225, 0.58);
}

.hero-footer {
  position: absolute;
  inset-inline: 0;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 234, 225, 0.45);
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.scroll-cue {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 14px;
}

.scroll-line {
  position: relative;
  width: 66px;
  height: 1px;
  overflow: hidden;
  background: rgba(238, 234, 225, 0.22);
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateX(-100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  padding: 19px 0;
  background: var(--ember);
  color: var(--ink);
  direction: ltr;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-latin);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 800;
  letter-spacing: 0.16em;
  animation: marquee 28s linear infinite;
}

.marquee-track i {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  padding-top: clamp(110px, 13vw, 200px);
  padding-bottom: clamp(110px, 13vw, 200px);
}

.about,
.work,
.contact,
.expertise > .page-shell,
.manifesto-content {
  padding-inline: var(--section-gutter);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 0.45em;
  color: var(--ember);
  font-size: 12px;
  font-weight: 700;
}

.section-number {
  direction: ltr;
  flex: 0 0 auto;
  font-family: var(--font-latin);
  letter-spacing: 0.13em;
}

.section-divider {
  direction: ltr;
  font-family: var(--font-latin);
}

.about {
  background:
    radial-gradient(circle at 85% 30%, rgba(35, 109, 255, 0.08), transparent 25%),
    var(--ink);
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(90px, 9vw, 140px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: clamp(45px, 7vw, 105px);
  margin-top: clamp(42px, 4vw, 58px);
}

html[dir="rtl"] .about-grid {
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1.45fr);
}

html[dir="rtl"] .display-title {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .about-copy {
  grid-column: 1;
  grid-row: 1;
}

.display-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

html[dir="rtl"] .display-title {
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.display-title span {
  display: block;
}

.display-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 234, 225, 0.42);
}

.about-copy {
  align-self: end;
  padding-bottom: 8px;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-copy .lead {
  color: var(--paper);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.territories {
  display: flex;
  direction: ltr;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.territories span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: rgba(238, 234, 225, 0.62);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-affiliation {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--paper-muted);
  font-size: 12px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.brand-affiliation strong {
  color: var(--paper);
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.brand-affiliation:hover {
  border-color: var(--ember);
  color: var(--ember-bright);
}

.expertise {
  background: var(--paper);
  color: var(--ink);
  padding-top: clamp(85px, 8vw, 125px);
  padding-bottom: clamp(85px, 8vw, 125px);
}

.expertise .section-index {
  color: #a83c14;
}

.expertise .section-heading {
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1.65fr);
  margin-bottom: clamp(42px, 5vw, 68px);
}

.expertise .section-heading h2 {
  max-width: none;
  font-size: clamp(27px, 2.45vw, 40px);
  line-height: 1.2;
  white-space: nowrap;
}

html[dir="rtl"] .expertise .section-heading h2 {
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(29px, 3.5vw, 55px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

html[dir="rtl"] .section-heading h2 {
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.service-list {
  border-top: 1px solid rgba(8, 9, 11, 0.23);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(70px, 0.25fr) minmax(0, 1.75fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding-inline: clamp(20px, 2vw, 32px);
  border-bottom: 1px solid rgba(8, 9, 11, 0.23);
  transition: padding 0.35s ease, background 0.35s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ember);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service:hover::before {
  transform: scaleY(1);
}

.service > * {
  position: relative;
  z-index: 1;
}

.service-number {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
}

.service h3 {
  margin: 0 0 7px;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 600;
}

.service p {
  margin: 0;
  color: rgba(8, 9, 11, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 9, 11, 0.32);
  border-radius: 50%;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

html[dir="rtl"] .service-icon svg {
  transform: scaleX(-1);
}

.service:hover .service-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--paper);
}

.work {
  background: var(--ink-soft);
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(90px, 9vw, 140px);
}

.work-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(44px, 5vw, 68px);
}

.work-heading h2 {
  margin-top: 10px;
  font-size: clamp(27px, 2.8vw, 44px);
}

.work-heading .button {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 12px;
}

.button-ghost {
  align-self: end;
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: var(--ember);
  color: var(--ember-bright);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0d10;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.proof-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(255, 106, 43, 0.7);
}

.proof-featured {
  grid-row: span 2;
}

.proof-art {
  position: relative;
  min-height: 275px;
  overflow: hidden;
}

.proof-featured .proof-art {
  min-height: 520px;
}

.proof-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.65), transparent 48%);
}

.proof-art-emrah {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 56% 46%, rgba(255, 170, 110, 0.43), transparent 5%),
    radial-gradient(circle at 50% 45%, rgba(255, 106, 43, 0.12), transparent 37%),
    repeating-linear-gradient(116deg, transparent 0 37px, rgba(255, 255, 255, 0.035) 38px 39px),
    linear-gradient(145deg, #191c28, #09090c 64%);
}

.proof-art-emrah::before {
  content: "";
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 106, 43, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 106, 43, 0.1), inset 0 0 60px rgba(35, 109, 255, 0.06);
}

.poster-type {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: ltr;
  font-family: var(--font-latin);
}

.poster-type small {
  font-size: clamp(11px, 1.3vw, 15px);
  letter-spacing: 0.45em;
}

.poster-type strong {
  color: transparent;
  font-size: clamp(170px, 20vw, 320px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.12em;
  -webkit-text-stroke: 1px var(--paper);
}

.poster-type span {
  color: var(--ember-bright);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.reel-badge {
  position: absolute;
  z-index: 2;
  inset-inline-start: 20px;
  bottom: 20px;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(8, 9, 11, 0.7);
  border: 1px solid rgba(238, 234, 225, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.play-icon {
  color: var(--ember);
  font-size: 9px;
}

.proof-art-stage {
  display: grid;
  place-items: center;
  background:
    linear-gradient(116deg, transparent 43%, rgba(35, 109, 255, 0.23) 44%, transparent 47%),
    linear-gradient(72deg, transparent 40%, rgba(255, 106, 43, 0.28) 41%, transparent 44%),
    radial-gradient(ellipse at 50% 90%, rgba(255, 106, 43, 0.34), transparent 35%),
    #07080a;
}

.giant-word {
  direction: ltr;
  color: transparent;
  font-family: var(--font-latin);
  font-size: clamp(100px, 14vw, 190px);
  font-weight: 800;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(238, 234, 225, 0.52);
  transform: translateX(-10px);
}

.proof-art-route {
  background: linear-gradient(145deg, #15203d, #0b0c11 72%);
}

.proof-art-route svg {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  fill: var(--ember);
  stroke: var(--paper);
  stroke-width: 1.5;
  stroke-dasharray: 7 7;
}

.route-labels {
  position: absolute;
  inset: 0;
  display: flex;
  direction: ltr;
  justify-content: space-between;
  align-items: center;
  padding: 10% 12%;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route-labels span:nth-child(1) { align-self: flex-end; }
.route-labels span:nth-child(2) { align-self: center; }
.route-labels span:nth-child(3) { align-self: flex-start; }

.proof-copy {
  position: relative;
  z-index: 3;
  padding: 22px 24px 25px;
}

.proof-meta {
  display: flex;
  justify-content: space-between;
  color: var(--ember-bright);
  font-size: 10px;
  font-weight: 700;
}

.proof-copy h3 {
  margin: 14px 0 9px;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 600;
}

.proof-copy p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.8;
}

.proof-note {
  margin: 26px 0 0;
  color: rgba(238, 234, 225, 0.43);
  font-size: 13px;
}

.instagram-wall {
  margin-top: clamp(62px, 7vw, 95px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.instagram-wall-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.instagram-handle,
.instagram-wall-heading > a,
.media-type,
.instagram-caption span {
  font-family: var(--font-latin);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.instagram-handle {
  display: block;
  direction: ltr;
  unicode-bidi: isolate;
  margin-bottom: 12px;
  color: var(--ember-bright);
  font-size: 11px;
  font-weight: 700;
}

.instagram-wall-heading h3 {
  margin: 0;
  font-size: clamp(23px, 2.1vw, 33px);
  font-weight: 600;
}

.instagram-wall-heading > a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(238, 234, 225, 0.45);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.instagram-wall-heading > a:hover {
  color: var(--ember-bright);
  border-color: var(--ember);
}

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

.instagram-post {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #17191e;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.05) 58%);
}

.instagram-post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.instagram-post:hover img {
  transform: scale(1.045);
}

.media-type {
  position: absolute;
  z-index: 2;
  top: 16px;
  inset-inline-start: 16px;
  padding: 7px 9px;
  background: rgba(8, 9, 11, 0.76);
  border: 1px solid rgba(238, 234, 225, 0.26);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.instagram-caption {
  position: absolute;
  z-index: 2;
  inset-inline: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.instagram-caption strong {
  max-width: 280px;
  font-size: 16px;
  line-height: 1.7;
}

.instagram-caption span {
  flex: 0 0 auto;
  color: var(--ember-bright);
  font-size: 10px;
  font-weight: 700;
}

.instagram-wall-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.instagram-wall-cta .button {
  min-height: 48px;
  padding-inline: 22px;
}

.manifesto {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0b0e;
}

.manifesto-backdrop {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 52% 48%, transparent 0 16%, rgba(255, 106, 43, 0.16) 16.2% 16.5%, transparent 16.8% 27%, rgba(238, 234, 225, 0.09) 27.2% 27.4%, transparent 27.7%),
    conic-gradient(from 110deg at 50% 50%, transparent, rgba(35, 109, 255, 0.1), transparent 24%, rgba(255, 106, 43, 0.07), transparent 52%);
  animation: slowSpin 34s linear infinite;
}

.manifesto-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-kicker {
  color: var(--ember-bright);
  font-size: 11px;
  font-weight: 700;
}

.manifesto-statement {
  max-width: 1050px;
  margin: 48px auto;
  font-size: clamp(24px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

html[dir="ltr"] .manifesto-statement {
  line-height: 1.25;
}

.manifesto-name {
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.contact {
  min-height: 680px;
  padding-top: clamp(85px, 8vw, 125px);
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-top p {
  max-width: 430px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
  margin: auto 0;
  padding: clamp(62px, 6vw, 82px) 0;
}

.contact-main h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

html[dir="rtl"] .contact-main h2 {
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.contact-options {
  border-top: 1px solid var(--line);
}

.contact-option {
  min-height: 96px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, padding 0.3s ease;
}

.contact-option:hover {
  padding-inline: 14px;
  color: var(--ember-bright);
}

.contact-option-label {
  color: rgba(238, 234, 225, 0.5);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-option strong {
  overflow-wrap: anywhere;
  font-family: var(--font-latin);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
}

.contact-option > span:last-child {
  color: rgba(238, 234, 225, 0.58);
  font-size: 13px;
}

.contact-option-primary strong {
  color: var(--ember-bright);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(238, 234, 225, 0.52);
  font-family: var(--font-latin);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.site-footer a {
  justify-self: center;
}

.site-footer > span {
  justify-self: end;
}

.footer-brand {
  color: var(--paper);
  font-weight: 700;
}

.footer-credit {
  white-space: nowrap;
}

.footer-credit a {
  color: var(--paper);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.45em;
  white-space: nowrap;
}

.copyright-mark {
  direction: ltr;
  white-space: nowrap;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-index,
html[dir="rtl"] .manifesto-kicker,
html[dir="rtl"] .instagram-wall-heading > a,
html[dir="rtl"] .media-type {
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

html[dir="rtl"] .section-index {
  justify-content: flex-start;
}

html[dir="rtl"] .signature-meta,
html[dir="rtl"] .scroll-cue,
html[dir="rtl"] .territories,
html[dir="rtl"] .poster-type {
  direction: rtl;
}

html[dir="rtl"] .signature-meta,
html[dir="rtl"] .marquee-track,
html[dir="rtl"] .territories,
html[dir="rtl"] .poster-type small,
html[dir="rtl"] .poster-type > span {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

html[dir="rtl"] .signature-overline,
html[dir="rtl"] .manifesto-name,
html[dir="rtl"] .footer-brand {
  direction: rtl;
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .work-heading h2,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .proof-copy,
html[dir="rtl"] .instagram-wall-heading,
html[dir="rtl"] .instagram-caption strong,
html[dir="rtl"] .contact-top,
html[dir="rtl"] .contact-main h2 {
  text-align: right;
}

html[dir="rtl"] .proof-meta {
  direction: rtl;
  font-family: var(--font-arabic);
  text-transform: none;
  letter-spacing: 0;
}

html[dir="rtl"] .proof-meta span:last-child,
html[dir="rtl"] .instagram-caption span {
  direction: ltr;
  font-family: var(--font-latin);
  letter-spacing: 0.12em;
}

html[dir="rtl"] .contact-option strong {
  text-align: right;
}

html[dir="rtl"] .contact-option > span:last-child {
  text-align: left;
}

html[dir="rtl"] .site-footer {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

html[dir="rtl"] .site-footer > a,
html[dir="rtl"] .footer-credit {
  direction: ltr;
  font-family: var(--font-latin);
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@keyframes heroBreath {
  from { transform: scale(1.035); }
  to { transform: scale(1.085); }
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  :root { --header-height: 80px; }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav { display: none; }
  .menu-button { display: block; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: rgba(8, 9, 11, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-menu a {
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 600;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
  }

  .site-header.menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero-copy { width: min(720px, 82%); }
  .hero-signature { width: 250px; }

  .about-grid,
  html[dir="rtl"] .about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  html[dir="rtl"] .display-title,
  html[dir="rtl"] .about-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .proof-featured .proof-art {
    min-height: 460px;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-main h2 { font-size: clamp(36px, 6vw, 58px); }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-post {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 70px;
    --section-gutter: 16px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .site-header { padding-inline: 20px; }
  .brand-name { display: block; }
  .brand-mark { width: 37px; height: 37px; }
  .header-actions { gap: 10px; }
  .language-switcher { padding: 3px; }
  .lang-button { width: 32px; height: 28px; font-size: 10px; }
  .menu-button { width: 37px; height: 37px; }

  .hero {
    min-height: 760px;
    max-height: 920px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero::after,
  html[dir="rtl"] .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.32)),
      linear-gradient(0deg, rgba(5, 6, 8, 0.96) 0%, transparent 50%);
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 145px;
  }

  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 25px; font-size: 11px; line-height: 1.6; }
  .hero h1 { font-size: clamp(35px, 11vw, 52px); }
  html[dir="rtl"] .hero h1 { font-size: clamp(34px, 10vw, 50px); }
  .hero-copy > p { margin-top: 24px; font-size: 14px; line-height: 1.85; }
  .hero-cta-row { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 30px; }
  .button { min-height: 50px; padding: 0 20px; }
  .hero-signature { display: none; }
  .hero-footer { bottom: 22px; }
  .hero-footer > span { display: none; }
  .scroll-cue { margin-inline-start: auto; }

  .section { padding-block: 100px; }
  .about.section { padding-block: 72px; }
  .about-grid { margin-top: 32px; gap: 32px; }
  .display-title { font-size: clamp(30px, 9vw, 44px); }
  .about-copy p { font-size: 14px; line-height: 1.8; }
  .about-copy .lead { font-size: 16px; line-height: 1.65; }
  .territories { margin-top: 24px; }

  .section-heading,
  .work-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 52px;
  }

  .section-heading h2 { font-size: 30px; }

  .work.section { padding-block: 76px; }

  .work-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .work-heading h2 {
    margin-top: 7px;
    font-size: 27px;
  }

  .work-heading .button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .service {
    grid-template-columns: 34px 1fr;
    min-height: 150px;
    padding: 26px 0;
  }

  .service-icon { display: none; }
  .service h3 { font-size: 23px; }
  .service p { font-size: 14px; line-height: 1.75; }

  .expertise.section {
    padding-block: 72px;
  }

  .expertise .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .expertise .section-heading h2 {
    font-size: clamp(16px, 4.5vw, 25px);
    white-space: nowrap;
  }

  html[dir="ltr"] .expertise .section-heading h2 {
    letter-spacing: -0.035em;
  }

  .expertise .service {
    min-height: 0;
    gap: 14px;
    padding: 20px 14px;
  }

  .expertise .service h3 {
    font-size: 20px;
  }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-featured { grid-column: auto; }
  .proof-art,
  .proof-featured .proof-art { min-height: 330px; }
  .poster-type strong { font-size: 160px; }
  .proof-copy { padding: 20px; }
  .proof-copy h3 { font-size: 20px; }
  .instagram-wall { margin-top: 52px; padding-top: 24px; }

  .manifesto { min-height: 650px; }
  .manifesto-statement { font-size: 24px; margin-block: 35px; }

  .contact {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .contact-top { flex-direction: column; gap: 18px; }
  .contact-main { gap: 38px; padding: 52px 0; }
  .contact-main h2 { font-size: clamp(34px, 10vw, 44px); }

  .contact-option {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 18px 0;
  }

  .contact-option > span:last-child {
    margin-top: 6px;
  }

  html[dir="rtl"] .contact-option > span:last-child {
    text-align: right;
  }

  .instagram-wall-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-post {
    min-height: 300px;
  }

  .instagram-wall-cta {
    margin-top: 22px;
  }

  .instagram-wall-cta .button {
    width: 100%;
  }

  .instagram-caption {
    inset-inline: 14px;
    bottom: 14px;
  }

  .instagram-caption strong {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .site-footer a,
  .site-footer > span { justify-self: start; }
}

@media (max-width: 360px) {
  .brand { gap: 8px; }
  .brand-name { font-size: 9px; }
  .header-actions { gap: 7px; }
  .lang-button { width: 27px; }
}

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

@media print {
  .site-header,
  .noise,
  .cursor-glow {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
