/*
 * Fire CMA — Radical Transformation
 * Cinematic one-page system. No visual builder or runtime dependency required.
 */

:root {
  --fire-red: #fc0b0a;
  --fire-orange: #f95c0d;
  --fire-ink: #140000;
  --fire-charcoal: #191919;
  --fire-paper: #fff5f5;
  --fire-white: #ffffff;
  --fire-muted: #b8a9a9;
  --fire-line: rgba(255, 245, 245, 0.16);
  --fire-line-dark: rgba(20, 0, 0, 0.14);
  --container: min(1280px, calc(100vw - 64px));
  --section-space: clamp(96px, 12vw, 190px);
  --header-h: 88px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --ease-fire: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-deep: 0 40px 100px rgba(20, 0, 0, 0.28);
  --font-ar: "Vazirmatn", Tahoma, Arial, sans-serif;
  --font-en: "Acumin Variable Concept", "Inter Tight", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--fire-ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--fire-ink);
  color: var(--fire-paper);
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

html[dir="ltr"] body {
  font-family: var(--font-en);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  color: var(--fire-paper);
  background: var(--fire-red);
}

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

img {
  height: auto;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
h4,
strong,
b {
  font-weight: 800;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  isolation: isolate;
}

.section--paper {
  color: var(--fire-ink);
  background: var(--fire-paper);
}

.section--ink {
  color: var(--fire-paper);
  background: var(--fire-ink);
}

.section--red {
  color: var(--fire-paper);
  background: var(--fire-red);
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 16px;
  inset-inline-start: 16px;
  padding: 12px 18px;
  color: var(--fire-paper);
  background: var(--fire-ink);
  border-radius: 999px;
  outline: 3px solid var(--fire-paper);
}

:focus-visible {
  outline: 3px solid var(--fire-orange);
  outline-offset: 4px;
}

/* Loader */
.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 24px;
  color: var(--fire-paper);
  background: var(--fire-ink);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s var(--ease-out);
  animation: loader-failsafe 0.01s 5s forwards;
}

@keyframes loader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.site-loader.is-hidden {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__mark {
  position: relative;
  width: 82px;
  height: 82px;
  animation: loader-rotate 2.4s linear infinite;
}

.site-loader__mark span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 78px;
  background: var(--fire-red);
  border-radius: 999px;
}

.site-loader__mark span:nth-child(2) {
  rotate: 60deg;
}

.site-loader__mark span:nth-child(3) {
  rotate: 120deg;
}

.site-loader p {
  margin: 0;
  font: 900 13px/1 var(--font-en);
  letter-spacing: 0.48em;
  text-align: center;
}

@keyframes loader-rotate {
  to { rotate: 360deg; }
}

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--fire-paper);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

html[dir="rtl"] .scroll-progress span {
  transform-origin: right center;
}

.pointer-glow {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 11, 10, 0.12), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.pointer-glow.is-visible {
  opacity: 1;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  color: var(--fire-paper);
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(20, 0, 0, 0.78);
  border-color: rgba(255, 245, 245, 0.11);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header__inner {
  width: min(1440px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.site-logo {
  width: 174px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

html[dir="rtl"] .site-logo {
  object-position: right center;
}

.site-logo-lockup {
  --logo-color: var(--fire-paper);
  display: inline-flex;
  direction: ltr;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-width: 162px;
  height: 56px;
  color: var(--logo-color);
  line-height: 1;
}

.site-logo-lockup--dark {
  --logo-color: var(--fire-ink);
}

.site-logo-lockup--red {
  --logo-color: var(--fire-red);
}

.site-logo-lockup__mark {
  display: block;
  width: 46px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-logo-lockup__type {
  display: grid;
  align-content: center;
  gap: 2px;
  white-space: nowrap;
}

.site-logo-lockup__type strong {
  color: currentColor;
  font: 900 27px/0.9 var(--font-en);
  letter-spacing: 0.13em;
}

.site-logo-lockup__type small {
  color: currentColor;
  font: 700 7px/1 var(--font-en);
  letter-spacing: 0.19em;
  opacity: 0.88;
}

.site-logo-fallback {
  font: 900 29px/1 var(--font-en);
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 245, 245, 0.7);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
}

html[dir="ltr"] .desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -9px;
  height: 2px;
  background: var(--fire-paper);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--fire-paper);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 4px;
}

.language-switch span {
  font: 800 13px/1 var(--font-en);
}

.language-switch small {
  color: rgba(255, 245, 245, 0.58);
  font-size: 10px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  color: var(--fire-paper);
  background: var(--fire-red);
  transform: translateY(-2px);
}

.header-cta svg,
.text-link svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px;
  color: var(--fire-paper);
  background: transparent;
  border: 1px solid rgba(255, 245, 245, 0.3);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg,
.icon-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.mobile-menu {
  position: fixed;
  z-index: 1600;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: min(480px, 92vw);
  padding: 28px clamp(24px, 6vw, 48px) 34px;
  color: var(--fire-ink);
  background: var(--fire-paper);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.6s var(--ease-out);
  overflow-y: auto;
}

html[dir="rtl"] .mobile-menu__panel {
  transform: translateX(-110%);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--fire-line-dark);
}

.mobile-menu__top .site-logo {
  width: 142px;
}

.mobile-menu__top .site-logo-lockup {
  height: 52px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 13px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-menu nav {
  padding-block: 42px;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--fire-line-dark);
}

.mobile-menu nav small {
  color: var(--fire-red);
  font: 700 10px/1 var(--font-en);
}

.mobile-menu nav span {
  font-size: clamp(27px, 8vw, 44px);
  font-weight: 800;
  line-height: 1.15;
}

.mobile-menu__footer {
  margin-top: auto;
  display: grid;
  gap: 22px;
}

.mobile-menu__footer > a {
  font-family: var(--font-en);
  font-weight: 700;
}

/* Shared UI */
.button {
  --button-bg: var(--fire-red);
  --button-fg: var(--fire-paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 28px;
  color: var(--button-fg);
  background: var(--button-bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, color 0.35s ease, background-color 0.35s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.24), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
}

html[dir="rtl"] .button::before {
  transform: translateX(120%);
}

.button:hover::before {
  transform: translateX(120%);
}

html[dir="rtl"] .button:hover::before {
  transform: translateX(-120%);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 0, 0, 0.22);
}

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

.button--light {
  --button-bg: var(--fire-paper);
  --button-fg: var(--fire-ink);
}

.button--ink {
  --button-bg: var(--fire-ink);
  --button-fg: var(--fire-paper);
}

.button--red {
  --button-bg: var(--fire-red);
  --button-fg: var(--fire-paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 245, 245, 0.75);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.text-link:hover {
  color: var(--fire-paper);
}

.section-heading {
  max-width: 800px;
}

.section-heading--wide {
  max-width: 980px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--fire-red);
  font: 800 11px/1 var(--font-en);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6.6vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

html[dir="rtl"] .section-title {
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(20, 0, 0, 0.68);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.85;
}

.section--ink .section-copy,
.section--red .section-copy,
.section-heading--light .section-copy {
  color: rgba(255, 245, 245, 0.66);
}

.section--ink .section-kicker,
.section--red .section-kicker,
.section-heading--light .section-kicker {
  color: var(--fire-paper);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 44px;
  color: var(--fire-paper);
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 191, 170, 0.22), transparent 28%),
    linear-gradient(135deg, #ff1514 0%, var(--fire-red) 52%, #d90000 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 0, 0, 0.08), transparent 55%, rgba(20, 0, 0, 0.12));
}

.hero__embers,
.hero__noise,
.hero__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__embers {
  z-index: -1;
}

.hero__noise {
  z-index: 1;
  opacity: 0.19;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.8) 0.6px, transparent 0.8px),
    radial-gradient(rgba(20, 0, 0, 0.6) 0.5px, transparent 0.7px);
  background-size: 8px 8px, 11px 11px;
  background-position: 0 0, 3px 4px;
  mix-blend-mode: soft-light;
}

.hero__rings {
  z-index: -1;
  inset-inline-start: 48%;
  width: 58vw;
  height: 58vw;
  top: 48%;
  transform: translateY(-50%);
}

.hero__rings i {
  position: absolute;
  inset: 50%;
  width: calc(100% - var(--ring-space, 0px));
  aspect-ratio: 1;
  border: 1px solid rgba(255, 245, 245, 0.14);
  border-radius: 50%;
  translate: -50% -50%;
  animation: ring-breathe 8s ease-in-out infinite alternate;
}

.hero__rings i:nth-child(2) { --ring-space: 130px; animation-delay: -2s; }
.hero__rings i:nth-child(3) { --ring-space: 260px; animation-delay: -4s; }
.hero__rings i:nth-child(4) { --ring-space: 390px; animation-delay: -6s; }

@keyframes ring-breathe {
  from { scale: 0.96; opacity: 0.52; }
  to { scale: 1.03; opacity: 1; }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
  min-height: calc(100svh - var(--header-h) - 160px);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: 30px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font: 700 11px/1 var(--font-en);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.hero__title {
  position: relative;
  max-width: 890px;
  margin: 0;
  font-size: clamp(72px, 9.9vw, 150px);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

html[dir="rtl"] .hero__title {
  max-width: 820px;
  font-size: clamp(62px, 8.8vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 245, 245, 0.78);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.8;
}

html[dir="ltr"] .hero__lead {
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero__orb {
  position: relative;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 245, 245, 0.26);
  box-shadow: inset 0 0 0 16px rgba(255, 245, 245, 0.03), 0 60px 120px rgba(70, 0, 0, 0.32);
  will-change: transform;
}

.hero__orb-image {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  border-radius: 50%;
  background: #b70000;
}

.hero__orb-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 0, 0, 0.44));
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.035;
  transition: scale 1.4s var(--ease-out);
}

.hero__orb:hover .hero__image {
  scale: 1.09;
}

.hero__orb-glow {
  position: absolute;
  z-index: -1;
  inset: 12%;
  background: rgba(255, 245, 245, 0.36);
  filter: blur(80px);
  border-radius: 50%;
}

.hero__stamp {
  position: absolute;
  right: -14px;
  bottom: 42px;
  width: 140px;
  aspect-ratio: 1;
  color: var(--fire-paper);
  animation: stamp-spin 20s linear infinite;
}

html[dir="rtl"] .hero__stamp {
  right: auto;
  left: -14px;
}

.hero__stamp svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero__stamp text {
  fill: currentColor;
  font: 700 9px/1 var(--font-en);
  letter-spacing: 0.16em;
}

@keyframes stamp-spin { to { rotate: 360deg; } }

.hero__meta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 245, 245, 0.26);
}

.hero__meta > div {
  display: grid;
  gap: 4px;
}

.hero__meta small {
  color: rgba(255, 245, 245, 0.58);
  font: 700 9px/1 var(--font-en);
  letter-spacing: 0.15em;
}

.hero__meta strong {
  font: 800 14px/1.2 var(--font-en);
}

.hero__scroll {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 245, 245, 0.72);
  font-size: 12px;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  animation: scroll-bob 1.8s ease-in-out infinite;
}

@keyframes scroll-bob {
  50% { transform: translateY(5px); }
}

html.js [data-hero-reveal],
html.js [data-hero-visual] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.78s var(--ease-out), transform 0.78s var(--ease-out);
}

html.js [data-hero-reveal].is-visible,
html.js [data-hero-visual].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content [data-hero-reveal]:nth-child(2) { transition-delay: 0.08s; }
.hero__content [data-hero-reveal]:nth-child(3) { transition-delay: 0.16s; }
.hero__content [data-hero-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-hero-visual] { transition-delay: 0.18s; }

/* Expertise marquee */
.expertise-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--fire-paper);
  background: var(--fire-ink);
  border-block: 1px solid rgba(255, 245, 245, 0.12);
}

.expertise-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.expertise-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.expertise-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 19px 24px;
  font: 700 12px/1 var(--font-en);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.expertise-marquee i {
  width: 8px;
  height: 8px;
  background: var(--fire-red);
  rotate: 45deg;
}

html[dir="rtl"] .expertise-marquee__track {
  animation-direction: reverse;
}

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

/* Story */
.story {
  overflow: hidden;
}

.story::before {
  content: "FIRE";
  position: absolute;
  z-index: -1;
  inset-inline-end: -0.04em;
  top: 0.1em;
  color: rgba(20, 0, 0, 0.028);
  font: 900 min(32vw, 520px)/0.8 var(--font-en);
  letter-spacing: -0.08em;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
}

.story__visual {
  position: relative;
  min-height: 720px;
}

.story__image-wrap {
  width: 88%;
  height: 660px;
  overflow: hidden;
  border-radius: 240px 240px 24px 24px;
  box-shadow: var(--shadow-deep);
}

.story__image {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-7%);
  filter: saturate(0.9) contrast(1.04);
}

.story__year {
  position: absolute;
  inset-inline-end: 0;
  bottom: 12px;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--fire-paper);
  background: var(--fire-red);
  border-radius: 50%;
  box-shadow: 0 25px 70px rgba(252, 11, 10, 0.3);
}

.story__year small {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.story__year strong {
  font: 900 50px/1 var(--font-en);
}

.story__content {
  max-width: 720px;
}

.story__body {
  margin: 34px 0 0;
  color: rgba(20, 0, 0, 0.7);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.9;
}

html[dir="ltr"] .story__body {
  line-height: 1.58;
}

.story__quote {
  position: relative;
  margin: 48px 0 0;
  padding: 32px 38px;
  color: var(--fire-ink);
  background: rgba(252, 11, 10, 0.07);
  border-inline-start: 4px solid var(--fire-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.45;
}

html[dir="rtl"] .story__quote {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.story__quote > span {
  position: absolute;
  top: -25px;
  inset-inline-end: 18px;
  color: var(--fire-red);
  font: 900 90px/1 Georgia, serif;
  opacity: 0.2;
}

/* Manifesto */
.manifesto {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--fire-paper);
  background: var(--fire-ink);
  overflow: hidden;
}

.manifesto__flare {
  position: absolute;
  z-index: -1;
  width: 70vw;
  aspect-ratio: 1;
  inset-inline-start: -35vw;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 11, 10, 0.35), rgba(252, 11, 10, 0) 65%);
  filter: blur(30px);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(30px, 6vw, 100px);
}

.manifesto__label {
  margin: 13px 0 0;
  color: var(--fire-red);
  font: 800 11px/1 var(--font-en);
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.manifesto__lines {
  display: grid;
}

.manifesto__line {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 18px;
  margin: 0;
  padding: clamp(20px, 3vw, 40px) 0;
  border-bottom: 1px solid rgba(255, 245, 245, 0.16);
}

.manifesto__line small {
  color: var(--fire-red);
  font: 800 11px/1 var(--font-en);
}

.manifesto__line span {
  display: block;
  color: rgba(255, 245, 245, 0.2);
  background: linear-gradient(90deg, var(--fire-paper) 0 50%, rgba(255, 245, 245, 0.2) 50% 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(42px, 7.3vw, 108px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
  transition: background-position 1.3s var(--ease-out);
}

html[dir="rtl"] .manifesto__line span {
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.15;
  background: linear-gradient(270deg, var(--fire-paper) 0 50%, rgba(255, 245, 245, 0.2) 50% 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
}

.manifesto__line.is-visible span {
  background-position: 0 0;
}

html[dir="rtl"] .manifesto__line.is-visible span {
  background-position: 100% 0;
}

/* Services */
.services {
  overflow: clip;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.services__intro {
  position: sticky;
  top: calc(var(--header-h) + 64px);
}

.services__intro .section-title {
  font-size: clamp(42px, 5.6vw, 76px);
}

.services__orbit {
  position: relative;
  width: min(290px, 80%);
  aspect-ratio: 1;
  margin-top: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 245, 245, 0.13);
  border-radius: 50%;
}

.services__orbit::before,
.services__orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(255, 245, 245, 0.19);
  border-radius: inherit;
  animation: stamp-spin 18s linear infinite;
}

.services__orbit::after {
  inset: 32%;
  border-style: solid;
  animation-direction: reverse;
}

.services__orbit span {
  font: 900 100px/1 var(--font-en);
  color: var(--fire-red);
}

.services__orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px;
  background: var(--fire-red);
  border-radius: 50%;
  transform-origin: 0 0;
  animation: service-orbit 8s linear infinite;
}

.services__orbit i:nth-of-type(2) {
  width: 9px;
  height: 9px;
  animation-duration: 5.5s;
  animation-direction: reverse;
}

@keyframes service-orbit {
  from { transform: rotate(0) translateX(145px); }
  to { transform: rotate(360deg) translateX(145px); }
}

.services__list {
  display: grid;
  gap: 18px;
}

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 280px;
  padding: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 245, 245, 0.075), rgba(255, 245, 245, 0.025)),
    var(--fire-charcoal);
  border: 1px solid rgba(255, 245, 245, 0.11);
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.12s linear;
}

.service-card:hover {
  border-color: rgba(252, 11, 10, 0.8);
  background:
    linear-gradient(145deg, rgba(252, 11, 10, 0.17), rgba(255, 245, 245, 0.03)),
    var(--fire-charcoal);
}

.service-card__top {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--fire-red);
  font: 800 11px/1 var(--font-en);
}

.service-card__top i {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.service-card h3 {
  max-width: 760px;
  margin: 38px 0 18px;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

html[dir="rtl"] .service-card h3 {
  line-height: 1.25;
}

.service-card p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 245, 245, 0.6);
  font-size: 16px;
}

.service-card__spark {
  position: absolute;
  width: 180px;
  aspect-ratio: 1;
  inset-inline-end: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--fire-red);
  filter: blur(55px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card__spark {
  opacity: 0.38;
}

/* Work */
.work {
  overflow: hidden;
}

.work__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.work__count {
  margin: 0;
  display: grid;
  gap: 5px;
  text-align: end;
}

.work__count strong {
  color: var(--fire-red);
  font: 900 54px/1 var(--font-en);
}

.work__count span {
  color: rgba(20, 0, 0, 0.54);
  font-size: 11px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-width: 0;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.12s linear;
}

.project-card--wide {
  grid-column: span 2;
}

.project-card__button {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: start;
  background: transparent;
  cursor: pointer;
}

.project-card__media {
  position: relative;
  display: block;
  height: clamp(430px, 48vw, 710px);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #280000;
}

.project-card:not(.project-card--wide) .project-card__media {
  height: clamp(430px, 43vw, 620px);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 0.7s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.project-card__open {
  position: absolute;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: 50%;
  transform: scale(0.78) rotate(-12deg);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.45s var(--ease-out), background 0.3s ease;
}

.project-card__open svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.project-card:hover .project-card__open,
.project-card__button:focus-visible .project-card__open {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.project-card__open:hover {
  color: var(--fire-paper);
  background: var(--fire-red);
}

.project-card__content {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 30px;
  row-gap: 12px;
  padding: 22px 4px 0;
}

.project-card__content small {
  grid-column: 1 / -1;
  color: var(--fire-red);
  font: 700 10px/1 var(--font-en);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card__content strong {
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.project-card__content > span {
  max-width: 400px;
  color: rgba(20, 0, 0, 0.6);
  font-size: 14px;
  align-self: end;
}

/* Process */
.process {
  overflow: hidden;
}

.process::before {
  content: "HOW";
  position: absolute;
  z-index: -1;
  inset-inline-end: -0.06em;
  top: 0.13em;
  color: rgba(255, 245, 245, 0.055);
  font: 900 min(37vw, 580px)/0.8 var(--font-en);
  letter-spacing: -0.1em;
}

.process__heading {
  max-width: 950px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.process__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process__line {
  position: absolute;
  top: 31px;
  inset-inline: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 245, 245, 0.24);
}

.process__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--fire-paper);
  transform: scaleX(0);
  transform-origin: left center;
}

html[dir="rtl"] .process__line i {
  transform-origin: right center;
}

.process-step {
  position: relative;
  padding-top: 78px;
}

.process-step__marker {
  position: absolute;
  z-index: 2;
  top: 0;
  inset-inline-start: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--fire-red);
  background: var(--fire-paper);
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(20, 0, 0, 0.18);
}

.process-step__marker span {
  font: 900 12px/1 var(--font-en);
}

.process-step h3 {
  margin: 24px 0 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.process-step p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 245, 245, 0.7);
}

/* Impact */
.impact {
  overflow: hidden;
}

.impact .section-heading {
  margin-bottom: clamp(70px, 9vw, 130px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 245, 245, 0.16);
  border-bottom: 1px solid rgba(255, 245, 245, 0.16);
}

.stat-card {
  position: relative;
  min-height: 300px;
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline-end: 1px solid rgba(255, 245, 245, 0.16);
  overflow: hidden;
}

.stat-card:last-child {
  border-inline-end: 0;
}

.stat-card::before {
  content: "";
  position: absolute;
  width: 150px;
  aspect-ratio: 1;
  inset-inline-end: -100px;
  top: -80px;
  border-radius: 50%;
  background: var(--fire-red);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 0.4;
}

.stat-card p {
  margin: 0;
  font: 900 clamp(56px, 6.5vw, 94px)/0.9 var(--font-en);
  letter-spacing: -0.06em;
}

.stat-card sup {
  color: var(--fire-red);
  font-size: 0.42em;
  vertical-align: top;
}

.stat-card > span {
  max-width: 200px;
  color: rgba(255, 245, 245, 0.6);
  font-size: 14px;
}

/* Team */
.team {
  overflow: hidden;
}

.team__heading {
  margin-bottom: clamp(55px, 8vw, 100px);
}

.team__frame {
  position: relative;
}

.team__image-wrap {
  position: relative;
  height: min(76vw, 820px);
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--fire-ink);
}

.team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease-out);
}

.team__frame:hover .team__image {
  transform: scale(1.025);
}

.team__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 0, 0, 0.82));
}

.team__monogram {
  position: absolute;
  inset-inline-start: 0.04em;
  bottom: -0.18em;
  margin: 0;
  color: rgba(255, 245, 245, 0.15);
  font: 900 min(19vw, 280px)/1 var(--font-en);
  letter-spacing: -0.08em;
}

.team__roles {
  position: absolute;
  inset-inline: clamp(20px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 55px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team__roles span {
  padding: 9px 14px;
  color: var(--fire-paper);
  background: rgba(20, 0, 0, 0.56);
  border: 1px solid rgba(255, 245, 245, 0.24);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
}

/* Transformation */
.transformation {
  padding-top: 0;
}

.transformation__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.52fr) minmax(0, 1.48fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.transformation__copy .section-title {
  font-size: clamp(40px, 5vw, 74px);
}

.before-after {
  --position: 50%;
  position: relative;
  height: min(58vw, 720px);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  background: #250000;
  touch-action: pan-y;
}

.before-after__image {
  position: absolute;
  inset: 0;
}

.before-after__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.before-after__image span {
  position: absolute;
  top: 22px;
  padding: 8px 14px;
  color: var(--fire-paper);
  background: rgba(20, 0, 0, 0.62);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
}

.before-after__after span {
  inset-inline-end: 22px;
}

.before-after__before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

html[dir="rtl"] .before-after__before {
  clip-path: inset(0 0 0 calc(100% - var(--position)));
}

.before-after__before span {
  inset-inline-start: 22px;
}

.before-after input[type="range"] {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--fire-paper);
  transform: translateX(-1px);
  pointer-events: none;
}

html[dir="rtl"] .before-after__divider {
  left: auto;
  right: var(--position);
  transform: translateX(1px);
}

.before-after__divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(20, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.before-after__divider i::before,
.before-after__divider i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.before-after__divider i::before {
  left: 15px;
  rotate: -135deg;
}

.before-after__divider i::after {
  right: 15px;
  rotate: 45deg;
}

/* Reel */
.reel {
  min-height: min(920px, 92svh);
  display: grid;
  align-items: end;
  padding-block: 0;
  color: var(--fire-paper);
  background: var(--fire-ink);
  overflow: hidden;
}

.reel__media,
.reel__gradient {
  position: absolute;
  inset: 0;
}

.reel__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.86) contrast(1.08);
  scale: 1.02;
}

.reel__gradient {
  background:
    linear-gradient(90deg, rgba(20, 0, 0, 0.86), rgba(20, 0, 0, 0.15) 70%),
    linear-gradient(0deg, rgba(20, 0, 0, 0.86), transparent 60%);
}

html[dir="rtl"] .reel__gradient {
  background:
    linear-gradient(270deg, rgba(20, 0, 0, 0.86), rgba(20, 0, 0, 0.15) 70%),
    linear-gradient(0deg, rgba(20, 0, 0, 0.86), transparent 60%);
}

.reel__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(70px, 8vw, 120px);
}

.reel__content .section-title {
  max-width: 850px;
  font-size: clamp(48px, 7.5vw, 110px);
}

.reel__play {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding: 0;
  color: var(--fire-paper);
  background: transparent;
  cursor: pointer;
}

.reel__play > span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-out);
}

.reel__play:hover > span {
  color: var(--fire-paper);
  background: var(--fire-red);
  transform: scale(1.08);
}

.reel__play svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reel__play strong {
  font-size: 16px;
}

/* Clients */
.clients {
  padding-block: clamp(70px, 8vw, 120px);
  overflow: hidden;
}

.clients__header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 540px);
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}

.clients__note {
  margin: 0;
  color: rgba(20, 0, 0, 0.47);
  font-size: 12px;
  text-align: end;
}

.logo-marquee {
  overflow: hidden;
  border-block: 1px solid var(--fire-line-dark);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 38s linear infinite;
}

html[dir="rtl"] .logo-marquee__track {
  animation-direction: reverse;
}

.logo-marquee__group {
  display: flex;
  flex-shrink: 0;
}

.client-logo {
  width: 220px;
  height: 150px;
  padding: 34px;
  display: grid;
  place-items: center;
  border-inline-end: 1px solid var(--fire-line-dark);
}

.client-logo img {
  max-width: 150px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

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

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-h) + 60px);
}

.faq__heading .section-title {
  font-size: clamp(42px, 5.2vw, 74px);
}

.faq__list {
  border-top: 1px solid rgba(255, 245, 245, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 245, 245, 0.18);
}

.faq-item summary {
  list-style: none;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
}

.faq-item summary small {
  color: var(--fire-red);
  font: 700 10px/1 var(--font-en);
}

.faq-item summary i {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--fire-paper);
  border: 1px solid rgba(255, 245, 245, 0.25);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease, rotate 0.4s var(--ease-out);
}

.faq-item summary i svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.faq-item[open] summary i {
  color: var(--fire-ink);
  background: var(--fire-paper);
  rotate: 45deg;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}

.faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  max-width: 760px;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 58px 32px 52px;
  color: rgba(255, 245, 245, 0.62);
  font-size: 16px;
  line-height: 1.85;
}

/* Contact */
.contact {
  overflow: hidden;
}

.contact::before {
  content: "F";
  position: absolute;
  z-index: -1;
  inset-inline-start: -0.08em;
  bottom: -0.3em;
  color: rgba(255, 245, 245, 0.055);
  font: 900 min(70vw, 900px)/1 var(--font-en);
}

.contact__flare {
  position: absolute;
  z-index: -1;
  width: 900px;
  aspect-ratio: 1;
  inset-inline-end: -420px;
  top: -400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 245, 0.26), transparent 65%);
  filter: blur(20px);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.contact__title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(56px, 8.7vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

html[dir="rtl"] .contact__title {
  font-size: clamp(50px, 7.5vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact__body {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(255, 245, 245, 0.78);
  font-size: clamp(17px, 1.6vw, 22px);
}

.contact__direct {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 245, 245, 0.24);
}

.contact__direct a {
  display: grid;
  grid-template-columns: 46px minmax(90px, auto) 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 245, 245, 0.24);
  transition: padding-inline 0.3s var(--ease-out);
}

.contact__direct a:hover {
  padding-inline: 10px;
}

.contact__direct a > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 245, 245, 0.3);
  border-radius: 50%;
}

.contact__direct svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact__direct small {
  color: rgba(255, 245, 245, 0.62);
  font: 700 10px/1 var(--font-en);
  letter-spacing: 0.08em;
}

.contact__direct strong {
  justify-self: end;
  text-align: end;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 45px 120px rgba(70, 0, 0, 0.24);
}

.form-row,
.form-row label,
.contact-form > label {
  display: grid;
  gap: 8px;
}

.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label > span {
  color: rgba(20, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  color: var(--fire-ink);
  background: rgba(20, 0, 0, 0.035);
  border: 1px solid rgba(20, 0, 0, 0.14);
  border-radius: 12px;
  outline: 0;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: var(--fire-white);
  border-color: var(--fire-red);
  box-shadow: 0 0 0 4px rgba(252, 11, 10, 0.09);
}

.contact-form > .form-row,
.contact-form > label,
.contact-form > .form-consent {
  margin-bottom: 18px;
}

.form-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--fire-red);
}

.form-consent span {
  color: rgba(20, 0, 0, 0.58) !important;
  font-size: 11px !important;
  line-height: 1.6;
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.contact-form__status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.contact-form__status.is-success {
  color: #137d3d;
}

.contact-form__status.is-error {
  color: #a80000;
}

.contact-form.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Footer */
.site-footer {
  position: relative;
  color: var(--fire-paper);
  background: #0b0000;
  border-top: 1px solid rgba(255, 245, 245, 0.12);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(70px, 8vw, 110px);
}

.site-footer__brand .site-logo {
  width: 190px;
}

.site-footer__brand .site-logo-lockup {
  min-width: 188px;
  height: 64px;
  gap: 12px;
}

.site-footer__brand .site-logo-lockup__mark {
  width: 52px;
  height: 48px;
}

.site-footer__brand .site-logo-lockup__type strong {
  font-size: 31px;
}

.site-footer__brand .site-logo-lockup__type small {
  font-size: 8px;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 28px 0 0;
  color: rgba(255, 245, 245, 0.56);
  font-size: 18px;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__contact > a {
  color: rgba(255, 245, 245, 0.65);
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__contact > a:hover {
  color: var(--fire-paper);
  transform: translateX(4px);
}

html[dir="rtl"] .site-footer__nav a:hover,
html[dir="rtl"] .site-footer__contact > a:hover {
  transform: translateX(-4px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 245, 245, 0.2);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  color: var(--fire-paper);
  background: var(--fire-red);
  border-color: var(--fire-red);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__bottom {
  min-height: 72px;
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 245, 245, 0.12);
  color: rgba(255, 245, 245, 0.42);
  font: 600 10px/1.5 var(--font-en);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--fire-paper);
}

/* Modal */
.media-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}

.media-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.media-modal.is-open .media-modal__backdrop {
  opacity: 1;
}

.media-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  height: min(960px, calc(100svh - 48px));
  max-height: calc(100svh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  color: var(--fire-paper);
  background: var(--fire-ink);
  border: 1px solid rgba(255, 245, 245, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 60px 180px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.45s ease, transform 0.55s var(--ease-out);
}

.media-modal.is-open .media-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.media-modal__header {
  min-height: 72px;
  padding: 12px 18px 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 245, 245, 0.15);
}

html[dir="rtl"] .media-modal__header {
  padding: 12px 28px 12px 18px;
}

.media-modal__header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.media-modal__content {
  position: relative;
  min-height: 0;
  background: #070000;
}

.media-modal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #070000;
}

.modal-image {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: auto;
}

.modal-image a {
  display: contents;
}

.modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #070000;
}

.modal-before-after {
  height: 100%;
  border-radius: 0;
}

.modal-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 245, 245, 0.65);
}

.modal-loading::before {
  content: "";
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 245, 245, 0.18);
  border-top-color: var(--fire-red);
  border-radius: 50%;
  animation: stamp-spin 0.8s linear infinite;
}

/* Generic pages */
.generic-page,
.error-page {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 90px);
  color: var(--fire-ink);
  background: var(--fire-paper);
}

.generic-page__inner,
.error-page__inner {
  max-width: 900px;
  padding-block: 80px 140px;
}

.generic-page h1,
.error-page h1 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.entry-content {
  color: rgba(20, 0, 0, 0.72);
  font-size: 18px;
}

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --container: min(1120px, calc(100vw - 48px));
  }

  .site-header__inner {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-cta {
    padding-inline: 15px;
  }

  .header-cta span {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  }

  .hero__title {
    font-size: clamp(68px, 9.4vw, 118px);
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__stamp {
    width: 115px;
  }

  .services__layout,
  .faq__grid {
    grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
    gap: 70px;
  }

  .stat-card {
    min-height: 260px;
    padding: 34px 22px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(390px, 1.2fr);
    gap: 60px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(900px, calc(100vw - 40px));
    --header-h: 76px;
  }

  .site-header__inner {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta,
  .language-switch small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-logo {
    width: 148px;
    height: 48px;
  }

  .site-logo-lockup {
    min-width: 152px;
    height: 50px;
    gap: 8px;
  }

  .site-logo-lockup__mark {
    width: 42px;
    height: 38px;
  }

  .site-logo-lockup__type strong {
    font-size: 24px;
  }

  .site-logo-lockup__type small {
    font-size: 6.5px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 70px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding-block: 40px 0;
  }

  .hero__title,
  html[dir="rtl"] .hero__title {
    max-width: 920px;
    font-size: clamp(64px, 14vw, 126px);
  }

  .hero__visual {
    min-height: 500px;
    margin-top: -20px;
  }

  .hero__orb {
    width: min(82vw, 600px);
  }

  .hero__rings {
    inset-inline-start: 22%;
    width: 90vw;
    height: 90vw;
    top: 67%;
  }

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

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

  .story__visual {
    min-height: 650px;
    max-width: 700px;
  }

  .story__image-wrap {
    height: 610px;
  }

  .story__content {
    max-width: 820px;
  }

  .manifesto__inner {
    grid-template-columns: 70px 1fr;
  }

  .services__layout,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .services__intro,
  .faq__heading {
    position: static;
  }

  .services__orbit {
    display: none;
  }

  .services__list,
  .faq__list {
    margin-top: 20px;
  }

  .project-card__content {
    grid-template-columns: 1fr;
  }

  .project-card__content > span {
    max-width: 100%;
  }

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

  .process__line {
    display: none;
  }

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

  .stat-card:nth-child(2) {
    border-inline-end: 0;
  }

  .stat-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 245, 245, 0.16);
  }

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

  .transformation__copy {
    max-width: 720px;
  }

  .before-after {
    height: min(78vw, 700px);
  }

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

  .contact__content {
    max-width: 820px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 32px);
    --section-space: 90px;
  }

  .pointer-glow {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 30px;
  }

  .hero__title,
  html[dir="rtl"] .hero__title {
    font-size: clamp(54px, 17.8vw, 92px);
    line-height: 0.94;
  }

  html[dir="rtl"] .hero__title {
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__orb {
    width: min(90vw, 430px);
  }

  .hero__stamp {
    width: 92px;
    bottom: 18px;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero__scroll {
    display: none;
  }

  .expertise-marquee span {
    padding: 17px 18px;
  }

  .section-title,
  html[dir="rtl"] .section-title {
    font-size: clamp(38px, 12vw, 64px);
  }

  .story__visual {
    min-height: 510px;
  }

  .story__image-wrap {
    width: 95%;
    height: 480px;
    border-radius: 180px 180px 20px 20px;
  }

  .story__year {
    width: 138px;
  }

  .story__year strong {
    font-size: 38px;
  }

  .story__quote {
    padding: 26px;
  }

  .manifesto {
    min-height: auto;
  }

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

  .manifesto__label {
    writing-mode: initial;
  }

  .manifesto__line {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .manifesto__line span,
  html[dir="rtl"] .manifesto__line span {
    font-size: clamp(36px, 11vw, 58px);
  }

  .service-card {
    min-height: auto;
  }

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

  .work__count {
    justify-self: start;
    text-align: start;
  }

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

  .project-card--wide {
    grid-column: auto;
  }

  .project-card__media,
  .project-card:not(.project-card--wide) .project-card__media {
    height: min(112vw, 580px);
  }

  .project-card__open {
    opacity: 1;
    transform: scale(0.84);
  }

  .process__rail {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-step {
    padding-top: 74px;
  }

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

  .stat-card,
  .stat-card:nth-child(2),
  .stat-card:nth-child(-n+2) {
    min-height: 230px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 245, 245, 0.16);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .team__image-wrap {
    height: 115vw;
    min-height: 500px;
    border-radius: var(--radius-md);
  }

  .team__monogram {
    font-size: 28vw;
  }

  .before-after {
    height: 116vw;
    min-height: 480px;
    border-radius: var(--radius-md);
  }

  .reel {
    min-height: 78svh;
  }

  .reel__content .section-title {
    font-size: clamp(44px, 13vw, 72px);
  }

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

  .clients__note {
    text-align: start;
  }

  .client-logo {
    width: 170px;
    height: 120px;
    padding: 25px;
  }

  .faq-item summary > span {
    grid-template-columns: 30px 1fr;
  }

  .faq-item__answer p {
    padding-inline: 40px 8px;
  }

  .contact__title,
  html[dir="rtl"] .contact__title {
    font-size: clamp(52px, 15vw, 86px);
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .contact__direct a {
    grid-template-columns: 42px 1fr;
  }

  .contact__direct strong {
    grid-column: 2;
    justify-self: start;
    text-align: start;
  }

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

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-modal {
    padding: 10px;
  }

  .media-modal__dialog {
    height: calc(100svh - 20px);
    max-height: calc(100svh - 20px);
  }

  .media-modal__content {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .site-header__inner {
    width: calc(100vw - 22px);
  }

  .hero__title,
  html[dir="rtl"] .hero__title {
    font-size: 15.5vw;
  }

  .hero__visual {
    min-height: 350px;
  }

  .hero__meta {
    font-size: 11px;
  }

  .mobile-menu__panel {
    width: 100%;
  }
}

/* Reduced motion is a first-class mode. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .site-loader { display: none; }
  .reveal,
  [data-hero-reveal],
  [data-hero-visual] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .site-loader,
  .scroll-progress,
  .pointer-glow,
  .hero__embers,
  .hero__scroll,
  .contact-form,
  .media-modal {
    display: none !important;
  }
  body,
  .section,
  .hero,
  .site-footer {
    color: #000 !important;
    background: #fff !important;
  }
  .section { break-inside: avoid; }
}

/* Static preview-safe typographic logo fallback. */
.client-logo__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  color: var(--fire-ink);
  font: 800 15px/1.15 var(--font-en);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* ========================================================================== */
/* Fire CMA v1.2 — premium editorial refinement                              */
/* ========================================================================== */

:root {
  --header-h: 94px;
  --fire-glass: rgba(20, 0, 0, 0.66);
  --fire-paper-glass: rgba(255, 245, 245, 0.9);
}

/* Floating premium navigation */
.site-header.site-header--floating {
  top: 16px;
  left: 0;
  height: 66px;
  padding-inline: 18px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.site-header.site-header--floating .site-header__inner {
  width: min(1480px, calc(100vw - 36px));
  height: 66px;
  padding: 7px 8px 7px 18px;
  display: grid;
  grid-template-columns: 196px minmax(440px, 1fr) auto;
  gap: 18px;
  color: var(--fire-paper);
  background: linear-gradient(135deg, rgba(20, 0, 0, 0.78), rgba(20, 0, 0, 0.56));
  border: 1px solid rgba(255, 245, 245, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(20, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  pointer-events: auto;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-header.site-header--floating.is-scrolled {
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.site-header--floating.is-scrolled .site-header__inner {
  color: var(--fire-ink);
  background: var(--fire-paper-glass);
  border-color: rgba(20, 0, 0, 0.1);
  box-shadow: 0 16px 50px rgba(20, 0, 0, 0.16);
}

.site-header.site-header--floating .site-logo-lockup {
  min-width: 154px;
  height: 48px;
}

.site-header.site-header--floating .site-logo-lockup__mark {
  width: 38px;
  height: 36px;
}

.site-header.site-header--floating .site-logo-lockup__type strong {
  font-size: 23px;
}

.site-header.site-header--floating .site-logo-lockup__type small {
  font-size: 6.4px;
}

.site-header.site-header--floating.is-scrolled .site-logo-lockup--light {
  --logo-color: var(--fire-ink);
}

.desktop-nav-shell {
  justify-self: center;
  padding: 3px;
  border: 1px solid rgba(255, 245, 245, 0.1);
  border-radius: 999px;
  background: rgba(255, 245, 245, 0.045);
}

.is-scrolled .desktop-nav-shell {
  border-color: rgba(20, 0, 0, 0.08);
  background: rgba(20, 0, 0, 0.035);
}

.desktop-nav {
  gap: 2px;
}

.desktop-nav a {
  padding: 9px 15px;
  color: rgba(255, 245, 245, 0.68);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

html[dir="ltr"] .desktop-nav a {
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--fire-ink);
  background: var(--fire-paper);
  transform: translateY(-1px);
}

.site-header.is-scrolled .desktop-nav a {
  color: rgba(20, 0, 0, 0.62);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--fire-paper);
  background: var(--fire-ink);
}

.header-location {
  color: rgba(255, 245, 245, 0.48);
  font: 700 8px/1 var(--font-en);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-header.is-scrolled .header-location {
  color: rgba(20, 0, 0, 0.42);
}

.language-switch {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  color: currentColor;
  border: 1px solid rgba(255, 245, 245, 0.18);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .language-switch {
  border-color: rgba(20, 0, 0, 0.12);
}

.language-switch:hover {
  color: var(--fire-paper);
  background: var(--fire-red);
  border-color: var(--fire-red);
}

.language-switch span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-switch small {
  display: none;
}

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  color: var(--fire-paper);
  background: var(--fire-red);
  box-shadow: 0 10px 30px rgba(252, 11, 10, 0.24);
}

.header-cta:hover {
  color: var(--fire-ink);
  background: var(--fire-paper);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--fire-paper);
  background: var(--fire-ink);
}

.menu-toggle__label {
  font-size: 11px;
  font-weight: 800;
}

.menu-toggle__icon {
  width: 20px;
  height: 20px;
}

/* Editorial mobile menu */
.mobile-menu--editorial .mobile-menu__panel {
  width: min(1040px, 100vw);
  padding: 28px clamp(24px, 5vw, 64px) 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 11, 10, 0.13), transparent 36%),
    var(--fire-paper);
}

.mobile-menu__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: stretch;
  padding-block: 42px 32px;
}

.mobile-menu--editorial nav {
  padding: 0;
}

.mobile-menu--editorial nav a {
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  align-items: center;
  padding: 12px 0;
  transition: color 0.25s ease, padding 0.3s var(--ease-out);
}

.mobile-menu--editorial nav a:hover {
  color: var(--fire-red);
  padding-inline-start: 12px;
}

.mobile-menu--editorial nav svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
}

.mobile-menu__visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--fire-red);
}

.mobile-menu__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.mobile-menu__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 0, 0, 0.7));
}

.mobile-menu__visual strong {
  position: absolute;
  z-index: 2;
  inset-inline: 22px;
  bottom: 22px;
  color: var(--fire-paper);
  font: 900 clamp(28px, 4vw, 54px)/0.88 var(--font-en);
  letter-spacing: -0.04em;
}

.mobile-menu__lang {
  color: var(--fire-red);
  font-weight: 800;
}

/* Hero — editorial image composition */
.hero.hero--editorial {
  min-height: max(820px, 100svh);
  padding-top: 126px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 245, 245, 0.1), transparent 28%),
    linear-gradient(128deg, #da0000 0%, var(--fire-red) 44%, #ff1b14 72%, #b80000 100%);
}

.hero--editorial::after {
  background:
    linear-gradient(90deg, rgba(20, 0, 0, 0.18), transparent 38%, rgba(20, 0, 0, 0.08)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(12.5% - 1px), rgba(255, 245, 245, 0.055) calc(12.5% - 1px), rgba(255, 245, 245, 0.055) 12.5%);
}

.hero__beam {
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 130vh;
  top: -25vh;
  inset-inline-end: 4vw;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 245, 245, 0.08), transparent);
  filter: blur(14px);
  pointer-events: none;
}

.hero--editorial .hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(38px, 5vw, 86px);
  min-height: calc(100svh - 210px);
}

.hero--editorial .hero__content {
  align-self: center;
  padding-block: 22px;
}

.hero--editorial .hero__eyebrow {
  color: rgba(255, 245, 245, 0.78);
  font-size: 11px;
  letter-spacing: 0.045em;
}

.hero--editorial .hero__eyebrow > span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero--editorial .hero__eyebrow::before {
  display: none;
}

.hero--editorial .hero__title,
html[dir="rtl"] .hero--editorial .hero__title {
  max-width: 800px;
  margin: 24px 0 30px;
  font-size: clamp(74px, 8.1vw, 142px);
  line-height: 0.82;
  letter-spacing: -0.065em;
}

html[dir="rtl"] .hero--editorial .hero__title {
  font-size: clamp(72px, 7.8vw, 134px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero--editorial .hero__lead {
  max-width: 660px;
  color: rgba(255, 245, 245, 0.78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.85;
}

.hero__disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.hero__disciplines span {
  padding: 8px 13px;
  color: rgba(255, 245, 245, 0.82);
  border: 1px solid rgba(255, 245, 245, 0.22);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero--editorial .hero__visual {
  min-height: 660px;
  align-self: stretch;
}

.hero-collage {
  position: relative;
  display: block;
}

.hero-collage__main {
  position: absolute;
  width: min(86%, 720px);
  height: min(77vh, 720px);
  min-height: 570px;
  top: 50%;
  inset-inline-end: 0;
  margin: 0;
  transform: translateY(-50%) rotate(1.1deg);
  overflow: hidden;
  border: 1px solid rgba(255, 245, 245, 0.22);
  border-radius: 16px 90px 16px 16px;
  box-shadow: 0 44px 120px rgba(63, 0, 0, 0.36);
}

html[dir="rtl"] .hero-collage__main {
  border-radius: 90px 16px 16px 16px;
}

.hero-collage__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 0, 0, 0.72));
}

.hero-collage__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 1.1s var(--ease-out), filter 0.5s ease;
}

.hero-collage__main:hover img {
  transform: scale(1.035);
  filter: saturate(1.15) contrast(1.06);
}

.hero-collage__main figcaption {
  position: absolute;
  z-index: 2;
  inset-inline: 24px;
  bottom: 23px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}

.hero-collage__main figcaption small {
  color: rgba(255, 245, 245, 0.64);
  font: 700 9px/1 var(--font-en);
  letter-spacing: 0.14em;
}

.hero-collage__main figcaption strong {
  max-width: 250px;
  color: var(--fire-paper);
  font-size: 15px;
  line-height: 1.45;
  text-align: end;
}

.hero-collage__accent {
  position: absolute;
  z-index: 4;
  width: clamp(160px, 15vw, 245px);
  aspect-ratio: 0.72;
  inset-inline-start: -2%;
  bottom: 7%;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--fire-paper);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(20, 0, 0, 0.34);
  transform: rotate(-6deg);
}

html[dir="rtl"] .hero-collage__accent {
  transform: rotate(6deg);
}

.hero-collage__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.hero-collage__index {
  position: absolute;
  z-index: 5;
  top: 9%;
  inset-inline-start: 0;
  display: grid;
  grid-template-columns: auto 52px auto;
  align-items: center;
  gap: 12px;
  color: var(--fire-paper);
}

.hero-collage__index span {
  font: 900 34px/1 var(--font-en);
}

.hero-collage__index i {
  height: 1px;
  background: rgba(255, 245, 245, 0.7);
}

.hero-collage__index small {
  font: 700 8px/1.2 var(--font-en);
  letter-spacing: 0.13em;
}

.hero-collage__stamp {
  position: absolute;
  z-index: 6;
  top: 15%;
  inset-inline-end: -3%;
  padding: 13px 15px 11px;
  color: var(--fire-red);
  background: var(--fire-paper);
  box-shadow: 0 18px 40px rgba(20, 0, 0, 0.18);
  transform: rotate(4deg);
}

.hero-collage__stamp strong,
.hero-collage__stamp span {
  display: block;
  font: 900 12px/0.9 var(--font-en);
  letter-spacing: 0.06em;
}

.hero-collage__stamp span {
  margin-top: 4px;
  font-size: 8px;
}

.hero--editorial .hero__meta {
  margin-top: 14px;
  padding-top: 24px;
  border-top-color: rgba(255, 245, 245, 0.22);
}

/* Cinematic visual divider */
.visual-break {
  position: relative;
  min-height: min(86svh, 900px);
  color: var(--fire-paper);
  overflow: hidden;
  isolation: isolate;
}

.visual-break__media,
.visual-break__veil {
  position: absolute;
  inset: 0;
}

.visual-break__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.84) contrast(1.1);
}

.visual-break__veil {
  background:
    linear-gradient(90deg, rgba(20, 0, 0, 0.85), rgba(20, 0, 0, 0.12) 65%, rgba(20, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(20, 0, 0, 0.1), rgba(20, 0, 0, 0.64));
}

.visual-break__content {
  position: relative;
  z-index: 2;
  min-height: min(86svh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 100px;
}

.visual-break__content p {
  margin: 0 0 24px;
  font: 800 10px/1 var(--font-en);
  letter-spacing: 0.2em;
}

.visual-break__content h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(62px, 9vw, 150px);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

html[dir="rtl"] .visual-break__content h2 {
  font-size: clamp(60px, 8.5vw, 138px);
  line-height: 0.95;
}

.visual-break__content > span {
  max-width: 560px;
  margin-top: 34px;
  color: rgba(255, 245, 245, 0.74);
  font-size: clamp(16px, 1.4vw, 21px);
}

.visual-break__ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-top: 1px solid rgba(20, 0, 0, 0.1);
}

.visual-break__ticker span {
  display: block;
  width: max-content;
  padding: 14px 0;
  font: 900 11px/1 var(--font-en);
  letter-spacing: 0.12em;
  white-space: nowrap;
  animation: fire-ticker 24s linear infinite;
}

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

/* Services refinement */
.services__layout {
  gap: clamp(54px, 8vw, 130px);
}

.services__intro {
  top: 130px;
}

.services__list {
  gap: 0;
  border-top: 1px solid rgba(255, 245, 245, 0.16);
}

.service-card {
  position: relative;
  min-height: 240px;
  padding: 34px 30px 36px;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 245, 0.16);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transform: none !important;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 11, 10, 0.16), transparent 65%);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.55s var(--ease-out);
}

html[dir="ltr"] .service-card::before {
  transform-origin: left center;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__top,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-card__top span {
  color: var(--fire-red);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.service-card h3 {
  max-width: 760px;
  margin-top: 34px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 680px;
  color: rgba(255, 245, 245, 0.62);
  font-size: 15px;
}

.service-card__spark {
  opacity: 0.12;
}

/* Portfolio editorial grid */
.project-grid--editorial {
  gap: clamp(42px, 6vw, 86px) clamp(22px, 3vw, 42px);
}

.project-card {
  background: transparent;
}

.project-card__media {
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(20, 0, 0, 0.1);
}

.project-card--wide .project-card__media {
  height: min(56vw, 720px);
}

.project-card__content {
  padding-top: 22px;
}

.project-card__content strong {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

/* Evidence-led impact */
.impact {
  background:
    radial-gradient(circle at 12% 12%, rgba(252, 11, 10, 0.15), transparent 28%),
    var(--fire-ink);
}

.impact__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.impact__principles {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 245, 245, 0.18);
}

.impact__principles span {
  padding: 13px 0;
  color: rgba(255, 245, 245, 0.68);
  border-bottom: 1px solid rgba(255, 245, 245, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.stats-grid {
  border-top: 1px solid rgba(255, 245, 245, 0.16);
  border-bottom: 1px solid rgba(255, 245, 245, 0.16);
}

.stat-card {
  min-height: 330px;
  padding: 32px 26px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: start;
}

.stat-card > small {
  color: var(--fire-red);
  font: 800 9px/1 var(--font-en);
  letter-spacing: 0.15em;
}

.stat-card p {
  margin: auto 0 20px;
  font-size: clamp(58px, 6vw, 94px);
}

.stat-card > strong {
  max-width: 260px;
  font-size: 16px;
  line-height: 1.55;
}

.stat-card > span {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 245, 245, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

/* Team */
.team__frame {
  margin-top: 56px;
}

.team__image-wrap {
  height: min(64vw, 820px);
  border-radius: 14px;
}

.team__image {
  object-position: center;
}

.team__overlay {
  background: linear-gradient(180deg, transparent 48%, rgba(20, 0, 0, 0.78));
}

.team__roles {
  margin-top: 18px;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.team__roles span {
  padding: 13px 10px;
  color: var(--fire-ink);
  background: rgba(20, 0, 0, 0.045);
  border: 1px solid rgba(20, 0, 0, 0.09);
  border-radius: 999px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

/* Reel */
.reel {
  min-height: min(92svh, 930px);
}

.reel__poster {
  filter: saturate(0.85) contrast(1.12);
}

.reel__gradient {
  background:
    linear-gradient(90deg, rgba(20, 0, 0, 0.82), rgba(20, 0, 0, 0.1) 66%),
    linear-gradient(180deg, rgba(20, 0, 0, 0.08), rgba(20, 0, 0, 0.66));
}

.reel__content {
  align-items: flex-start;
}

.reel__content .section-title {
  max-width: 930px;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.92;
}

.reel__bts {
  display: inline-grid;
  grid-template-columns: auto 1fr 20px;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 13px 17px;
  color: var(--fire-paper);
  background: rgba(20, 0, 0, 0.42);
  border: 1px solid rgba(255, 245, 245, 0.2);
  border-radius: 999px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.reel__bts:hover {
  background: var(--fire-red);
  transform: translateY(-2px);
}

.reel__bts span {
  font: 800 8px/1 var(--font-en);
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.reel__bts strong {
  font-size: 11px;
}

.reel__bts svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
}

/* Clients — direct, confident, no legalistic note */
.clients {
  padding-bottom: calc(var(--section-space) * 0.78);
}

.clients__header {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.clients__title {
  max-width: 780px;
  margin: 12px 0 0;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.clients__intro {
  margin: 0;
  color: rgba(20, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.85;
}

.logo-marquee {
  border-top: 1px solid rgba(20, 0, 0, 0.12);
  border-bottom: 1px solid rgba(20, 0, 0, 0.12);
}

.client-logo {
  width: 230px;
  height: 145px;
  padding: 34px;
  border-inline-end: 1px solid rgba(20, 0, 0, 0.1);
  filter: grayscale(1);
  opacity: 0.58;
  transition: filter 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  background: rgba(252, 11, 10, 0.045);
}

/* Contact polish */
.contact {
  background:
    radial-gradient(circle at 85% 14%, rgba(255, 245, 245, 0.18), transparent 25%),
    linear-gradient(135deg, #e90000, var(--fire-red) 58%, #b90000);
}

.contact__grid {
  align-items: stretch;
}

.contact-form {
  border: 1px solid rgba(20, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 50px 130px rgba(75, 0, 0, 0.26);
}

.contact__direct a {
  border-radius: 14px;
  background: rgba(20, 0, 0, 0.12);
  border-color: rgba(255, 245, 245, 0.17);
}

.contact__direct a:hover {
  background: var(--fire-paper);
  color: var(--fire-ink);
}

/* Responsive v1.2 */
@media (max-width: 1220px) {
  .site-header.site-header--floating .site-header__inner {
    grid-template-columns: 170px 1fr auto;
  }
  .header-location { display: none; }
  .desktop-nav a { padding-inline: 11px; }
  .hero--editorial .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }
}

@media (max-width: 1040px) {
  .site-header.site-header--floating {
    top: 10px;
    padding-inline: 10px;
  }
  .site-header.site-header--floating .site-header__inner {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr auto;
    padding-inline: 14px 8px;
  }
  .desktop-nav-shell,
  .header-cta,
  .site-header .language-switch {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
  }
  .site-header.is-scrolled .menu-toggle {
    color: var(--fire-ink);
    border-color: rgba(20, 0, 0, 0.16);
  }
  .hero.hero--editorial {
    padding-top: 118px;
  }
  .hero--editorial .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero--editorial .hero__content {
    max-width: 900px;
  }
  .hero--editorial .hero__visual {
    min-height: 680px;
  }
  .hero-collage__main {
    width: min(84%, 760px);
    height: 650px;
  }
  .hero-collage__accent {
    inset-inline-start: 2%;
  }
  .impact__top {
    grid-template-columns: 1fr;
  }
  .team__roles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 80px;
  }
  .site-header.site-header--floating .site-header__inner {
    height: 60px;
  }
  .site-header.site-header--floating .site-logo-lockup {
    min-width: 128px;
  }
  .site-header.site-header--floating .site-logo-lockup__mark {
    width: 34px;
    height: 32px;
  }
  .site-header.site-header--floating .site-logo-lockup__type strong {
    font-size: 20px;
  }
  .menu-toggle__label {
    display: none;
  }
  .menu-toggle {
    width: 44px;
    padding: 11px;
  }
  .mobile-menu--editorial .mobile-menu__panel {
    width: 100%;
    padding: 20px 18px 28px;
  }
  .mobile-menu__body {
    grid-template-columns: 1fr;
    padding-block: 28px 20px;
  }
  .mobile-menu__visual {
    display: none;
  }
  .mobile-menu--editorial nav a {
    grid-template-columns: 32px 1fr 24px;
    padding: 9px 0;
  }
  .mobile-menu--editorial nav span {
    font-size: clamp(31px, 10vw, 48px);
  }
  .hero.hero--editorial {
    min-height: auto;
    padding-top: 112px;
  }
  .hero--editorial .hero__title,
  html[dir="rtl"] .hero--editorial .hero__title {
    font-size: clamp(58px, 18vw, 92px);
    line-height: 0.9;
  }
  html[dir="rtl"] .hero--editorial .hero__title {
    line-height: 1.02;
  }
  .hero--editorial .hero__lead {
    font-size: 15px;
  }
  .hero__disciplines {
    margin-top: 26px;
  }
  .hero--editorial .hero__visual {
    min-height: 520px;
    margin-top: 6px;
  }
  .hero-collage__main {
    width: 90%;
    height: 480px;
    min-height: 0;
    border-radius: 12px 52px 12px 12px;
  }
  html[dir="rtl"] .hero-collage__main {
    border-radius: 52px 12px 12px 12px;
  }
  .hero-collage__accent {
    width: 130px;
    bottom: 3%;
    border-width: 5px;
  }
  .hero-collage__index {
    top: 6%;
  }
  .hero-collage__stamp {
    top: 12%;
    inset-inline-end: 0;
  }
  .hero--editorial .hero__meta {
    grid-template-columns: 1fr 1fr;
  }
  .visual-break {
    min-height: 76svh;
  }
  .visual-break__content {
    min-height: 76svh;
  }
  .visual-break__content h2,
  html[dir="rtl"] .visual-break__content h2 {
    font-size: clamp(52px, 16vw, 88px);
  }
  .service-card {
    padding-inline: 4px;
  }
  .project-card--wide .project-card__media,
  .project-card__media,
  .project-card:not(.project-card--wide) .project-card__media {
    height: min(112vw, 560px);
    border-radius: 10px;
  }
  .impact__top {
    margin-bottom: 44px;
  }
  .stat-card {
    min-height: 260px;
  }
  .team__image-wrap {
    height: 118vw;
    min-height: 480px;
  }
  .team__roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reel__content .section-title {
    font-size: clamp(50px, 15vw, 84px);
  }
  .clients__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .clients__title {
    font-size: clamp(42px, 13vw, 68px);
  }
  .client-logo {
    width: 180px;
    height: 118px;
    padding: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-break__ticker span { animation: none !important; }
  .hero-collage__main,
  .hero-collage__accent { transform: none !important; }
}

/* ========================================================================== */
/* Fire CMA v1.4 — visual consolidation, interaction, and interface polish    */
/* ========================================================================== */

:root {
  --fire-v14-header: rgba(20, 0, 0, 0.72);
  --fire-v14-line: rgba(255, 245, 245, 0.16);
  --fire-v14-soft-line: rgba(20, 0, 0, 0.1);
  --fire-v14-radius: 18px;
}

/* The navigation is one clear layer: brand, navigation, language, one CTA. */
.site-header.site-header--v14 {
  top: 14px;
  height: 68px;
  padding-inline: 18px;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.admin-bar .site-header.site-header--v14 {
  top: 46px;
}

.site-header.site-header--v14 .site-header__inner {
  width: min(1540px, calc(100vw - 36px));
  height: 68px;
  padding: 8px 9px 8px 20px;
  grid-template-columns: minmax(172px, 0.75fr) minmax(430px, 1.55fr) minmax(300px, 0.85fr);
  gap: clamp(14px, 2vw, 34px);
  color: var(--fire-paper);
  background:
    linear-gradient(110deg, rgba(20, 0, 0, 0.84), var(--fire-v14-header)),
    rgba(20, 0, 0, 0.72);
  border: 1px solid var(--fire-v14-line);
  border-radius: var(--fire-v14-radius);
  box-shadow: 0 18px 54px rgba(20, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  pointer-events: auto;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.site-header.site-header--v14.is-scrolled .site-header__inner {
  color: var(--fire-paper);
  background: rgba(20, 0, 0, 0.92);
  border-color: rgba(255, 245, 245, 0.13);
  box-shadow: 0 20px 70px rgba(20, 0, 0, 0.3);
  transform: translateY(-3px);
}

.site-header.site-header--v14 .site-logo-lockup,
.site-header.site-header--v14.is-scrolled .site-logo-lockup--light {
  --logo-color: var(--fire-paper);
  min-width: 152px;
  height: 48px;
}

.site-header.site-header--v14 .site-logo-lockup__mark {
  width: 40px;
  height: 36px;
}

.site-header.site-header--v14 .site-logo-lockup__type strong {
  font-size: 24px;
}

.site-header.site-header--v14 .site-logo-lockup__type small {
  font-size: 6.2px;
}

.site-header--v14 .desktop-nav {
  justify-self: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.site-header--v14 .desktop-nav a {
  padding: 15px 1px 13px;
  color: rgba(255, 245, 245, 0.62);
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  transform: none;
}

html[dir="ltr"] .site-header--v14 .desktop-nav a {
  font-size: 10.5px;
  letter-spacing: 0.075em;
}

.site-header--v14 .desktop-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fire-red);
  opacity: 0;
  transform: translate(-50%, 5px) scale(0.4);
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
}

.site-header--v14 .desktop-nav a::after {
  display: block;
  bottom: 0;
  height: 1px;
  background: var(--fire-paper);
}

.site-header--v14 .desktop-nav a:hover,
.site-header--v14 .desktop-nav a.is-active,
.site-header--v14 .desktop-nav a[aria-current="location"] {
  color: var(--fire-paper);
  background: transparent;
  transform: none;
}

.site-header--v14 .desktop-nav a:hover::before,
.site-header--v14 .desktop-nav a.is-active::before,
.site-header--v14 .desktop-nav a[aria-current="location"]::before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.site-header--v14 .site-header__actions {
  gap: 10px;
}

.header-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 245, 245, 0.48);
  font: 700 7.5px/1 var(--font-en);
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.header-signal i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fire-red);
  box-shadow: 0 0 0 5px rgba(252, 11, 10, 0.12);
}

.site-header--v14 .language-switch {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  color: var(--fire-paper);
  border: 1px solid rgba(255, 245, 245, 0.18);
  border-radius: 12px;
  background: rgba(255, 245, 245, 0.045);
}

.site-header--v14 .language-switch:hover {
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-color: var(--fire-paper);
}

.site-header--v14 .header-cta {
  min-height: 48px;
  padding-inline: 19px;
  color: var(--fire-ink);
  background: var(--fire-paper);
  border-radius: 12px;
  box-shadow: none;
}

.site-header--v14 .header-cta:hover {
  color: var(--fire-paper);
  background: var(--fire-red);
}

/* Hero: recover the cleaner v1.2 editorial impact, then add a responsive mesh. */
.hero.hero--v14 {
  min-height: max(820px, 100svh);
  padding-top: 126px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 245, 245, 0.14), transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(20, 0, 0, 0.13), transparent 34%),
    linear-gradient(124deg, #df0000 0%, #fc0b0a 45%, #ff2018 72%, #c40000 100%);
}

.hero--v14::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 245, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 245, 245, 0.06) 1px, transparent 1px);
  background-size: min(9vw, 132px) min(9vw, 132px);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.25) 60%, transparent);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.25) 60%, transparent);
}

html[dir="rtl"] .hero--v14::before {
  -webkit-mask-image: linear-gradient(270deg, rgba(0,0,0,0.8), rgba(0,0,0,0.25) 60%, transparent);
  mask-image: linear-gradient(270deg, rgba(0,0,0,0.8), rgba(0,0,0,0.25) 60%, transparent);
}

.hero--v14::after {
  z-index: 0;
  background: linear-gradient(90deg, rgba(20, 0, 0, 0.18), transparent 42%, rgba(20, 0, 0, 0.06));
}

.hero__mesh {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  pointer-events: none;
}

.hero--v14 .hero__noise {
  z-index: 2;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.hero--v14 .hero__beam {
  z-index: 1;
  width: 42vw;
  inset-inline-end: 7vw;
  opacity: 0.7;
}

.hero--v14 .hero__grid,
.hero--v14 .hero__meta {
  z-index: 4;
}

.hero--v14 .hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  gap: clamp(48px, 6vw, 108px);
  min-height: calc(100svh - 206px);
}

.hero--v14 .hero__content {
  padding-block: 18px 34px;
}

.hero--v14 .hero__eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 245, 245, 0.82);
}

.hero--v14 .hero__title,
html[dir="rtl"] .hero--v14 .hero__title {
  max-width: 760px;
  margin-block: 0 30px;
  font-size: clamp(74px, 8.4vw, 144px);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-shadow: 0 8px 40px rgba(90, 0, 0, 0.12);
}

html[dir="rtl"] .hero--v14 .hero__title {
  font-size: clamp(70px, 7.65vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero--v14 .hero__lead {
  max-width: 630px;
  margin-top: 0;
  color: rgba(255, 245, 245, 0.78);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.82;
}

.hero--v14 .hero__actions {
  margin-top: 34px;
}

.hero--v14 .button--light {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 13px;
  box-shadow: 0 18px 44px rgba(84, 0, 0, 0.2);
}

.hero--v14 .text-link--hero {
  color: rgba(255, 245, 245, 0.82);
}

.hero--v14 .hero__disciplines {
  margin-top: 30px;
}

.hero--v14 .hero__disciplines span {
  border-radius: 8px;
  background: rgba(20, 0, 0, 0.06);
}

.hero--v14 .hero__visual {
  min-height: 660px;
}

.hero--v14 .hero-collage__main {
  width: min(91%, 760px);
  height: min(72vh, 690px);
  min-height: 570px;
  border-radius: 20px 92px 20px 20px;
  border-color: rgba(255, 245, 245, 0.28);
  transform: translateY(-50%) rotate(-1.1deg);
  box-shadow: 0 50px 130px rgba(69, 0, 0, 0.34);
}

html[dir="rtl"] .hero--v14 .hero-collage__main {
  border-radius: 92px 20px 20px 20px;
  transform: translateY(-50%) rotate(1.1deg);
}

.hero--v14 .hero-collage__main::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 13px;
  border: 1px solid rgba(255, 245, 245, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.hero--v14 .hero-collage__main img {
  filter: saturate(0.82) contrast(1.08) sepia(0.08);
}

.hero--v14 .hero-collage__main:hover img {
  filter: saturate(1.02) contrast(1.08);
}

.hero--v14 .hero-collage__accent {
  width: clamp(145px, 14vw, 210px);
  border: 7px solid var(--fire-paper);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(58, 0, 0, 0.34);
}

.hero-collage__coordinate {
  position: absolute;
  z-index: 4;
  inset-inline-end: 1%;
  bottom: 3%;
  display: grid;
  gap: 4px;
  color: rgba(255, 245, 245, 0.68);
  font: 700 8px/1.2 var(--font-en);
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero__mesh-label {
  position: absolute;
  z-index: 4;
  top: 118px;
  inset-inline-start: max(24px, calc((100vw - min(1540px, calc(100vw - 48px))) / 2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 245, 245, 0.5);
  font: 700 7px/1 var(--font-en);
  letter-spacing: 0.13em;
  pointer-events: none;
}

.hero__mesh-label i {
  width: 48px;
  height: 1px;
  background: rgba(255, 245, 245, 0.35);
}

.hero__mesh-label small {
  color: rgba(255, 245, 245, 0.34);
  font: inherit;
}

.hero--v14 .hero__meta {
  padding-top: 22px;
  border-color: rgba(255, 245, 245, 0.28);
}

/* Section rhythm: clearer scene changes without adding visual noise. */
.section--paper {
  background:
    radial-gradient(circle at 8% 16%, rgba(252, 11, 10, 0.035), transparent 22%),
    var(--fire-paper);
}

.section-kicker {
  letter-spacing: 0.14em;
}

.service-card,
.project-card,
.process-step,
.stat-card {
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, background 0.35s ease, box-shadow 0.45s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 11, 10, 0.38);
}

.project-card:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 34px 90px rgba(20, 0, 0, 0.14);
}

.process-step:hover,
.stat-card:hover {
  transform: translateY(-5px);
}

.contact-form {
  overflow: hidden;
}

.contact-form:focus-within {
  border-color: rgba(255, 245, 245, 0.42);
  box-shadow: 0 50px 130px rgba(75, 0, 0, 0.28), 0 0 0 4px rgba(255, 245, 245, 0.09);
}

.site-header--v14 a:focus-visible,
.site-header--v14 button:focus-visible,
.hero--v14 a:focus-visible {
  outline: 2px solid var(--fire-paper);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .site-header.site-header--v14 .site-header__inner {
    grid-template-columns: 160px 1fr auto;
  }
  .header-signal { display: none; }
  .site-header--v14 .desktop-nav { gap: 14px; }
  .site-header--v14 .desktop-nav a { font-size: 11px; }
  .hero--v14 .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 42px;
  }
}

@media (max-width: 1040px) {
  .admin-bar .site-header.site-header--v14 { top: 42px; }
  .site-header.site-header--v14 {
    top: 10px;
    padding-inline: 10px;
  }
  .site-header.site-header--v14 .site-header__inner {
    width: calc(100vw - 20px);
    height: 62px;
    grid-template-columns: 1fr auto;
    border-radius: 15px;
  }
  .site-header--v14 .desktop-nav,
  .site-header--v14 .header-cta,
  .site-header--v14 .language-switch,
  .site-header--v14 .header-signal {
    display: none;
  }
  .site-header--v14 .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
  }
  .hero.hero--v14 {
    padding-top: 112px;
  }
  .hero--v14 .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero--v14 .hero__content {
    max-width: 880px;
  }
  .hero--v14 .hero__visual {
    min-height: 660px;
  }
  .hero__mesh-label {
    top: 94px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header.site-header--v14 { top: 56px; }
}

@media (max-width: 760px) {
  .site-header.site-header--v14 .site-header__inner {
    height: 58px;
    padding-inline: 13px 7px;
  }
  .site-header.site-header--v14 .site-logo-lockup {
    min-width: 128px;
  }
  .hero.hero--v14 {
    min-height: 100svh;
    padding-top: 106px;
    padding-bottom: 28px;
  }
  .hero--v14::before {
    background-size: 70px 70px;
    opacity: 0.7;
  }
  .hero__mesh {
    opacity: 0.58;
  }
  .hero__mesh-label {
    top: 84px;
    inset-inline-start: 20px;
  }
  .hero__mesh-label small,
  .hero__mesh-label i {
    display: none;
  }
  .hero--v14 .hero__content {
    padding-block: 14px 22px;
  }
  .hero--v14 .hero__title,
  html[dir="rtl"] .hero--v14 .hero__title {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(60px, 18.5vw, 92px);
    line-height: 0.9;
  }
  html[dir="rtl"] .hero--v14 .hero__title {
    line-height: 1.02;
  }
  .hero--v14 .hero__lead {
    max-width: 36rem;
    font-size: 15px;
  }
  .hero--v14 .hero__actions {
    gap: 18px;
    margin-top: 28px;
  }
  .hero--v14 .hero__disciplines {
    gap: 7px;
    margin-top: 24px;
  }
  .hero--v14 .hero__disciplines span {
    padding: 7px 10px;
    font-size: 9px;
  }
  .hero--v14 .hero__visual {
    display: none;
  }
  .hero--v14 .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 26px;
  }
  .hero--v14 .hero__scroll {
    grid-column: 1 / -1;
    justify-self: start;
  }
  html[dir="rtl"] .hero--v14 .hero__scroll {
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .admin-bar .site-header.site-header--v14 { top: 50px; }
  .hero--v14 .hero__meta > div:nth-child(2) { display: none; }
  .hero--v14 .hero__meta { grid-template-columns: 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mesh { opacity: 0.42; }
  .project-card:hover,
  .service-card:hover,
  .process-step:hover,
  .stat-card:hover { transform: none; }
}

/* The WordPress performance switch must be equivalent to the visitor's reduced-motion preference. */
html.firecma-reduced-motion { scroll-behavior: auto; }
html.firecma-reduced-motion *,
html.firecma-reduced-motion *::before,
html.firecma-reduced-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition-duration: 0.01ms !important;
  transition-delay: 0s !important;
}
html.firecma-reduced-motion .site-loader { display: none !important; }
html.firecma-reduced-motion [data-reveal],
html.firecma-reduced-motion [data-text-reveal],
html.firecma-reduced-motion [data-hero-reveal],
html.firecma-reduced-motion [data-hero-visual] {
  opacity: 1 !important;
  transform: none !important;
}
