:root {
  --ink: #050505;
  --paper: #ffffff;
  --soft: #f4f1f1;
  --sand: #baab99;
  --sand-light: #ded5ca;
  --line: #d7d2cc;
  --muted: #686662;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(10, 10, 10, 0.08);
  --container: 1600px;
  --gutter: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", Tahoma, sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

[hidden] {
  display: none !important;
}

img {
  height: auto;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  font-size: 20px;
}

.nav-menu {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 40px);
}

.nav-link,
.language-link {
  position: relative;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .nav-link,
html[dir="rtl"] .language-link {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 3px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-link {
  min-width: 46px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-align: center;
}

.language-link:hover,
.language-link:focus-visible {
  color: #fff;
  background: #000;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  margin-inline-start: auto;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.nav-toggle-lines::before { transform: translateY(-6px); }
.nav-toggle-lines::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - (2 * var(--gutter))), 980px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 144px);
}

.section-sm {
  padding-block: clamp(52px, 6vw, 96px);
}

.section-heading {
  max-width: 1050px;
  margin-block-end: clamp(36px, 5vw, 72px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-block-end: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.display-title {
  margin-block-end: 22px;
  font-size: clamp(45px, 7.4vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-title {
  margin-block-end: 18px;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.subheading {
  margin-block-end: 20px;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

html[dir="rtl"] .display-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .subheading {
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 820px;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.55;
}

.body-copy {
  max-width: 760px;
  color: #2b2a28;
}

.prism-rule {
    width: 118px;
    height: 4px;
    margin-block: 22px 28px;
    background: linear-gradient(90deg, #ff2e63 43%, #70d7de 76%);
    border-radius: 999px;
}

html[dir="rtl"] .prism-rule {
    background: linear-gradient(90deg, #ff2e63 43%, #70d7de 76%);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 30px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

html[dir="rtl"] .button {
  font-size: 14px;
  letter-spacing: 0;
}

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

.button-dark {
  color: #fff;
  background: #000;
}

.button-light {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.button-arrow::after {
  content: "\2197";
  font-size: 16px;
  line-height: 1;
}

.hero-wrap {
  padding: var(--gutter);
  padding-block-start: clamp(18px, 2vw, 30px);
}

.home-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 120px));
  overflow: hidden;
  border-radius: var(--radius);
  background: #262625;
}

.home-hero video,
.home-hero .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .hero-poster {
  z-index: 0;
}

.home-hero video {
  z-index: 1;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.2) 65%, rgba(5, 5, 5, 0.38));
}

html[dir="rtl"] .home-hero::after {
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.2) 65%, rgba(5, 5, 5, 0.38));
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-height: inherit;
  padding: clamp(40px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.hero-copy .display-title {
  max-width: 1000px;
}

.hero-copy .lead {
  max-width: 760px;
  margin-block-end: 0;
}

.split-feature {
  padding: clamp(36px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background: var(--soft);
  border-radius: var(--radius);
}

.split-feature.reverse .split-copy {
  order: 2;
}

.split-feature.reverse .split-media {
  order: 1;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 76%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: start;
}

.carousel-item img {
  width: 100%;
  height: clamp(360px, 48vw, 650px);
  object-fit: cover;
  border-radius: 3px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-block-start: 18px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
}

.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-card-body {
  padding: 28px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

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

.feature-card p {
  margin-bottom: 0;
  color: #383633;
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.quote-mark {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

html[dir="rtl"] .quote-mark {
  line-height: 1.35;
}

.audience-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.audience-list li {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.wide-image {
  width: 100%;
  height: min(72vw, 780px);
  object-fit: cover;
  border-radius: var(--radius);
}

.story-panel {
  padding: clamp(42px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  color: #fff;
  background: var(--sand);
  border-radius: var(--radius);
}

.story-panel .section-title {
  margin-bottom: 10px;
}

.story-panel a:not(.button) {
  display: inline-flex;
  margin-block-start: 15px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.accordion-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.image-stack {
  position: sticky;
  inset-block-start: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.image-stack img:nth-child(2) {
  margin-block-start: 80px;
}

.details-list {
  border-top: 1px solid var(--ink);
}

.details-list details {
  border-bottom: 1px solid var(--ink);
}

.details-list summary {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(23px, 2.2vw, 34px);
  font-style: italic;
  cursor: pointer;
  list-style: none;
}

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

.details-list summary::after {
  content: "+";
  font-size: 28px;
  font-style: normal;
}

.details-list details[open] summary::after {
  content: "\2212";
}

.details-content {
  padding-block-end: 26px;
  color: #373532;
}

.service-showcase .carousel-track {
  grid-auto-columns: 100%;
}

.service-slide {
  padding-inline: clamp(0px, 5vw, 80px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.service-slide-copy {
  padding-block-end: 26px;
}

.service-slide h3 {
  margin-block-end: clamp(30px, 5vw, 76px);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

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

.service-slide-meta {
  padding-block-start: 15px;
  border-top: 1px solid var(--ink);
}

.service-slide img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.74));
}

.artist-card img {
  width: 100%;
  height: min(42vw, 520px);
  object-fit: cover;
  transition: transform 350ms ease;
}

.artist-card:hover img {
  transform: scale(1.035);
}

.artist-card h3 {
  position: absolute;
  inset-inline: 24px;
  inset-block-end: 20px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.page-hero {
  padding-block: clamp(34px, 5vw, 72px) clamp(72px, 9vw, 132px);
}

.page-hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
}

.page-hero-copy {
  padding: clamp(42px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero-copy .display-title {
  font-size: clamp(46px, 6vw, 94px);
}

.page-hero-media {
  min-height: 560px;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principle-grid,
.service-grid,
.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.principle-card,
.service-card,
.audience-card {
  min-height: 280px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principle-card:nth-child(3n + 1),
.service-card:nth-child(3n + 1) {
  background: var(--soft);
}

.principle-card h3,
.service-card h3,
.audience-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

html[dir="rtl"] .principle-card h3,
html[dir="rtl"] .service-card h3,
html[dir="rtl"] .audience-card h3 {
  line-height: 1.4;
}

.number {
  margin-block-end: 28px;
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.media-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  color: #fff;
  background: #000;
  border-radius: var(--radius);
}

.media-statement-copy {
  padding: clamp(42px, 7vw, 110px);
  align-self: center;
}

.media-statement img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.bullet-list {
  padding-inline-start: 20px;
}

.bullet-list li + li {
  margin-block-start: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.process-step {
  min-height: 260px;
  padding: 28px 24px;
  border-inline-end: 1px solid var(--line);
}

.process-step:last-child {
  border-inline-end: 0;
}

.process-step strong {
  display: block;
  margin-block: 48px 14px;
  font-size: clamp(24px, 2vw, 33px);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}

.form-intro {
  position: sticky;
  inset-block-start: 120px;
}

.form-card {
  padding: clamp(28px, 5vw, 64px);
  background: var(--soft);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

html[dir="rtl"] .field label,
html[dir="rtl"] .fieldset-title {
  letter-spacing: 0;
}

.required-note,
.field-hint,
.disclaimer {
  color: var(--muted);
  font-size: 13px;
}

.required-mark {
  color: #a51c30;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #a8a39c;
  border-radius: 4px;
  outline: none;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.file-control {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px dashed #78736d;
  border-radius: 4px;
}

.file-control input {
  min-height: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.check-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: #000;
}

.honeypot {
  position: absolute !important;
  inset-inline-start: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin-block-end: 22px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7b1223;
  border-color: #a51c30;
  background: #fff3f5;
}

body.form-confirmation-open {
  overflow: hidden;
}

.form-confirmation {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.form-confirmation.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-confirmation__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(6px);
}

.form-confirmation__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100svh - 40px);
  padding: clamp(38px, 7vw, 68px);
  overflow: auto;
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(18px) scale(0.98);
  transition: transform 200ms ease;
}

.form-confirmation.is-visible .form-confirmation__dialog {
  transform: translateY(0) scale(1);
}

.form-confirmation__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.form-confirmation__label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[dir="rtl"] .form-confirmation__label {
  letter-spacing: 0;
}

.form-confirmation__dialog h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

html[dir="rtl"] .form-confirmation__dialog h2 {
  letter-spacing: 0;
}

.form-confirmation__dialog > p:not(.form-confirmation__label) {
  max-width: 420px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.form-confirmation__button {
  min-width: 160px;
}

.contact-details {
  margin-block-start: 38px;
  padding-block-start: 24px;
  border-top: 1px solid var(--line);
}

.contact-details a {
  display: block;
  margin-block-end: 8px;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 650;
}

.site-footer {
  padding-block: clamp(70px, 8vw, 120px) 34px;
  color: #fff;
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  margin-block-end: 30px;
  object-fit: contain;
}

.footer-brand h2 {
  margin-block-end: 24px;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.06em;
}

.footer-brand p {
  max-width: 560px;
  color: #c6c2bd;
}

.footer-title {
  margin-block-end: 22px;
  color: #8f8a84;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-block-start: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sand-light);
}

.footer-contact a {
  display: block;
  margin-block-end: 10px;
  font-size: clamp(18px, 1.8vw, 28px);
  font-style: italic;
}

.footer-bottom {
  margin-block-start: 70px;
  padding-block-start: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9d9892;
  border-top: 1px solid #2c2c2c;
  font-size: 13px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 84px 0 auto 0;
    min-height: calc(100svh - 84px);
    max-height: calc(100svh - 84px);
    padding: 34px var(--gutter) 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: clamp(27px, 5vw, 48px);
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .language-link {
    margin-block-start: 14px;
  }

  .split-feature,
  .page-hero-grid,
  .media-statement,
  .form-section {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    min-height: 0;
  }

  .page-hero-media {
    min-height: 540px;
  }

  .page-hero-media img,
  .media-statement img {
    min-height: 540px;
    max-height: 760px;
  }

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

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

  .process-step:nth-child(3) {
    border-inline-end: 0;
  }

  .process-step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .form-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 16px;
    --gutter: 18px;
  }

  body {
    font-size: 16px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .nav-menu {
    inset-block-start: 72px;
    min-height: calc(100svh - 72px);
    max-height: calc(100svh - 72px);
  }

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

  .home-hero {
    min-height: calc(100svh - 105px);
  }

  .hero-copy {
    padding: 34px 24px;
    justify-content: flex-end;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.14) 80%);
  }

  html[dir="rtl"] .home-hero::after {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.14) 80%);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .split-feature {
    padding: 34px 22px;
  }

  .split-feature.reverse .split-copy,
  .split-feature.reverse .split-media {
    order: initial;
  }

  .carousel-track {
    grid-auto-columns: 90%;
  }

  .feature-grid,
  .artist-grid,
  .principle-grid,
  .service-grid,
  .audience-cards,
  .audience-layout,
  .story-panel,
  .accordion-layout,
  .service-slide,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .artist-card img {
    height: 460px;
  }

  .story-panel {
    padding: 40px 24px;
  }

  .image-stack {
    position: static;
  }

  .image-stack img {
    height: 340px;
  }

  .service-slide {
    padding: 0;
  }

  .service-slide img {
    height: 400px;
  }

  .page-hero-copy {
    padding: 42px 26px;
  }

  .page-hero-media,
  .page-hero-media img,
  .media-statement img {
    min-height: 430px;
    max-height: 560px;
  }

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

  .process-step,
  .process-step:nth-child(3),
  .process-step:nth-child(n + 4) {
    min-height: 0;
    border-inline-end: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step strong {
    margin-block: 26px 10px;
  }

  .field.full,
  .check-field {
    grid-column: auto;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
