/* =========================================================
   custom.css — Adova theme overrides + new components
   Loaded AFTER style.css. Overrides win without !important.
   Uses the template's existing fonts (cs_primary_font + body).
   ========================================================= */

:root {
  --cs-accent: #f05023;
  --cs-accent-soft: rgba(255, 212, 0, 0.14);
  --cs-bg: #000;
  --cs-line: rgba(255, 255, 255, 0.12);
  --cs-text-dim: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------
   Black background (page + preloader)
   --------------------------------------------------------- */
body.cs_dark,
.cs_dark .cs_preloader_wrap {
  background-color: #000;
}

/* ---------------------------------------------------------
   Hero video background
   --------------------------------------------------------- */
.cs_hero.cs_style_2 .cs_hero_bg {
  overflow: hidden;
}

.cs_hero_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cs_hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.cs_hero.cs_style_2 .container {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   Showcase slider — full black background
   Overrides the dark-theme default white shape panel.
   --------------------------------------------------------- */
.cs_dark .cs_slider_6 .cs_slider_6_shape {
  background-color: #000;
}

.cs_hero_5_wrap {
  background-color: #000;
  position: relative;
}

/* ---------------------------------------------------------
   Scroll-down button (under the hero slider)
   --------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

.cs_scroll_down {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 18px;
  color: #fff;
  text-decoration: none;
  font-family: var(--cs-primary-font, inherit);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
  z-index: 6;
}

.cs_scroll_down:hover {
  color: var(--cs-accent, #f05023);
  border-color: var(--cs-accent, #f05023);
  background: rgba(0, 0, 0, 0.55);
  transform: translateX(-50%) translateY(-2px);
}

.cs_scroll_down_label {
  font-weight: 500;
  line-height: 1;
  opacity: 0.85;
}

.cs_scroll_down_arrow {
  display: inline-flex;
  animation: cs_scroll_down_bounce 1.8s ease-in-out infinite;
}

.cs_scroll_down_arrow svg {
  display: block;
}

@keyframes cs_scroll_down_bounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 575px) {
  .cs_scroll_down {
    bottom: 18px;
    padding: 10px 14px 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
}

/* =========================================================
   PROJECTS PAGE — editorial showcase
   ========================================================= */

/* Page header */
.cs_projects_header {
  position: relative;
  padding: clamp(120px, 14vw, 200px) 0 clamp(60px, 7vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.cs_projects_header_watermark {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-size: clamp(180px, 28vw, 420px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
}

.cs_projects_header_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.6));
  margin-bottom: 28px;
}

.cs_projects_header_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cs_projects_header_index {
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  font-feature-settings: "tnum";
}

.cs_projects_header_title {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 36px;
  max-width: 14ch;
}

.cs_projects_header_title em {
  font-style: italic;
  color: var(--cs-accent, #f05023);
}

.cs_projects_header_lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 1100px;
}

.cs_projects_header_lead p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 56ch;
}

.cs_projects_header_signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.5));
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cs_projects_header_lead {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Filter row */
.cs_projects_filter_wrap {
  border-top: 1px solid var(--cs-line, rgba(255, 255, 255, 0.12));
  border-bottom: 1px solid var(--cs-line, rgba(255, 255, 255, 0.12));
  padding: 18px 0;
  margin-bottom: clamp(48px, 6vw, 80px);
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
}

.cs_projects_filter_in {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cs_projects_filter_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_projects_filter {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}

.cs_projects_filter li {
  position: relative;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.cs_projects_filter li sup {
  font-size: 9px;
  margin-left: 6px;
  vertical-align: super;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.45));
  font-feature-settings: "tnum";
}

.cs_projects_filter li:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.cs_projects_filter li.active {
  color: #fff;
  border-color: var(--cs-accent, #f05023);
  background: rgba(240, 80, 35, 0.08);
}

.cs_projects_filter li.active sup {
  color: var(--cs-accent, #f05023);
}

/* Grid */
.cs_projects_section {
  padding-bottom: clamp(60px, 8vw, 120px);
}

.cs_projects_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: clamp(20px, 2.2vw, 36px);
}

.cs_project_card {
  grid-column: span 3;
  position: relative;
  isolation: isolate;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.cs_project_card_wide {
  grid-column: span 6;
}

.cs_project_card.is-hidden {
  display: none;
}

@media (max-width: 991px) {
  .cs_projects_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_project_card {
    grid-column: span 1;
  }
  .cs_project_card_wide {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .cs_projects_grid {
    grid-template-columns: 1fr;
  }
  .cs_project_card,
  .cs_project_card_wide {
    grid-column: span 1;
  }
}

.cs_project_card_link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s ease;
}

.cs_project_card_link:hover {
  color: inherit;
  border-color: rgba(240, 80, 35, 0.4);
  background: rgba(240, 80, 35, 0.03);
}

.cs_project_card_media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: #0c0c0c;
}

.cs_project_card_wide .cs_project_card_media {
  aspect-ratio: 21 / 9;
}

@media (max-width: 575px) {
  .cs_project_card_wide .cs_project_card_media {
    aspect-ratio: 4 / 3;
  }
}

.cs_project_card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
  filter: saturate(0.92);
}

.cs_project_card_link:hover .cs_project_card_media img {
  transform: scale(1.04);
  filter: saturate(1);
}

.cs_project_card_body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 8px;
}

.cs_project_card_meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-shrink: 0;
}

.cs_project_card_num {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cs-accent, #f05023);
  font-feature-settings: "tnum";
}

.cs_project_card_cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_project_card_title {
  flex: 1;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  text-align: right;
  max-width: 32ch;
  margin-left: auto;
}

.cs_project_card_wide .cs_project_card_title {
  font-size: clamp(22px, 1.8vw, 32px);
  max-width: 40ch;
}

.cs_project_card_arrow {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

.cs_project_card_link:hover .cs_project_card_arrow {
  color: var(--cs-accent, #f05023);
  transform: translate(3px, -3px);
}

@media (max-width: 575px) {
  .cs_project_card_body {
    flex-direction: column;
    gap: 12px;
  }
  .cs_project_card_title {
    text-align: left;
    margin-left: 0;
  }
}

/* Corner marks (editorial detail) */
.cs_project_card_corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.cs_project_card_corner_tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.cs_project_card_corner_br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.cs_project_card_link:hover .cs_project_card_corner {
  border-color: var(--cs-accent, #f05023);
}

/* Empty state */
.cs_projects_empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  font-size: 14px;
  letter-spacing: 0.08em;
}

.cs_projects_empty span {
  color: var(--cs-accent, #f05023);
  margin-right: 8px;
}

/* =========================================================
   PROJECT DETAIL PAGE
   ========================================================= */

/* Header */
.cs_project_detail_header {
  padding: clamp(110px, 13vw, 180px) 0 clamp(40px, 5vw, 70px);
  position: relative;
}

.cs_project_breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  margin-bottom: 36px;
}

.cs_project_breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.cs_project_breadcrumb a:hover {
  color: var(--cs-accent, #f05023);
}

.cs_project_breadcrumb_current {
  color: #fff;
}

.cs_project_detail_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.6));
  margin-bottom: 28px;
}

.cs_project_detail_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cs_project_detail_year {
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  font-feature-settings: "tnum";
}

.cs_project_detail_title {
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
  max-width: 16ch;
}

.cs_project_detail_title em {
  font-style: italic;
  color: var(--cs-accent, #f05023);
}

/* Arabic title — smaller, upright, sits under the English line */
.cs_project_detail_title em[lang="ar"] {
  font-style: normal;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.4;
  display: inline-block;
  margin-top: 14px;
}

.cs_project_detail_subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 60ch;
  margin: 0;
}

/* Hero image */
.cs_project_detail_hero {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(40px, 5vw, 70px);
}

.cs_project_detail_hero_figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.cs_project_detail_hero_figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cs_project_detail_hero_figure figcaption {
  margin-top: 16px;
  padding: 0 4px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.5));
}

.cs_project_detail_hero_figure figcaption span {
  color: var(--cs-accent, #f05023);
  margin-right: 8px;
}

/* Facts row */
.cs_project_facts_section {
  padding: clamp(30px, 4vw, 60px) 0;
  border-top: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  border-bottom: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
}

.cs_project_facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 36px);
}

.cs_project_facts.cs_project_facts--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.cs_project_fact_label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.5));
}

.cs_project_fact_value {
  font-size: clamp(14px, 1.1vw, 17px);
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .cs_project_facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .cs_project_facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Body */
.cs_project_body {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
}

.cs_project_body_grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.6fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 991px) {
  .cs_project_body_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cs_project_body_aside {
  position: sticky;
  top: 100px;
  padding-top: 6px;
}

.cs_project_body_aside .cs_about_asterisk {
  display: inline-block;
  font-size: 18px;
  color: var(--cs-accent, #f05023);
  margin-bottom: 18px;
}

.cs_project_body_aside_label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  margin-bottom: 14px;
}

.cs_project_body_aside p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-style: italic;
}

.cs_project_body_main p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}

.cs_project_lead {
  font-size: clamp(17px, 1.3vw, 21px) !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 40px !important;
}

.cs_project_body_h2 {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 44px 0 16px;
  position: relative;
  padding-left: 22px;
}

.cs_project_body_h2::before {
  content: "✻";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--cs-accent, #f05023);
  font-size: 0.7em;
}

.cs_project_body_list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  padding-top: 32px;
}

.cs_project_body_list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.cs_project_body_list_num {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cs-accent, #f05023);
  font-feature-settings: "tnum";
  padding-top: 3px;
}

.cs_project_body_list strong {
  color: #fff;
  font-weight: 600;
}

/* Gallery */
.cs_project_gallery_section {
  padding: clamp(40px, 6vw, 90px) 0;
}

.cs_project_gallery_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_project_gallery_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.cs_project_gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: clamp(16px, 1.8vw, 28px);
}

.cs_project_gallery_item {
  grid-column: span 3;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cs_project_gallery_item_wide {
  grid-column: span 6;
}

.cs_project_gallery_item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cs_project_gallery_item_wide img {
  aspect-ratio: 21 / 9;
}

.cs_project_gallery_item:hover img {
  transform: scale(1.03);
}

.cs_project_gallery_item figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.5));
}

@media (max-width: 991px) {
  .cs_project_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_project_gallery_item {
    grid-column: span 1;
  }
  .cs_project_gallery_item_wide {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .cs_project_gallery {
    grid-template-columns: 1fr;
  }
  .cs_project_gallery_item,
  .cs_project_gallery_item_wide {
    grid-column: span 1;
  }
  .cs_project_gallery_item_wide img {
    aspect-ratio: 4 / 3;
  }
}

/* Pull Quote */
.cs_project_quote_section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.cs_project_quote {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) clamp(30px, 4vw, 60px);
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  background:
    radial-gradient(ellipse at top left, rgba(240, 80, 35, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.015);
  text-align: center;
}

.cs_project_quote_mark {
  display: block;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.6;
  color: var(--cs-accent, #f05023);
  margin-bottom: 8px;
}

.cs_project_quote p {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  font-style: italic;
}

.cs_project_quote_footer {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cs_project_quote_name {
  color: #fff;
  font-weight: 600;
}

.cs_project_quote_role {
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

/* Credits */
.cs_project_credits_section {
  padding: clamp(40px, 5vw, 80px) 0;
  border-top: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
  border-bottom: 1px solid var(--cs-line, rgba(255, 255, 255, 0.1));
}

.cs_project_credits {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: clamp(30px, 4vw, 70px);
}

@media (max-width: 991px) {
  .cs_project_credits {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cs_project_credits_label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
  margin-bottom: 18px;
}

.cs_project_credits_tags,
.cs_project_credits_list,
.cs_project_credits_share {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_project_credits_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs_project_credits_tags li {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.cs_project_credits_tags li:hover {
  border-color: var(--cs-accent, #f05023);
  color: var(--cs-accent, #f05023);
}

.cs_project_credits_list li {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cs-line, rgba(255, 255, 255, 0.08));
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.cs_project_credits_list li:last-child {
  border-bottom: none;
}

.cs_project_credits_list li span:first-child {
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.5));
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 2px;
}

.cs_project_credits_share {
  display: flex;
  gap: 12px;
}

.cs_project_credits_share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cs_project_credits_share a:hover {
  border-color: var(--cs-accent, #f05023);
  color: var(--cs-accent, #f05023);
  transform: translateY(-2px);
}

/* Pagination */
.cs_project_pagination_section {
  padding: clamp(50px, 6vw, 90px) 0;
}

.cs_project_pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cs_project_pagination_index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cs_project_pagination_index_mark {
  color: var(--cs-accent, #f05023);
}

.cs_project_pagination_index:hover {
  color: var(--cs-accent, #f05023);
  border-color: var(--cs-accent, #f05023);
  background: rgba(240, 80, 35, 0.06);
}

.cs_project_pagination_next {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 18px;
  text-decoration: none;
  color: #fff;
  text-align: right;
}

.cs_project_pagination_label {
  grid-column: 2;
  grid-row: 1;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_project_pagination_title {
  grid-column: 2;
  grid-row: 2;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}

.cs_project_pagination_arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease, transform 0.3s ease;
}

.cs_project_pagination_next:hover .cs_project_pagination_title {
  color: var(--cs-accent, #f05023);
}

.cs_project_pagination_next:hover .cs_project_pagination_arrow {
  color: var(--cs-accent, #f05023);
  transform: translateX(6px);
}

@media (max-width: 575px) {
  .cs_project_pagination {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: left;
  }
  .cs_project_pagination_next {
    text-align: left;
  }
}

/* ---------------------------------------------------------
   Footer video background
   --------------------------------------------------------- */
.cs_footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cs_footer_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    /* match the statement-slider ambient wash */
    radial-gradient(ellipse 60% 70% at 85% 0%, rgba(240, 80, 35, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 0% 100%, rgba(240, 80, 35, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0a0808 0%, #060606 60%, #050505 100%);
}

.cs_footer_bg::before {
  content: none;
}

.cs_footer_overlay {
  display: none;
}

.cs_footer .container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   ABOUT US — Editorial studio section
   ========================================================= */

.cs_about {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
}

/* Homepage about: no gap below its content (chooser follows immediately) */
.cs_about.cs_style_1 {
  padding-bottom: 0;
}

/* Subtle graph-paper grid that fades at edges */
.cs_about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  pointer-events: none;
  z-index: -2;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

/* Massive ghost watermark word */
.cs_about_watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(180px, 32vw, 480px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  white-space: nowrap;
}

/* Animated soft accent blob */
.cs_about_blob {
  position: absolute;
  top: 35%;
  right: -10%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    var(--cs-accent) 0%,
    transparent 65%
  );
  opacity: 0.16;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: cs_blob_float 14s ease-in-out infinite;
}

@keyframes cs_blob_float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

/* --- Top meta bar --- */
.cs_about_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cs-line);
  margin-bottom: clamp(60px, 8vw, 120px);
  flex-wrap: wrap;
}

.cs_about_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.cs_about_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cs-accent);
  box-shadow: 0 0 0 4px var(--cs-accent-soft);
  animation: cs_pulse 2.4s ease-in-out infinite;
}

@keyframes cs_pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--cs-accent-soft);
  }
  50% {
    box-shadow: 0 0 0 12px transparent;
  }
}

.cs_about_index {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--cs-text-dim);
}

/* --- Main asymmetric grid --- */
.cs_about_grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(80px, 10vw, 140px);
}

.cs_about_left {
  position: relative;
}

/* Slowly rotating decorative asterisk near title */
.cs_about_decor_star {
  position: absolute;
  top: -32px;
  right: 8%;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--cs-accent);
  opacity: 0.55;
  animation: cs_spin 18s linear infinite;
  pointer-events: none;
  user-select: none;
}

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

/* --- Title --- */
.cs_about_title {
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
}

.cs_about_title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cs-accent);
}

.cs_about_title span {
  font-style: italic;
  font-weight: 400;
}

.cs_about_signature {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--cs-text-dim);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cs_about_signature_line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--cs-accent);
}

/* --- Right column --- */
.cs_about_right {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* --- Image / showreel card --- */
.cs_about_card_wrap {
  position: relative;
  display: block;
}

/* Ghost layered card behind for depth */
.cs_about_card_ghost {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(2deg) translate(20px, 18px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.cs_about_card_wrap:hover .cs_about_card_ghost {
  transform: rotate(3.5deg) translate(28px, 24px);
}

.cs_about_card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.8s ease;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.cs_about_card:hover {
  transform: rotate(0deg) scale(1.015);
  box-shadow:
    0 40px 100px -15px rgba(255, 212, 0, 0.25),
    0 0 0 1px rgba(255, 212, 0, 0.3);
}

/* Editorial cropmarks at corners */
.cs_about_card_corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  pointer-events: none;
}

.cs_about_card_corner_tl {
  top: 8px;
  left: 8px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.5);
  border-left: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cs_about_card_corner_tr {
  top: 8px;
  right: 8px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.5);
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cs_about_card_corner_bl {
  bottom: 8px;
  left: 8px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  border-left: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cs_about_card_corner_br {
  bottom: 8px;
  right: 8px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cs_about_card_media {
  position: absolute;
  inset: 0;
  display: block;
}

.cs_about_card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition:
    transform 1.2s ease,
    filter 0.6s ease;
}

.cs_about_card:hover .cs_about_card_media img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}

/* Editorial label at top-left */
.cs_about_card_label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.cs_about_card_label_mark {
  display: inline-block;
  font-size: 10px;
  color: var(--cs-accent);
  animation: cs_spin 14s linear infinite;
}

/* Stamp at bottom-right */
.cs_about_card_stamp {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.cs_about_card_stamp_dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cs-accent);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.18);
}

/* --- Lead paragraph + drop cap --- */
/* --- Lead paragraph + drop cap --- */
.cs_about_lead {
  max-width: 560px;
  margin-bottom: 40px;
}

.cs_about_lead p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

.cs_drop_cap {
  float: left;
  font-weight: 500;
  font-size: 3.6em;
  line-height: 0.85;
  margin: 0.05em 0.14em -0.05em 0;
  color: var(--cs-accent);
}

.cs_about_link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--cs-line);
  padding-bottom: 6px;
  transition:
    gap 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.cs_about_link svg {
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs_about_link:hover {
  gap: 22px;
  color: var(--cs-accent);
  border-color: var(--cs-accent);
}

.cs_about_link:hover svg {
  transform: translateX(6px);
}

/* =========================================================
   Values marquee — full bleed strip
   ========================================================= */

.cs_about_values_marquee {
  margin: clamp(40px, 5vw, 70px) 0 clamp(70px, 8vw, 110px);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-top: 1px solid var(--cs-line);
  border-bottom: 1px solid var(--cs-line);
  position: relative;
}

.cs_about_values_marquee .cs_marquee_text {
  font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.cs_about_values_dot {
  display: inline-block;
  margin: 0 clamp(20px, 3vw, 56px);
  color: var(--cs-accent);
  font-size: 0.55em;
  vertical-align: 0.18em;
  animation: cs_spin 14s linear infinite;
}

/* --- Services row --- */
.cs_about_services {
  margin-bottom: clamp(64px, 7vw, 100px);
}

.cs_about_services_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cs_about_services_label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cs_about_asterisk {
  display: inline-block;
  font-size: 13px;
  color: var(--cs-accent);
  animation: cs_spin 12s linear infinite;
}

.cs_about_services_count {
  font-style: italic;
  font-size: 15px;
  color: var(--cs-text-dim);
}

.cs_about_services_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cs-line);
}

.cs_about_service {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--cs-line);
  border-bottom: 1px solid transparent;
  cursor: default;
  transition:
    padding-left 0.5s cubic-bezier(0.65, 0, 0.35, 1),
    border-color 0.5s ease;
}

.cs_about_service_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cs_about_service:last-child {
  border-right: none;
}

.cs_about_service::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cs-accent);
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs_about_service:hover {
  padding-left: 18px;
}

.cs_about_service:hover::before {
  width: 100%;
}

.cs_about_service_num {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--cs-accent);
  letter-spacing: 0.02em;
  padding-top: 6px;
}

.cs_about_service_name {
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.cs_about_service_desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--cs-text-dim);
  letter-spacing: 0.01em;
  max-width: 220px;
}

.cs_about_service_arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cs-line);
  color: var(--cs-text-dim);
  opacity: 0;
  transform: translateX(-8px);
  margin-top: 2px;
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}

.cs_about_service:hover .cs_about_service_arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--cs-accent);
  border-color: var(--cs-accent);
  color: #000;
}

/* =========================================================
   Stats — Editorial annual report
   ========================================================= */
.cs_about_stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cs-line);
}

.cs_about_stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px 28px 36px 28px;
  border-right: 1px solid var(--cs-line);
  cursor: default;
  transition: background 0.5s ease;
  isolation: isolate;
}

.cs_about_stat:last-child {
  border-right: none;
}

/* Vertical accent stripe — left edge, grows top-down on hover */
.cs_about_stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--cs-accent);
  transition: height 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs_about_stat:hover::before {
  height: 100%;
}

/* Subtle background tint on hover */
.cs_about_stat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(255, 212, 0, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cs_about_stat:hover::after {
  opacity: 1;
}

/* Eyebrow index "№ 01" */
.cs_about_stat_index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim);
  font-weight: 600;
  transition: color 0.4s ease;
}

.cs_about_stat_index::after {
  content: "";
  flex: 0 1 28px;
  height: 1px;
  background: var(--cs-line);
  transition:
    background 0.4s ease,
    flex-basis 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs_about_stat:hover .cs_about_stat_index {
  color: var(--cs-accent);
}

.cs_about_stat:hover .cs_about_stat_index::after {
  background: var(--cs-accent);
  flex-basis: 56px;
}

/* The number — bigger, cleaner */
.cs_about_stat_num {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cs_about_stat:hover .cs_about_stat_num {
  transform: translateX(4px);
}

/* Bigger, integrated + sign */
.cs_about_stat_num sup {
  display: inline-block;
  font-size: 0.5em;
  font-style: italic;
  font-weight: 400;
  color: var(--cs-accent);
  margin-left: 0.06em;
  top: -0.45em;
  position: relative;
}

/* Label below */
.cs_about_stat_label {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-top: auto;
  transition: color 0.4s ease;
}

.cs_about_stat:hover .cs_about_stat_label {
  color: #fff;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1199px) {
  .cs_about_grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .cs_about_card_wrap {
    max-width: 480px;
  }
  .cs_about_decor_star {
    top: -24px;
    right: 4%;
  }
}

@media (max-width: 991px) {
  .cs_about_services_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_about_service:nth-child(2n) {
    border-right: none;
  }
  .cs_about_service:nth-child(2n + 1) {
    border-right: 1px solid var(--cs-line);
  }
  .cs_about_service:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cs-line);
  }
}

@media (max-width: 767px) {
  .cs_about_watermark {
    font-size: 38vw;
    -webkit-text-stroke-width: 1px;
  }
  .cs_about_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cs_about_decor_star {
    font-size: 32px;
    top: -16px;
    right: 0;
  }
  .cs_about_right {
    gap: 40px;
  }
  .cs_about_card {
    transform: rotate(0deg);
  }
  .cs_about_card_ghost {
    display: none;
  }
  .cs_about_card_label,
  .cs_about_card_stamp {
    font-size: 10px;
    padding: 6px 10px;
  }
  .cs_about_card_stamp {
    font-size: 12px;
  }
  .cs_about_card_corner {
    width: 12px;
    height: 12px;
  }
  .cs_about_blob {
    width: 320px;
    height: 320px;
  }
  .cs_about_values_dot {
    margin: 0 18px;
  }
  .cs_about_service_desc {
    max-width: none;
  }
  .cs_about_stats {
    grid-template-columns: repeat(2, 1fr);
    border-top: none;
  }
  .cs_about_stat {
    border-top: 1px solid var(--cs-line);
    padding: 32px 18px 28px 18px;
    gap: 22px;
  }
  .cs_about_stat:nth-child(2n) {
    border-right: none;
  }
  .cs_about_stat:nth-child(2n + 1) {
    border-right: 1px solid var(--cs-line);
  }
  .cs_about_stat_index {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 10px;
  }
  .cs_about_stat_index::after {
    flex-basis: 18px;
  }
  .cs_drop_cap {
    font-size: 3em;
  }
}

@media (max-width: 479px) {
  .cs_about {
    padding: 64px 0;
  }
  .cs_about_title {
    margin-bottom: 24px;
  }
  .cs_about_services_list {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--cs-line);
  }
  .cs_about_service {
    border-right: none !important;
    border-bottom: 1px solid var(--cs-line);
    padding: 24px 16px 24px 0;
  }
  .cs_about_service:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   PROJECTS CHOOSER — split panels for Events / Booths
   ========================================================= */

/* Intro */
.cs_chooser_intro {
  padding: clamp(110px, 13vw, 180px) 0 clamp(40px, 5vw, 70px);
}

.cs_chooser_intro_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.6));
  margin-bottom: 28px;
}

.cs_chooser_intro_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cs_chooser_intro_title {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
  max-width: 18ch;
}

.cs_chooser_intro_title em {
  font-style: italic;
  color: var(--cs-accent, #f05023);
}

.cs_chooser_intro_lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 56ch;
  margin: 0;
}

/* Split chooser */
.cs_chooser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cs-line, rgba(255, 255, 255, 0.1));
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.cs_chooser_panel {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(360px, 46vh, 520px);
}

/* Background image */
.cs_chooser_panel_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  filter: saturate(0.78) brightness(0.62);
  transition:
    transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s ease;
  z-index: 0;
}

.cs_chooser_panel:hover .cs_chooser_panel_bg {
  transform: scale(1.14);
  filter: saturate(1) brightness(0.75);
}

/* Dark gradient overlay */
.cs_chooser_panel_overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.75) 100%),
    radial-gradient(ellipse at top left, rgba(240, 80, 35, 0.20) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.6s ease;
}

.cs_chooser_panel:hover .cs_chooser_panel_overlay {
  opacity: 0.75;
}

/* Subtle film grain */
.cs_chooser_panel_grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* Content layer */
.cs_chooser_panel_inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: clamp(520px, 75vh, 760px);
  padding: clamp(28px, 4vw, 56px);
}

/* Top row — index + count */
.cs_chooser_panel_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cs_chooser_panel_index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-feature-settings: "tnum";
}

.cs_chooser_panel_asterisk {
  color: var(--cs-accent, #f05023);
  font-size: 14px;
  transition: transform 0.6s ease;
}

.cs_chooser_panel:hover .cs_chooser_panel_asterisk {
  transform: rotate(180deg);
}

.cs_chooser_panel_count {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: border-color 0.4s ease, color 0.4s ease;
}

.cs_chooser_panel:hover .cs_chooser_panel_count {
  border-color: var(--cs-accent, #f05023);
  color: var(--cs-accent, #f05023);
}

/* Center — big title + meta */
.cs_chooser_panel_center {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 28ch;
}

.cs_chooser_panel_label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cs_chooser_panel_title {
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #fff;
  position: relative;
  display: inline-block;
}

.cs_chooser_panel_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--cs-accent, #f05023);
  transition: width 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs_chooser_panel:hover .cs_chooser_panel_title::after {
  width: 100%;
}

.cs_chooser_panel_desc {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

/* Bottom — CTA */
.cs_chooser_panel_bottom {
  display: flex;
  align-items: flex-end;
}

.cs_chooser_panel_cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease,
    padding 0.4s ease;
}

.cs_chooser_panel_cta_arrow {
  display: inline-flex;
  transition: transform 0.4s ease;
}

.cs_chooser_panel:hover .cs_chooser_panel_cta {
  background: var(--cs-accent, #f05023);
  border-color: var(--cs-accent, #f05023);
  color: #fff;
  padding-right: 30px;
}

.cs_chooser_panel:hover .cs_chooser_panel_cta_arrow {
  transform: translateX(6px);
}

/* Corner marks */
.cs_chooser_panel_corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.cs_chooser_panel_corner_tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.cs_chooser_panel_corner_br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.cs_chooser_panel:hover .cs_chooser_panel_corner {
  border-color: var(--cs-accent, #f05023);
  width: 26px;
  height: 26px;
}

/* Responsive — single column on tablet down */
@media (max-width: 991px) {
  .cs_chooser {
    grid-template-columns: 1fr;
  }
  .cs_chooser_panel {
    min-height: 60vh;
  }
  .cs_chooser_panel_inner {
    min-height: 60vh;
  }
}

@media (max-width: 575px) {
  .cs_chooser_panel {
    min-height: 70vh;
  }
  .cs_chooser_panel_inner {
    padding: 28px 24px;
    min-height: 70vh;
  }
  .cs_chooser_panel_title {
    font-size: clamp(52px, 14vw, 88px);
  }
  .cs_chooser_panel_corner_tl {
    top: 14px;
    left: 14px;
  }
  .cs_chooser_panel_corner_br {
    bottom: 14px;
    right: 14px;
  }
}

/* =========================================================
   STATEMENT SLIDER — editorial split-layout hero
   ========================================================= */

.cs_statement_slider_wrap {
  position: relative;
  width: 100%;
  background: #060606;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--cs-line, rgba(255, 255, 255, 0.08));
}

/* Ambient warm backdrop — soft sunrise glow from upper-right */
.cs_statement_slider_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 0%, rgba(240, 80, 35, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 0% 100%, rgba(240, 80, 35, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0a0808 0%, #060606 60%, #050505 100%);
  pointer-events: none;
}

/* Decorative vertical grid lines across the section */
.cs_statement_grid_lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.cs_statement_grid_lines span {
  border-right: 1px solid rgba(255, 255, 255, 0.025);
}

.cs_statement_grid_lines span:last-child {
  border-right: none;
}

/* Vertical edge label — runs down the right edge */
.cs_statement_edge {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 38px;
  z-index: 6;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cs_statement_edge span {
  display: inline-block;
  white-space: nowrap;
  transform: rotate(90deg);
  font-family: var(--cs-primary-font, inherit);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* Top progress bar */
.cs_statement_progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 38px;
  height: 2px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cs_statement_progress_bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cs-accent, #f05023);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Slider container */
.cs_statement_slider {
  position: relative;
  width: 100%;
  height: clamp(620px, 90vh, 900px);
  overflow: hidden;
  z-index: 1;
}

.cs_statement_slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Grid: content left, image right — image takes more space */
.cs_statement_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  padding: clamp(140px, 16vh, 200px) clamp(20px, 3vw, 40px) clamp(60px, 7vh, 100px);
}

/* Vertical decorative separator between content and image */
.cs_statement_divider_v {
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 18%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}

.swiper-slide-active .cs_statement_divider_v {
  opacity: 1;
}

.cs_statement_divider_v_line {
  display: block;
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.cs_statement_divider_v_mark {
  font-size: 14px;
  color: var(--cs-accent, #f05023);
  animation: cs_statement_mark_spin 12s linear infinite;
}

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

.cs_statement_slider_wrap .cs_statement_inner {
  padding-right: clamp(60px, 6vw, 80px); /* leave room for vertical edge label */
}

/* ---------- Left: content ---------- */
.cs_statement_content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}

/* eyebrow + divider line */
.cs_statement_meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs_statement_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-feature-settings: "tnum";
}

.cs_statement_divider {
  display: inline-block;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--cs-accent, #f05023) 0%, rgba(255, 255, 255, 0.18) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.35s;
  max-width: 100px;
}

.swiper-slide-active .cs_statement_divider {
  transform: scaleX(1);
}

/* title — word-by-word reveal */
.cs_statement_title {
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.28em;
  row-gap: 0.06em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.cs_statement_title em {
  font-style: italic;
  color: var(--cs-accent, #f05023);
}

.cs_statement_title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.04;
  padding-bottom: 0.08em;
}

.cs_statement_title .word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.95s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.swiper-slide-active .cs_statement_title .word > span {
  transform: translateY(0);
}

/* stagger word delays — covers up to 8 words */
.swiper-slide-active .cs_statement_title .word:nth-child(1) > span { transition-delay: 0.18s; }
.swiper-slide-active .cs_statement_title .word:nth-child(2) > span { transition-delay: 0.26s; }
.swiper-slide-active .cs_statement_title .word:nth-child(3) > span { transition-delay: 0.34s; }
.swiper-slide-active .cs_statement_title .word:nth-child(4) > span { transition-delay: 0.42s; }
.swiper-slide-active .cs_statement_title .word:nth-child(5) > span { transition-delay: 0.50s; }
.swiper-slide-active .cs_statement_title .word:nth-child(6) > span { transition-delay: 0.58s; }
.swiper-slide-active .cs_statement_title .word:nth-child(7) > span { transition-delay: 0.66s; }
.swiper-slide-active .cs_statement_title .word:nth-child(8) > span { transition-delay: 0.74s; }

/* description */
.cs_statement_desc {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
  max-width: 44ch;
  margin: 4px 0 0;
  padding-left: 32px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s;
}

/* Leading dash mark for the description — editorial */
.cs_statement_desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 20px;
  height: 1px;
  background: var(--cs-accent, #f05023);
}

.swiper-slide-active .cs_statement_desc {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.cs_statement_cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  align-self: flex-start;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease 0.85s,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.85s,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    padding 0.35s ease;
  margin-top: 6px;
}

.swiper-slide-active .cs_statement_cta {
  opacity: 1;
  transform: translateY(0);
}

.cs_statement_cta:hover {
  background: var(--cs-accent, #f05023);
  border-color: var(--cs-accent, #f05023);
  color: #fff;
  padding-right: 30px;
}

.cs_statement_cta_arrow {
  display: inline-flex;
  transition: transform 0.35s ease;
}

.cs_statement_cta:hover .cs_statement_cta_arrow {
  transform: translateX(6px);
}

/* ---------- Right: image card (bigger, framed) ---------- */
.cs_statement_visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cs_statement_image {
  position: relative;
  width: 100%;
  height: clamp(440px, 70vh, 680px);
  max-width: 720px;
  overflow: hidden;
  background: #0a0a0a;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

/* Inner matte frame — gives a "framed print" feel */
.cs_statement_image::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 3;
}

.cs_statement_image_bg {
  position: absolute;
  inset: 10px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.85) brightness(0.82) contrast(1.04);
  /* clip-in animation from top */
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1) 0.15s,
    transform 10s ease-out 1.5s,
    filter 0.5s ease;
  transform: scale(1.04);
}

.swiper-slide-active .cs_statement_image_bg {
  clip-path: inset(0 0 0 0);
  transform: scale(1.14);
}

.cs_statement_image:hover .cs_statement_image_bg {
  filter: saturate(1) brightness(0.9) contrast(1.06);
}

/* corner brackets on the image */
.cs_statement_image_corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--cs-accent, #f05023);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease 1.1s, width 0.4s ease, height 0.4s ease;
}

.swiper-slide-active .cs_statement_image_corner {
  opacity: 1;
}

.cs_statement_image:hover .cs_statement_image_corner {
  width: 28px;
  height: 28px;
}

.cs_statement_image_corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cs_statement_image_corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.cs_statement_image_corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.cs_statement_image_corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Rotated stamp — editorial detail in image bottom-left */
.cs_statement_image_stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--cs-primary-font, inherit);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease 1.3s, transform 0.7s ease 1.3s;
}

.swiper-slide-active .cs_statement_image_stamp {
  opacity: 1;
  transform: translateY(0);
}

/* image caption — sits below the image */
.cs_statement_image_caption {
  position: absolute;
  bottom: -32px;
  left: 4px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.6s ease 1.2s;
}

.swiper-slide-active .cs_statement_image_caption {
  opacity: 1;
}

.cs_statement_image_caption span {
  color: var(--cs-accent, #f05023);
  margin-right: 8px;
}

/* Massive ghost number — subtle watermark behind the image */
.cs_statement_number {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translate(0, -50%);
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 80, 35, 0.10);
  text-stroke: 1px rgba(240, 80, 35, 0.10);
  z-index: -1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 1.2s ease 0.45s, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s;
}

.swiper-slide-active .cs_statement_number {
  opacity: 1;
  transform: translate(2%, -50%);
}

/* ---------- Bottom controls ---------- */
.cs_statement_controls {
  position: relative;
  z-index: 7;
  margin-right: 38px; /* leave space for the vertical edge label */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs_statement_controls_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px clamp(20px, 3vw, 40px);
}

/* Nav cluster — arrows + counter */
.cs_statement_nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.cs_statement_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.cs_statement_arrow:hover {
  border-color: var(--cs-accent, #f05023);
  color: var(--cs-accent, #f05023);
  background: rgba(240, 80, 35, 0.06);
}

.cs_statement_prev:hover { transform: translateX(-2px); }
.cs_statement_next:hover { transform: translateX(2px); }

.cs_statement_counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  font-feature-settings: "tnum";
  min-width: 80px;
  justify-content: center;
}

.cs_statement_counter .current {
  color: var(--cs-accent, #f05023);
  font-size: 16px;
  font-weight: 600;
}

.cs_statement_counter .divider {
  opacity: 0.4;
}

/* Pagination — minimal dots that grow into bars */
.cs_statement_pagination {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.cs_statement_pagination .swiper-pagination-bullet {
  width: 36px;
  height: 24px;
  background: transparent;
  border: none;
  opacity: 1;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cs_statement_pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(50%);
  transition: background 0.3s ease, height 0.3s ease;
}

.cs_statement_pagination .swiper-pagination-bullet:hover::before {
  background: rgba(255, 255, 255, 0.5);
}

.cs_statement_dot_label {
  font-family: var(--cs-primary-font, inherit);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.0);
  font-weight: 600;
  font-feature-settings: "tnum";
  transition: color 0.35s ease, transform 0.35s ease;
  position: relative;
  z-index: 1;
  background: #060606;
  padding: 0 6px;
}

.cs_statement_pagination .swiper-pagination-bullet-active .cs_statement_dot_label {
  color: var(--cs-accent, #f05023);
}

.cs_statement_pagination .swiper-pagination-bullet-active::before {
  background: var(--cs-accent, #f05023);
  height: 2px;
}

/* Autoplay toggle */
.cs_statement_autoplay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.cs_statement_autoplay:hover {
  border-color: var(--cs-accent, #f05023);
  color: var(--cs-accent, #f05023);
}

.cs_statement_autoplay_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cs-accent, #f05023);
  box-shadow: 0 0 0 3px rgba(240, 80, 35, 0.18);
  animation: cs_statement_pulse 1.6s ease-in-out infinite;
}

.cs_statement_autoplay[data-state="paused"] .cs_statement_autoplay_dot {
  background: rgba(255, 255, 255, 0.5);
  animation: none;
  box-shadow: none;
}

@keyframes cs_statement_pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(240, 80, 35, 0.20); }
  50%      { box-shadow: 0 0 0 6px rgba(240, 80, 35, 0.04); }
}

/* ===== Responsive ===== */

/* Tablet / small desktop */
@media (max-width: 1199px) {
  .cs_statement_slider {
    height: clamp(560px, 80vh, 760px);
  }
  .cs_statement_inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
  }
}

/* Tablet — stack image above content */
@media (max-width: 991px) {
  .cs_statement_slider {
    height: auto;
    min-height: clamp(720px, 95vh, 1000px);
  }
  .cs_statement_slide {
    height: auto;
    min-height: clamp(720px, 95vh, 1000px);
  }
  .cs_statement_inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: clamp(110px, 14vh, 160px) clamp(28px, 5vw, 60px) clamp(50px, 7vh, 80px);
  }
  .cs_statement_slider_wrap .cs_statement_inner {
    padding-right: clamp(38px, 5vw, 60px);
  }
  .cs_statement_visual {
    order: -1;
    justify-content: center;
  }
  .cs_statement_image {
    height: clamp(360px, 50vh, 480px);
    max-width: 100%;
  }
  .cs_statement_number {
    font-size: clamp(140px, 30vw, 280px);
    right: 70%;
  }
  .cs_statement_title {
    font-size: clamp(38px, 6.8vw, 68px);
  }
  .cs_statement_divider_v {
    display: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .cs_statement_edge {
    width: 26px;
  }
  .cs_statement_edge span {
    font-size: 9px;
    letter-spacing: 0.3em;
  }
  .cs_statement_progress {
    right: 26px;
  }
  .cs_statement_slider_wrap .cs_statement_inner {
    padding: 90px 20px 40px;
    padding-right: 46px;
  }
  .cs_statement_controls {
    margin-right: 26px;
  }
  .cs_statement_title {
    font-size: clamp(34px, 9vw, 48px);
  }
  .cs_statement_eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .cs_statement_divider {
    max-width: 80px;
  }
  .cs_statement_image {
    height: clamp(280px, 42vh, 380px);
    padding: 8px;
  }
  .cs_statement_image_bg {
    inset: 8px;
  }
  .cs_statement_image::after {
    inset: 8px;
  }
  .cs_statement_image_caption {
    bottom: -22px;
    font-size: 9px;
    letter-spacing: 0.24em;
  }
  .cs_statement_number {
    display: none;
  }
  .cs_statement_controls {
    right: 26px;
  }
  .cs_statement_controls_in {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    justify-content: center;
  }
  .cs_statement_autoplay {
    display: none;
  }
  .cs_statement_pagination {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
  }
  .cs_statement_arrow {
    width: 38px;
    height: 38px;
  }
}

/* ---------------------------------------------------------
   WhatsApp inline icon (contact page)
   --------------------------------------------------------- */
.cs_wa_inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 10px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cs_wa_inline:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-2px);
}
.cs_wa_inline:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* =========================================================
   CONTACT PAGE — editorial
   ========================================================= */

.cs_contact_header {
  padding-bottom: clamp(40px, 5vw, 70px);
}

/* Branches */
.cs_contact_branches_section {
  padding-top: clamp(10px, 2vw, 24px);
}

/* Email block */
.cs_contact_email {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 44px);
  margin-bottom: clamp(28px, 3vw, 44px);
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.12));
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.35s ease, background 0.35s ease;
}

.cs_contact_email:hover {
  color: #fff;
  border-color: var(--cs-accent, #f05023);
  background: rgba(240, 80, 35, 0.06);
}

.cs_contact_email_meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_contact_email_value {
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-left: auto;
}

.cs_contact_email_arrow {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--cs-accent, #f05023);
  transition: transform 0.35s ease;
}

.cs_contact_email:hover .cs_contact_email_arrow {
  transform: translate(3px, -3px);
}

/* Branch cards */
.cs_contact_branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.cs_contact_branch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.12));
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.4s ease;
}

.cs_contact_branch:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

.cs_contact_branch_num {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--cs-accent, #f05023);
  font-feature-settings: "tnum";
  margin-bottom: clamp(20px, 3vw, 40px);
}

.cs_contact_branch_country {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.cs_contact_branch_city {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_contact_branch_tel {
  margin-top: 10px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.cs_contact_branch_tel:hover {
  color: var(--cs-accent, #f05023);
}

.cs_contact_branch_wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cs_contact_branch_wa i {
  font-size: 16px;
}

.cs_contact_branch_wa:hover {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

/* Capital map embed — sits at the foot of each branch card */
.cs_contact_branch_map {
  margin-top: auto;
  padding-top: 22px;
}

.cs_contact_branch_map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 1px solid var(--cs-line, rgba(255, 255, 255, 0.12));
  border-radius: 2px;
  filter: grayscale(1) contrast(0.95) opacity(0.85);
  transition: filter 0.4s ease;
}

.cs_contact_branch:hover .cs_contact_branch_map iframe {
  filter: grayscale(0) contrast(1) opacity(1);
}

/* Form head */
.cs_contact_form_head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs_contact_form_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-text-dim, rgba(255, 255, 255, 0.55));
}

.cs_contact_form_title {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.cs_contact_form_title em {
  font-style: italic;
  color: var(--cs-accent, #f05023);
}

@media (max-width: 991px) {
  .cs_contact_branches {
    grid-template-columns: 1fr;
  }
  .cs_contact_branch_num {
    margin-bottom: 8px;
  }
  .cs_contact_email {
    flex-wrap: wrap;
    gap: 14px;
  }
  .cs_contact_email_value {
    margin-left: 0;
    flex-basis: 100%;
  }
}

/* =========================================================
   ABOUT — "What/Who We Do" media (replaces the placeholder icons)
   ========================================================= */
.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
  width: 100%;
  max-width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_2 .cs_iconbox_icon img {
    height: 340px;
  }
}

/* =========================================================
   SOCIAL — inline X (Twitter) SVG matched to the FA icon buttons
   (FA 6.2.1 has no fa-x-twitter glyph, so X uses an inline SVG;
   the drop-shadow replicates the slide-hover used on the font icons.)
   ========================================================= */
.cs_social_btns ul a .cs_social_x {
  width: 14px;
  height: 14px;
  fill: currentColor;
  filter: drop-shadow(-30px 0 0 currentColor);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cs_social_btns ul a:hover .cs_social_x {
  transform: translateX(30px);
}

/* =========================================================
   BRANDING — 2-per-row display grid (no detail links)
   ========================================================= */
.cs_branding_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cs_branding_item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cs-line);
  background: rgba(255, 255, 255, 0.03);
}

.cs_branding_item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs_branding_item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .cs_branding_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Core Services icons — Font Awesome glyphs on the dark theme. */
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--cs-line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon i {
  font-size: 26px;
  line-height: 1;
  color: var(--cs-accent);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
  transform: translateY(-4px);
  border-color: var(--cs-accent);
  background: var(--cs-accent-soft);
}

/* =========================================================
   PRELOADER — SVG logo creative-fill (reveal wipe)
   The real Review Design logo is fill-only (no strokes), so the
   "creative fill" is a left-to-right wipe that paints the white
   mark in over a black ground, with a soft settle + glow.
   ========================================================= */
.cs_preloader_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_preloader_logo_svg {
  width: clamp(190px, 34vw, 380px);
  height: auto;
  display: block;
  overflow: visible;
}

/* Ghost layer: the full logo at low opacity so the silhouette is
   hinted before the fill sweeps across it. */
.cs_preloader_logo_svg {
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  animation:
    cs_logo_fade 0.45s ease forwards,
    cs_logo_wipe 1.25s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards,
    cs_logo_settle 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s both;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}

/* 1 — the mark fades up from black to a low ghost. */
@keyframes cs_logo_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 2 — the white fill wipes across from left to right. */
@keyframes cs_logo_wipe {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

/* 3 — a small breathe + glow once the mark lands. */
@keyframes cs_logo_settle {
  0% {
    transform: scale(0.985);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  55% {
    transform: scale(1.012);
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.28));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}

/* Respect reduced-motion: show the finished logo, no wipe. */
@media (prefers-reduced-motion: reduce) {
  .cs_preloader_logo_svg {
    animation: none;
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    filter: none;
  }
}