@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;400;500;600;700;800&display=swap");

:root {
  --rs-red: #d90612;
  --rs-red-dark: #aa0710;
  --rs-ink: #151716;
  --rs-ink-soft: #242725;
  --rs-concrete: #f1eee7;
  --rs-paper: #fbfaf7;
  --rs-white: #ffffff;
  --rs-muted: #686b68;
  --rs-line: rgba(21, 23, 22, 0.17);
  --rs-line-light: rgba(255, 255, 255, 0.18);
  --rs-container: 1440px;
  --rs-gutter: clamp(20px, 4vw, 64px);
  --rs-section: clamp(92px, 10vw, 156px);
  --rs-display: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --rs-body: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --rs-ease: cubic-bezier(.2, .75, .2, 1);
  --rs-fast: 220ms var(--rs-ease);
}

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

html {
  scroll-behavior: smooth;
}

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

body.rs-menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

figure,
blockquote,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

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

.rs-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.rs-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--rs-white);
  color: var(--rs-ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform var(--rs-fast);
}

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

:focus-visible {
  outline: 2px solid var(--rs-red);
  outline-offset: 4px;
}

.scroll__top {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: var(--rs-ink);
  color: var(--rs-white);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--rs-fast), transform var(--rs-fast), background var(--rs-fast);
}

.scroll__top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.scroll__top:hover {
  background: var(--rs-red);
}

/* Header */
.rs-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--rs-white);
  box-shadow: 0 0 0 transparent;
  transition: box-shadow var(--rs-fast);
}

.rs-site-header.rs-is-scrolled {
  box-shadow: 0 13px 32px rgba(0,0,0,.08);
}

.rs-utility-bar {
  min-height: 34px;
  background: var(--rs-ink);
  color: rgba(255,255,255,.7);
}

.rs-utility-inner,
.rs-primary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rs-utility-inner {
  min-height: 34px;
  gap: 24px;
}

.rs-utility-positioning,
.rs-utility-links {
  display: flex;
  align-items: center;
}

.rs-utility-positioning {
  gap: 9px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs-utility-positioning [aria-hidden="true"] {
  color: var(--rs-red);
}

.rs-utility-links {
  gap: 22px;
  font-size: 10px;
  letter-spacing: .05em;
}

.rs-utility-links > a:hover,
.rs-utility-links > a:focus-visible {
  color: var(--rs-white);
}

.rs-social-links {
  display: flex;
  border-left: 1px solid rgba(255,255,255,.18);
}

.rs-social-links a {
  width: 31px;
  display: grid;
  place-items: center;
}

.rs-primary-bar {
  border-bottom: 1px solid rgba(21,23,22,.1);
}

.rs-primary-inner {
  min-height: 82px;
}

.rs-logo,
.rs-drawer-logo {
  display: block;
}

.rs-logo img {
  width: 181px;
  height: auto;
}

.rs-desktop-nav {
  margin-left: auto;
}

.rs-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 34px);
}

.rs-nav-link {
  position: relative;
  height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rs-ink);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.rs-nav-link::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  background: var(--rs-red);
  content: "";
  transition: right var(--rs-fast), left var(--rs-fast);
}

.rs-nav-link:hover::after,
.rs-nav-link:focus-visible::after,
.rs-nav-link.rs-is-current::after {
  right: 0;
  left: 0;
}

.rs-dropdown {
  position: relative;
}

.rs-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -28px;
  width: 260px;
  padding: 13px 0;
  background: var(--rs-white);
  border-top: 2px solid var(--rs-red);
  box-shadow: 0 24px 45px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--rs-fast), transform var(--rs-fast), visibility var(--rs-fast);
}

.rs-dropdown:hover .rs-dropdown-menu,
.rs-dropdown:focus-within .rs-dropdown-menu,
.rs-dropdown-toggle[aria-expanded="true"] + .rs-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.rs-dropdown-menu a {
  display: block;
  padding: 11px 28px;
  color: #454946;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.rs-dropdown-menu a:hover,
.rs-dropdown-menu a:focus-visible {
  background: var(--rs-concrete);
  color: var(--rs-red);
}

.rs-project-cta,
.rs-whatsapp-cta {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  background: var(--rs-red);
  color: var(--rs-white);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background var(--rs-fast), color var(--rs-fast);
}

.rs-desktop-cta {
  margin-left: clamp(22px, 2.6vw, 40px);
}

.rs-project-cta:hover,
.rs-project-cta:focus-visible {
  background: var(--rs-ink);
}

.rs-menu-trigger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--rs-ink);
  color: var(--rs-white);
}

.rs-menu-trigger-lines {
  width: 21px;
  margin: auto;
  display: grid;
  gap: 6px;
}

.rs-menu-trigger-lines span {
  height: 1px;
  background: currentColor;
}

.rs-menu-trigger-lines span:last-child {
  width: 14px;
  margin-left: auto;
}

.rs-drawer-overlay {
  position: fixed;
  z-index: 1090;
  inset: 0;
  background: rgba(0,0,0,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 330ms var(--rs-ease), visibility 330ms var(--rs-ease);
}

.rs-mobile-drawer {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 92vw);
  background: var(--rs-paper);
  box-shadow: -25px 0 60px rgba(0,0,0,.18);
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 430ms var(--rs-ease);
}

.rs-menu-open .rs-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.rs-menu-open .rs-mobile-drawer {
  transform: none;
}

.rs-drawer-header {
  min-height: 81px;
  padding: 0 22px;
  border-bottom: 1px solid var(--rs-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rs-drawer-logo img {
  width: 164px;
  height: auto;
}

.rs-drawer-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--rs-line);
  background: transparent;
  display: grid;
  place-items: center;
}

.rs-drawer-body {
  padding: 35px 24px 45px;
}

.rs-drawer-eyebrow,
.rs-eyebrow {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rs-drawer-eyebrow {
  margin-bottom: 16px;
  color: var(--rs-muted);
}

.rs-mobile-nav-list > li {
  border-bottom: 1px solid var(--rs-line);
}

.rs-mobile-nav-list > li > a,
.rs-mobile-accordion {
  width: 100%;
  min-height: 57px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--rs-ink);
  font: 600 20px/1 var(--rs-display);
}

.rs-mobile-nav-list [aria-current="page"] {
  color: var(--rs-red);
}

.rs-accordion-icon {
  position: relative;
  width: 15px;
  height: 15px;
}

.rs-accordion-icon::before,
.rs-accordion-icon::after {
  position: absolute;
  top: 7px;
  left: 1px;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
}

.rs-accordion-icon::after {
  transform: rotate(90deg);
  transition: transform var(--rs-fast);
}

.rs-mobile-accordion[aria-expanded="true"] .rs-accordion-icon::after {
  transform: rotate(0);
}

.rs-mobile-submenu {
  padding: 0 0 17px 16px;
}

.rs-mobile-submenu a {
  display: block;
  padding: 9px 0;
  color: var(--rs-muted);
  font-size: 14px;
}

.rs-mobile-actions {
  display: grid;
  gap: 8px;
  margin-top: 31px;
}

.rs-whatsapp-cta {
  background: #157c45;
}

.rs-drawer-contact {
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid var(--rs-line);
  display: grid;
  gap: 8px;
  font-size: 13px;
}

/* Shared controls */
.rs-button {
  min-height: 55px;
  padding: 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--rs-fast), border-color var(--rs-fast), color var(--rs-fast), transform var(--rs-fast);
}

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

.rs-button--red {
  background: var(--rs-red);
  color: var(--rs-white);
}

.rs-button--red:hover,
.rs-button--red:focus-visible {
  background: var(--rs-white);
  color: var(--rs-ink);
}

.rs-button--ghost {
  border-color: rgba(255,255,255,.46);
  color: var(--rs-white);
}

.rs-button--ghost:hover,
.rs-button--ghost:focus-visible {
  border-color: var(--rs-white);
  background: var(--rs-white);
  color: var(--rs-ink);
}

.rs-button--ink {
  background: var(--rs-ink);
  color: var(--rs-white);
}

.rs-button--ink:hover,
.rs-button--ink:focus-visible {
  background: var(--rs-red);
}

.rs-eyebrow {
  color: rgba(255,255,255,.67);
}

.rs-eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: var(--rs-red);
  content: "";
}

.rs-eyebrow--dark {
  color: var(--rs-muted);
}

.rs-text-link {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--rs-ink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color var(--rs-fast), gap var(--rs-fast);
}

.rs-text-link:hover,
.rs-text-link:focus-visible {
  gap: 24px;
  color: var(--rs-red);
}

.rs-text-link--light {
  color: var(--rs-white);
}

.rs-section-heading {
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rs-line);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr);
  align-items: end;
  gap: 70px;
}

.rs-section-heading h2 {
  margin-top: 23px;
  font: 590 clamp(54px, 5.6vw, 88px)/.92 var(--rs-display);
  letter-spacing: -.052em;
  text-transform: uppercase;
}

.rs-section-heading > p {
  max-width: 470px;
  color: var(--rs-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Hero */
.rs-hero {
  position: relative;
  min-height: min(880px, calc(100svh - 116px));
  background: #0d0f0e;
  overflow: hidden;
}

.rs-hero-slider,
.rs-hero .swiper-wrapper,
.rs-hero-slide {
  min-height: inherit;
}

.rs-hero-slide,
.rs-hero-media,
.rs-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rs-hero-slide {
  position: relative;
  overflow: hidden;
}

.rs-hero-media img {
  object-fit: cover;
  object-position: center;
  transition: transform 9s linear;
}

.rs-hero-slide.swiper-slide-active .rs-hero-media img {
  transform: scale(1.045);
}

.rs-hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,11,10,.97) 0%, rgba(9,11,10,.84) 39%, rgba(9,11,10,.27) 73%, rgba(9,11,10,.47) 100%),
    linear-gradient(0deg, rgba(9,11,10,.72) 0%, transparent 48%);
}

.rs-hero-drawing {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 68%);
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.rs-hero-drawing span {
  position: absolute;
  display: block;
  border-color: rgba(255,255,255,.35);
  border-style: solid;
}

.rs-hero-drawing span:first-child {
  top: 18%;
  left: 5vw;
  width: 41vw;
  height: 56%;
  border-width: 1px 0 1px 1px;
}

.rs-hero-drawing span:nth-child(2) {
  top: 18%;
  left: calc(5vw - 8px);
  width: 16px;
  height: 56%;
  border-width: 1px 0;
}

.rs-hero-drawing span:nth-child(3) {
  top: calc(18% - 8px);
  left: 5vw;
  width: 41vw;
  height: 16px;
  border-width: 0 1px;
}

.rs-hero-layout {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.rs-hero-content {
  width: min(900px, 75%);
  padding: clamp(82px, 10vh, 126px) 0 82px;
  pointer-events: auto;
}

.rs-hero-eyebrow {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.79);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.rs-hero-eyebrow span {
  margin-inline: 8px;
  color: var(--rs-red);
}

.rs-hero h1 {
  max-width: 860px;
  color: var(--rs-white);
  font: 590 clamp(60px, 6.9vw, 108px)/.86 var(--rs-display);
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.rs-hero-summary {
  max-width: 660px;
  margin-top: 31px;
  color: rgba(255,255,255,.81);
  font-size: clamp(16px, 1.42vw, 20px);
  line-height: 1.63;
}

.rs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 38px;
}

.rs-hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.2);
  background: rgba(8,10,9,.17);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.rs-hero-controls-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
}

.rs-hero-controls-inner > p {
  color: rgba(255,255,255,.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs-hero-pagination {
  display: flex;
  gap: 8px;
}

.rs-hero-page {
  position: relative;
  width: 45px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.rs-hero-page::before {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.35);
  content: "";
}

.rs-hero-page::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rs-white);
  content: "";
  transition: width 7.6s linear;
}

.rs-hero-page.is-active::after {
  width: 100%;
}

.rs-hero-arrows,
.rs-project-arrows {
  display: flex;
  gap: 7px;
}

.rs-hero-arrows button,
.rs-project-arrows button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  background: transparent;
  color: var(--rs-white);
  display: grid;
  place-items: center;
  transition: background var(--rs-fast), border-color var(--rs-fast), color var(--rs-fast);
}

.rs-hero-arrows button:hover,
.rs-hero-arrows button:focus-visible,
.rs-project-arrows button:hover,
.rs-project-arrows button:focus-visible {
  border-color: var(--rs-white);
  background: var(--rs-white);
  color: var(--rs-ink);
}

/* Leadership */
.rs-leadership {
  position: relative;
  padding: var(--rs-section) 0;
  background: var(--rs-concrete);
  overflow: hidden;
}

.rs-leadership::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 30px;
  background: var(--rs-red);
  content: "";
}

.rs-leadership-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(65px, 10vw, 150px);
}

.rs-leadership-portrait {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
}

.rs-leadership-portrait::before,
.rs-leadership-portrait::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.rs-leadership-portrait::before {
  z-index: 2;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(21,23,22,.34);
}

.rs-leadership-portrait::after {
  z-index: 3;
  top: -26px;
  left: -27px;
  width: 18px;
  height: 18px;
  border: solid var(--rs-red);
  border-width: 1px 0 0 1px;
}

.rs-leadership-portrait picture {
  display: block;
  aspect-ratio: .83;
  overflow: hidden;
  background: #d9d4ca;
}

.rs-leadership-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rs-leadership-portrait figcaption {
  position: absolute;
  z-index: 4;
  right: -1px;
  bottom: -1px;
  padding: 15px 20px;
  background: var(--rs-white);
  color: var(--rs-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-leadership-copy blockquote {
  max-width: 760px;
  margin-top: 34px;
}

.rs-leadership-copy blockquote p {
  font: 570 clamp(40px, 4.4vw, 70px)/.98 var(--rs-display);
  letter-spacing: -.045em;
}

.rs-leader-identity {
  display: grid;
  grid-template-columns: minmax(44px, 95px) 1fr;
  align-items: start;
  gap: 22px;
  margin-top: 45px;
}

.rs-leader-rule {
  height: 2px;
  margin-top: 13px;
  background: var(--rs-red);
}

.rs-leader-identity h2 {
  font: 650 clamp(23px, 2vw, 31px)/1.1 var(--rs-display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.rs-leader-identity p {
  margin-top: 7px;
  color: var(--rs-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
}

.rs-leadership-copy > .rs-text-link {
  margin-top: 35px;
}

/* About */
.rs-about {
  position: relative;
  padding: var(--rs-section) 0;
  background: var(--rs-ink);
  color: var(--rs-white);
  overflow: hidden;
}

.rs-about::after {
  position: absolute;
  right: -7vw;
  bottom: -16vw;
  width: 34vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.15);
  transform: rotate(45deg);
  content: "";
}

.rs-about-grid,
.rs-enquiry-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
}

.rs-about .rs-container,
.rs-enquiry .rs-container {
  position: relative;
  z-index: 2;
}

.rs-editorial-head {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1.2fr);
  gap: 50px;
}

.rs-editorial-head h2 {
  max-width: 1080px;
  font: 570 clamp(53px, 6vw, 94px)/.92 var(--rs-display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.rs-about-layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(70px, 10vw, 150px);
  margin-top: clamp(68px, 8vw, 112px);
  padding-top: 44px;
  border-top: 1px solid var(--rs-line-light);
}

.rs-about-main {
  max-width: 780px;
}

.rs-about-lead {
  margin-bottom: 28px;
  color: var(--rs-white) !important;
  font: 450 clamp(25px, 2.4vw, 37px)/1.28 var(--rs-display) !important;
  letter-spacing: -.025em;
}

.rs-about-main > p:not(.rs-about-lead) {
  max-width: 690px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.75;
}

.rs-about-main .rs-text-link {
  margin-top: 37px;
}

.rs-about-principles > p {
  margin-bottom: 11px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rs-about-principles > div {
  padding: 28px 0 30px;
  border-top: 1px solid var(--rs-line-light);
}

.rs-about-principles h3 {
  font: 580 clamp(21px, 1.7vw, 27px)/1.2 var(--rs-display);
  letter-spacing: -.02em;
}

.rs-about-principles div p {
  max-width: 450px;
  margin-top: 11px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.65;
}

/* Expertise */
.rs-expertise {
  padding: var(--rs-section) 0;
  background: var(--rs-paper);
}

.rs-expertise-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 120px);
  margin-top: clamp(60px, 7vw, 100px);
}

.rs-expertise-visual {
  position: sticky;
  top: 142px;
  height: fit-content;
  aspect-ratio: .92;
  overflow: hidden;
  background: #d9d8d3;
}

.rs-expertise-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,14,13,.77), transparent 47%);
  content: "";
}

.rs-expertise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms var(--rs-ease), transform 850ms var(--rs-ease);
}

.rs-expertise-visual.is-changing img {
  opacity: .2;
  transform: scale(1.02);
}

.rs-expertise-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--rs-white);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rs-service-list {
  border-top: 1px solid var(--rs-line);
}

.rs-service-item {
  width: 100%;
  min-height: 105px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--rs-line);
  background: transparent;
  color: var(--rs-ink);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 21px;
  text-align: left;
  transition: color var(--rs-fast), padding var(--rs-fast), background var(--rs-fast);
}

.rs-service-item:hover,
.rs-service-item:focus-visible,
.rs-service-item.is-active {
  padding-inline: 19px;
  background: var(--rs-ink);
  color: var(--rs-white);
}

.rs-service-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--rs-red);
}

.rs-service-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rs-service-item > span:nth-child(2) {
  display: grid;
  gap: 8px;
}

.rs-service-item strong {
  font: 580 clamp(23px, 2vw, 31px)/1 var(--rs-display);
  letter-spacing: -.025em;
}

.rs-service-item small {
  color: var(--rs-muted);
  font-size: 13px;
  line-height: 1.45;
  transition: color var(--rs-fast);
}

.rs-service-item:hover small,
.rs-service-item:focus-visible small,
.rs-service-item.is-active small {
  color: rgba(255,255,255,.61);
}

.rs-service-item > i {
  color: var(--rs-red);
  font-size: 19px;
  font-style: normal;
}

.rs-expertise-link {
  margin: 42px 0 0 calc(41% + clamp(55px, 8vw, 120px));
}

/* Projects */
.rs-projects {
  position: relative;
  padding: var(--rs-section) 0 clamp(80px, 9vw, 135px);
  background: #111312;
  color: var(--rs-white);
  overflow: hidden;
}

.rs-projects-linework {
  position: absolute;
  top: 0;
  right: 3vw;
  width: 43vw;
  height: 42%;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(135deg, transparent 4%, black, transparent 86%);
  mask-image: linear-gradient(135deg, transparent 4%, black, transparent 86%);
}

.rs-projects-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .55fr);
  align-items: end;
  gap: 75px;
}

.rs-projects-head h2 {
  margin-top: 23px;
  font: 570 clamp(57px, 6vw, 95px)/.9 var(--rs-display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.rs-projects-head > div:last-child > p {
  max-width: 450px;
  color: rgba(255,255,255,.61);
  font-size: 15px;
  line-height: 1.7;
}

.rs-projects-head .rs-text-link {
  margin-top: 27px;
}

.rs-project-slider {
  width: calc(100% + max(var(--rs-gutter), (100vw - var(--rs-container)) / 2));
  margin-top: clamp(55px, 7vw, 95px);
  overflow: visible;
}

.rs-project-slide {
  height: auto;
}

.rs-project-slide > a {
  position: relative;
  height: 100%;
  min-height: 575px;
  display: block;
  overflow: hidden;
  background: #232624;
}

.rs-project-slide picture,
.rs-project-slide img {
  width: 100%;
  height: 100%;
}

.rs-project-slide picture {
  position: absolute;
  inset: 0;
}

.rs-project-slide img {
  object-fit: cover;
  transition: transform 850ms var(--rs-ease), filter 850ms var(--rs-ease);
}

.rs-project-slide a:hover img,
.rs-project-slide a:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.rs-project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,9,8,.92), rgba(7,9,8,.05) 65%);
}

.rs-project-caption {
  position: absolute;
  z-index: 2;
  right: 70px;
  bottom: 34px;
  left: 31px;
}

.rs-project-caption > p,
.rs-project-caption > span {
  color: rgba(255,255,255,.67);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-project-caption h3 {
  margin: 10px 0 0;
  font: 570 clamp(28px, 2.5vw, 40px)/1.02 var(--rs-display);
  letter-spacing: -.035em;
}

.rs-project-caption > span {
  display: block;
  margin-top: 9px;
}

.rs-project-open {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 34px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.38);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background var(--rs-fast), color var(--rs-fast), border-color var(--rs-fast);
}

.rs-project-slide a:hover .rs-project-open,
.rs-project-slide a:focus-visible .rs-project-open {
  border-color: var(--rs-red);
  background: var(--rs-red);
}

.rs-project-slider-foot {
  width: calc(100% - max(var(--rs-gutter), (100vw - var(--rs-container)) / 2));
  margin-top: 29px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
}

.rs-project-progress {
  height: 1px !important;
  background: rgba(255,255,255,.18);
}

.rs-project-progress .swiper-pagination-progressbar-fill {
  background: var(--rs-red);
}

/* Why */
.rs-why {
  padding: var(--rs-section) 0;
  background: var(--rs-concrete);
}

.rs-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(55px, 8vw, 120px);
  margin-top: clamp(60px, 7vw, 100px);
}

.rs-why-item {
  min-height: 290px;
  padding: 32px 8px 38px 0;
  border-top: 1px solid rgba(21,23,22,.3);
}

.rs-why-item--offset {
  margin-top: 78px;
}

.rs-why-icon {
  width: 44px;
  height: 44px;
  display: block;
  color: var(--rs-red);
}

.rs-why-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rs-why-item h3 {
  max-width: 470px;
  margin-top: 38px;
  font: 590 clamp(27px, 2.25vw, 36px)/1.07 var(--rs-display);
  letter-spacing: -.03em;
}

.rs-why-item > p {
  max-width: 530px;
  margin-top: 17px;
  color: var(--rs-muted);
  font-size: 15px;
  line-height: 1.68;
}

.rs-why-item--wide {
  grid-column: 1 / -1;
  min-height: 0;
  margin-top: 70px;
  padding: 38px 0 22px;
  border-bottom: 1px solid rgba(21,23,22,.3);
  display: grid;
  grid-template-columns: minmax(310px, .75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.rs-why-item--wide > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 25px;
}

.rs-why-item--wide h3 {
  margin-top: 0;
}

.rs-why-item--wide > p {
  margin-top: 0;
  font-size: 17px;
}

/* Testimonial */
.rs-testimonial {
  position: relative;
  min-height: 670px;
  background: var(--rs-ink);
  color: var(--rs-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rs-testimonial-media,
.rs-testimonial-media img,
.rs-testimonial-shade,
.rs-testimonial-drawing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rs-testimonial-media img {
  object-fit: cover;
  object-position: center 43%;
}

.rs-testimonial-shade {
  background: linear-gradient(90deg, rgba(8,10,9,.98), rgba(8,10,9,.81) 55%, rgba(8,10,9,.39));
}

.rs-testimonial-drawing {
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 76%);
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.rs-testimonial-inner {
  position: relative;
  z-index: 2;
  padding: 105px 0;
}

.rs-testimonial blockquote {
  max-width: 1050px;
  margin-top: 35px;
}

.rs-testimonial blockquote p {
  font: 520 clamp(42px, 5.25vw, 82px)/1.02 var(--rs-display);
  letter-spacing: -.045em;
}

.rs-quote-mark {
  position: absolute;
  top: 63px;
  right: 5vw;
  color: rgba(255,255,255,.14);
  font: 300 clamp(180px, 20vw, 330px)/1 Georgia, serif;
}

/* Insights */
.rs-insights {
  padding: var(--rs-section) 0;
  background: var(--rs-paper);
}

.rs-insights-layout {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(70px, 10vw, 155px);
}

.rs-insights header {
  position: sticky;
  top: 145px;
  height: fit-content;
}

.rs-insights header h2 {
  margin-top: 24px;
  font: 570 clamp(51px, 5vw, 78px)/.94 var(--rs-display);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.rs-insights header > p:last-child {
  max-width: 410px;
  margin-top: 27px;
  color: var(--rs-muted);
  font-size: 15px;
  line-height: 1.7;
}

.rs-insight-list {
  border-top: 1px solid var(--rs-line);
}

.rs-insight-list article {
  min-height: 137px;
  padding: 25px 0;
  border-bottom: 1px solid var(--rs-line);
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.rs-insight-list article > span {
  color: var(--rs-red);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rs-insight-list h3 {
  font: 570 clamp(25px, 2.1vw, 34px)/1.13 var(--rs-display);
  letter-spacing: -.028em;
}

.rs-insight-list i {
  color: #a5a7a4;
  font-style: normal;
}

/* Enquiry */
.rs-enquiry {
  position: relative;
  padding: var(--rs-section) 0;
  background: #1a1d1b;
  color: var(--rs-white);
  overflow: hidden;
}

.rs-enquiry::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 29%;
  height: 10px;
  background: var(--rs-red);
  content: "";
}

.rs-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(290px, .62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 10vw, 155px);
}

.rs-enquiry-intro h2 {
  margin-top: 25px;
  font: 570 clamp(53px, 5.6vw, 88px)/.91 var(--rs-display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.rs-enquiry-lead {
  margin-top: 30px !important;
  color: var(--rs-white) !important;
  font: 520 clamp(25px, 2.3vw, 35px)/1.1 var(--rs-display) !important;
  letter-spacing: -.02em;
}

.rs-enquiry-intro > p:not(.rs-eyebrow):not(.rs-enquiry-lead) {
  max-width: 510px;
  margin-top: 21px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.72;
}

.rs-quick-contact {
  margin-top: 52px;
  padding-top: 27px;
  border-top: 1px solid var(--rs-line-light);
  display: grid;
  gap: 10px;
}

.rs-quick-contact > p {
  margin-bottom: 5px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-quick-contact a {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 650;
  transition: background var(--rs-fast), border-color var(--rs-fast);
}

.rs-quick-contact a:first-of-type i {
  color: #4fd27e;
  font-size: 20px;
}

.rs-quick-contact a:hover,
.rs-quick-contact a:focus-visible {
  border-color: var(--rs-white);
  background: rgba(255,255,255,.08);
}

.rs-enquiry-form-wrap {
  padding: clamp(31px, 4vw, 58px);
  background: var(--rs-concrete);
  color: var(--rs-ink);
}

.rs-form-head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rs-line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-form-head p {
  font: 570 clamp(27px, 2.4vw, 38px)/1.1 var(--rs-display);
  letter-spacing: -.03em;
}

.rs-form-head span {
  flex: none;
  color: var(--rs-muted);
  font-size: 9px;
}

.rs-enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px 30px;
  margin-top: 31px;
}

.rs-field {
  min-width: 0;
}

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

.rs-field label {
  display: block;
  margin-bottom: 10px;
  color: #4f534f;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rs-field label span {
  color: var(--rs-red);
}

.rs-field input,
.rs-field select,
.rs-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(21,23,22,.33);
  border-radius: 0;
  background: transparent;
  color: var(--rs-ink);
  outline: 0;
  transition: border-color var(--rs-fast), box-shadow var(--rs-fast);
}

.rs-field input,
.rs-field select {
  height: 45px;
}

.rs-field select {
  padding-right: 38px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--rs-ink) 50%), linear-gradient(135deg, var(--rs-ink) 50%, transparent 50%);
  background-position: calc(100% - 14px) 20px, calc(100% - 9px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.rs-field textarea {
  min-height: 132px;
  padding: 12px 0;
  resize: vertical;
}

.rs-field input:hover,
.rs-field select:hover,
.rs-field textarea:hover {
  border-color: var(--rs-ink);
}

.rs-field input:focus,
.rs-field select:focus,
.rs-field textarea:focus {
  border-color: var(--rs-red);
  box-shadow: 0 2px 0 var(--rs-red);
}

.rs-field input:user-invalid,
.rs-field select:user-invalid,
.rs-field textarea:user-invalid {
  border-color: var(--rs-red);
}

.rs-form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
}

.rs-form-submit button {
  min-width: 210px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  background: var(--rs-red);
  color: var(--rs-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background var(--rs-fast), transform var(--rs-fast);
}

.rs-form-submit button:hover,
.rs-form-submit button:focus-visible {
  background: var(--rs-ink);
  transform: translateY(-2px);
}

.ajax-response {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.5;
}

.ajax-response.success {
  color: #14743d;
}

.ajax-response.error {
  color: var(--rs-red-dark);
}

/* Footer */
.rs-footer {
  position: relative;
  padding-top: clamp(78px, 8vw, 124px);
  background: #0d0f0e;
  color: var(--rs-white);
  overflow: hidden;
}

.rs-footer::before {
  position: absolute;
  top: 0;
  right: 8vw;
  width: 23vw;
  height: 1px;
  background: var(--rs-red);
  content: "";
}

.rs-footer-top {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  padding-bottom: clamp(60px, 7vw, 95px);
}

.rs-footer-brand > a img {
  width: min(270px, 75%);
  height: auto;
}

.rs-footer-brand h2 {
  margin-top: 37px;
  color: rgba(255,255,255,.57);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
}

.rs-footer-tagline {
  margin-top: 15px !important;
  color: var(--rs-white) !important;
  font: 520 clamp(25px, 2.3vw, 35px)/1.1 var(--rs-display) !important;
  letter-spacing: -.025em !important;
}

.rs-footer-brand > p:last-child {
  max-width: 530px;
  margin-top: 21px;
  color: rgba(255,255,255,.49);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.rs-footer-brand > p:last-child span {
  margin-inline: 6px;
  color: var(--rs-red);
}

.rs-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.rs-footer-nav h3 {
  margin-bottom: 26px;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs-footer-nav > div > a {
  width: fit-content;
  margin-bottom: 13px;
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.rs-footer-nav a:hover,
.rs-footer-nav a:focus-visible {
  color: var(--rs-white);
}

.rs-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rs-line-light);
}

.rs-footer-social a {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rs-footer-offices {
  border-top: 1px solid var(--rs-line-light);
  border-bottom: 1px solid var(--rs-line-light);
  display: grid;
  grid-template-columns: .85fr .85fr 1.3fr;
}

.rs-footer-offices > div {
  min-height: 150px;
  padding: 32px 34px;
  border-right: 1px solid var(--rs-line-light);
}

.rs-footer-offices > div:first-child {
  padding-left: 0;
}

.rs-footer-offices > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.rs-footer-offices span,
.rs-footer-newsletter > div > span {
  color: rgba(255,255,255,.35);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-footer-offices address,
.rs-footer-newsletter > div > p {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.7;
}

.rs-footer-newsletter {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 31px;
}

.rs-footer-newsletter form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 43px;
}

.rs-footer-newsletter input {
  min-width: 0;
  height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-right: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rs-white);
  outline: 0;
}

.rs-footer-newsletter input:focus {
  border-color: var(--rs-white);
}

.rs-footer-newsletter button {
  border: 0;
  background: var(--rs-red);
  color: var(--rs-white);
  font-size: 19px;
}

#NLerrMsg {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  grid-column: 1 / -1;
  font-size: 10px;
}

.rs-footer-bottom {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  color: rgba(255,255,255,.37);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rs-footer-bottom > div {
  display: flex;
  gap: 24px;
}

.rs-footer-bottom a:hover,
.rs-footer-bottom a:focus-visible {
  color: var(--rs-white);
}

.rs-whatsapp-float {
  position: fixed;
  z-index: 48;
  right: 22px;
  bottom: 80px;
  min-height: 47px;
  padding: 0 18px;
  background: #167b46;
  color: var(--rs-white);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: background var(--rs-fast), transform var(--rs-fast), opacity var(--rs-fast);
}

.rs-whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.rs-whatsapp-float i {
  font-size: 19px;
}

.rs-whatsapp-float:hover,
.rs-whatsapp-float:focus-visible {
  background: #0f6136;
  transform: translateY(-2px);
}

/* Motion */
.rs-home-ready [data-rs-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--rs-ease), transform 720ms var(--rs-ease);
}

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

/* Large-tablet */
@media (max-width: 1179.98px) {
  :root {
    --rs-gutter: clamp(24px, 4.4vw, 48px);
  }

  .rs-desktop-nav,
  .rs-desktop-cta {
    display: none;
  }

  .rs-menu-trigger {
    display: block;
  }

  .rs-hero h1 {
    font-size: clamp(58px, 8.3vw, 88px);
  }

  .rs-leadership-layout {
    gap: 70px;
  }

  .rs-editorial-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rs-about-layout {
    gap: 70px;
  }

  .rs-expertise-layout {
    grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
    gap: 55px;
  }

  .rs-expertise-link {
    margin-left: calc(38% + 55px);
  }

  .rs-project-slide > a {
    min-height: 520px;
  }

  .rs-footer-top {
    display: block;
  }

  .rs-footer-brand {
    max-width: 650px;
    margin-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .rs-section-heading,
  .rs-projects-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rs-section-heading > p,
  .rs-projects-head > div:last-child > p {
    max-width: 660px;
  }

  .rs-leadership-layout {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 48px;
  }

  .rs-about-layout {
    grid-template-columns: 1fr;
  }

  .rs-about-principles {
    max-width: 760px;
  }

  .rs-expertise-layout {
    grid-template-columns: 1fr;
  }

  .rs-expertise-visual {
    position: relative;
    top: auto;
    aspect-ratio: 16 / 9;
  }

  .rs-expertise-link {
    margin-left: 0;
  }

  .rs-why-item--wide {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rs-insights-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rs-insights header {
    position: static;
  }

  .rs-enquiry-layout {
    grid-template-columns: 1fr;
  }

  .rs-enquiry-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 55px;
  }

  .rs-enquiry-intro .rs-eyebrow,
  .rs-enquiry-intro h2,
  .rs-enquiry-intro .rs-enquiry-lead {
    grid-column: 1;
  }

  .rs-enquiry-intro > p:not(.rs-eyebrow):not(.rs-enquiry-lead),
  .rs-quick-contact {
    grid-column: 2;
  }

  .rs-enquiry-intro > p:not(.rs-eyebrow):not(.rs-enquiry-lead) {
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .rs-quick-contact {
    grid-row: 3 / span 2;
    margin-top: 24px;
  }

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

  .rs-footer-offices > div:nth-child(2) {
    border-right: 0;
  }

  .rs-footer-newsletter {
    grid-column: 1 / -1;
    padding-inline: 0 !important;
    border-top: 1px solid var(--rs-line-light);
  }
}

@media (max-width: 820px) {
  .rs-utility-bar {
    display: none;
  }

  .rs-primary-inner {
    min-height: 72px;
  }

  .rs-hero {
    min-height: min(780px, calc(100svh - 72px));
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root {
    --rs-gutter: 18px;
    --rs-section: 82px;
  }

  .rs-utility-bar {
    display: none;
  }

  .rs-primary-inner {
    min-height: 72px;
  }

  .rs-logo img {
    width: 158px;
  }

  .rs-hero {
    min-height: min(760px, calc(100svh - 72px));
  }

  .rs-hero-overlay {
    background:
      linear-gradient(90deg, rgba(9,11,10,.94), rgba(9,11,10,.43)),
      linear-gradient(0deg, rgba(9,11,10,.9), transparent 62%);
  }

  .rs-hero-drawing {
    opacity: .28;
    background-size: 52px 52px;
  }

  .rs-hero-drawing span {
    display: none;
  }

  .rs-hero-media img {
    object-position: 60% center;
  }

  .rs-hero-content {
    width: 100%;
    padding: 75px 0 76px;
  }

  .rs-hero-eyebrow {
    max-width: 320px;
    margin-bottom: 21px;
    font-size: 8px;
    line-height: 1.7;
  }

  .rs-hero h1 {
    max-width: 410px;
    font-size: clamp(48px, 14.7vw, 67px);
    line-height: .89;
  }

  .rs-hero-summary {
    max-width: 420px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.55;
  }

  .rs-hero-actions {
    display: grid;
    max-width: 345px;
    margin-top: 29px;
  }

  .rs-button {
    width: 100%;
  }

  .rs-hero-controls-inner {
    min-height: 59px;
    grid-template-columns: 1fr auto;
  }

  .rs-hero-controls-inner > p {
    display: none;
  }

  .rs-hero-page {
    width: 34px;
  }

  .rs-hero-arrows button,
  .rs-project-arrows button {
    width: 38px;
    height: 38px;
  }

  .rs-section-heading {
    padding-bottom: 40px;
  }

  .rs-section-heading h2,
  .rs-projects-head h2,
  .rs-editorial-head h2,
  .rs-insights header h2,
  .rs-enquiry-intro h2 {
    font-size: clamp(43px, 12.3vw, 57px);
  }

  .rs-section-heading > p {
    font-size: 14px;
  }

  .rs-leadership::before {
    width: 48%;
    height: 8px;
  }

  .rs-leadership-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .rs-leadership-portrait {
    width: calc(100% - 14px);
    margin-left: 14px;
  }

  .rs-leadership-portrait picture {
    aspect-ratio: 1 / .98;
  }

  .rs-leadership-copy blockquote p {
    font-size: clamp(37px, 10.5vw, 49px);
  }

  .rs-leader-identity {
    margin-top: 37px;
  }

  .rs-editorial-head {
    gap: 23px;
  }

  .rs-about-layout {
    margin-top: 54px;
    padding-top: 31px;
    gap: 56px;
  }

  .rs-about-lead {
    font-size: 24px !important;
  }

  .rs-about-main > p:not(.rs-about-lead) {
    font-size: 14px;
  }

  .rs-about-grid,
  .rs-enquiry-grid {
    background-size: 48px 48px;
    opacity: .35;
  }

  .rs-expertise-layout {
    margin-top: 48px;
    gap: 29px;
  }

  .rs-expertise-visual {
    aspect-ratio: 1.15;
  }

  .rs-expertise-visual figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: 7px;
  }

  .rs-service-item {
    min-height: 95px;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    gap: 13px;
    padding: 18px 0;
  }

  .rs-service-item:hover,
  .rs-service-item:focus-visible,
  .rs-service-item.is-active {
    padding-inline: 12px;
  }

  .rs-service-mark {
    width: 31px;
    height: 31px;
  }

  .rs-service-mark svg {
    width: 27px;
    height: 27px;
  }

  .rs-service-item strong {
    font-size: clamp(20px, 5.5vw, 25px);
  }

  .rs-service-item small {
    font-size: 11px;
  }

  .rs-expertise-link {
    max-width: 335px;
  }

  .rs-projects-head {
    gap: 25px;
  }

  .rs-projects-head > div:last-child > p {
    font-size: 14px;
  }

  .rs-project-slider {
    width: calc(100% + var(--rs-gutter));
    margin-top: 48px;
  }

  .rs-project-slide > a {
    min-height: 480px;
  }

  .rs-project-caption {
    right: 58px;
    bottom: 25px;
    left: 20px;
  }

  .rs-project-caption h3 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .rs-project-open {
    right: 18px;
    bottom: 24px;
  }

  .rs-project-slider-foot {
    width: calc(100% - var(--rs-gutter));
    margin-top: 22px;
    gap: 20px;
  }

  .rs-why-grid {
    grid-template-columns: 1fr;
    margin-top: 49px;
  }

  .rs-why-item,
  .rs-why-item--offset {
    min-height: 0;
    margin: 0;
    padding: 28px 0 33px;
  }

  .rs-why-item h3 {
    margin-top: 25px;
    font-size: 27px;
  }

  .rs-why-item--wide {
    grid-column: auto;
    margin-top: 0;
    padding: 31px 0;
  }

  .rs-why-item--wide > div {
    display: block;
  }

  .rs-why-item--wide h3 {
    margin-top: 25px;
  }

  .rs-why-item--wide > p {
    font-size: 15px;
  }

  .rs-testimonial {
    min-height: 610px;
  }

  .rs-testimonial-media img {
    object-position: 62% center;
  }

  .rs-testimonial-shade {
    background: linear-gradient(90deg, rgba(8,10,9,.96), rgba(8,10,9,.68));
  }

  .rs-testimonial-inner {
    padding: 86px 0;
  }

  .rs-testimonial blockquote p {
    font-size: clamp(37px, 10.5vw, 50px);
  }

  .rs-quote-mark {
    top: 50px;
    right: -20px;
  }

  .rs-insights-layout {
    gap: 46px;
  }

  .rs-insight-list article {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
  }

  .rs-insight-list article > span {
    grid-column: 1 / -1;
  }

  .rs-insight-list h3 {
    font-size: 25px;
  }

  .rs-enquiry-layout {
    gap: 59px;
  }

  .rs-enquiry-intro {
    display: block;
  }

  .rs-enquiry-intro > p:not(.rs-eyebrow):not(.rs-enquiry-lead) {
    margin-top: 20px;
  }

  .rs-quick-contact {
    margin-top: 42px;
  }

  .rs-enquiry-form-wrap {
    padding: 30px 19px;
  }

  .rs-form-head {
    display: block;
  }

  .rs-form-head span {
    display: block;
    margin-top: 9px;
  }

  .rs-enquiry-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rs-field--full {
    grid-column: auto;
  }

  .rs-form-submit {
    display: block;
  }

  .rs-form-submit button {
    width: 100%;
  }

  .ajax-response {
    margin-top: 14px;
  }

  .rs-footer-top {
    padding-bottom: 55px;
  }

  .rs-footer-brand {
    margin-bottom: 51px;
  }

  .rs-footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 43px 25px;
  }

  .rs-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .rs-footer-offices {
    display: block;
  }

  .rs-footer-offices > div {
    min-height: 0;
    padding: 28px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--rs-line-light);
  }

  .rs-footer-offices > div:last-child {
    border-bottom: 0;
  }

  .rs-footer-newsletter {
    display: block;
  }

  .rs-footer-newsletter form {
    margin-top: 18px;
  }

  .rs-footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 16px 20px;
    padding: 25px 0;
  }

  .rs-footer-bottom > div {
    grid-row: 2;
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }

  .rs-whatsapp-float {
    right: 15px;
    bottom: 72px;
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .rs-whatsapp-float span {
    display: none;
  }

  .scroll__top {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 429.98px) {
  .rs-hero {
    min-height: 700px;
  }

  .rs-hero h1 {
    font-size: clamp(45px, 13.8vw, 59px);
  }

  .rs-hero-summary {
    max-width: 350px;
    font-size: 14px;
  }

  .rs-hero-actions {
    max-width: none;
  }

  .rs-hero-arrows {
    display: none;
  }

  .rs-hero-controls-inner {
    grid-template-columns: 1fr;
  }

  .rs-hero-pagination {
    justify-content: center;
  }

  .rs-leadership-portrait picture {
    aspect-ratio: .91;
  }

  .rs-service-item {
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .rs-service-item > i {
    display: none;
  }

  .rs-project-slide > a {
    min-height: 430px;
  }

  .rs-project-caption > p,
  .rs-project-caption > span {
    font-size: 7px;
  }

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

  .rs-footer-bottom {
    display: block;
    padding: 27px 0;
  }

  .rs-footer-bottom > div,
  .rs-footer-bottom > a {
    margin-top: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

  .rs-hero-slide.swiper-slide-active .rs-hero-media img {
    transform: none;
  }
}

/* ================================================================
   Homepage hero + leadership editorial redesign — September 2026
   ================================================================ */

.rs-hero {
  height: clamp(680px, calc(100svh - 116px), 900px);
  min-height: 680px;
  background: #090b0a;
  isolation: isolate;
}

.rs-hero-slider,
.rs-hero .swiper-wrapper,
.rs-hero-slide {
  height: 100%;
  min-height: 0;
}

.rs-hero-slide {
  position: relative;
  overflow: hidden;
}

.rs-hero-media,
.rs-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rs-hero-media img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.82) contrast(1.06);
  transform: scale(1.015);
  transition: transform 10s linear, filter 900ms var(--rs-ease);
}

.rs-hero-slide:nth-child(2) .rs-hero-media img {
  object-position: 62% center;
}

.rs-hero-slide:nth-child(3) .rs-hero-media img {
  object-position: 65% center;
}

.rs-hero-slide.swiper-slide-active .rs-hero-media img {
  filter: saturate(.94) contrast(1.04);
  transform: scale(1.075);
}

.rs-hero-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,8,.97) 0%, rgba(7,9,8,.89) 34%, rgba(7,9,8,.50) 57%, rgba(7,9,8,.15) 78%, rgba(7,9,8,.28) 100%),
    linear-gradient(0deg, rgba(7,9,8,.88) 0%, transparent 41%);
  pointer-events: none;
}

.rs-hero-slide-layout {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(52px, 7vh, 92px);
  padding-bottom: 112px;
  pointer-events: none;
}

.rs-hero-copy {
  position: relative;
  width: min(780px, 68%);
  padding: 34px 0 30px 38px;
  pointer-events: auto;
}

.rs-hero-copy::before,
.rs-hero-copy::after {
  position: absolute;
  left: 0;
  content: "";
}

.rs-hero-copy::before {
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.28);
}

.rs-hero-copy::after {
  top: 0;
  width: 3px;
  height: 72px;
  background: var(--rs-red);
  box-shadow: 0 0 34px rgba(217,6,18,.34);
}

.rs-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: none;
  margin-bottom: 23px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rs-hero-eyebrow span {
  min-width: 34px;
  margin: 0;
  color: var(--rs-white);
}

.rs-hero-copy h1,
.rs-hero-copy h2,
.rs-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--rs-white);
  font-family: var(--rs-display);
  font-size: clamp(58px, 6.15vw, 96px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
  text-transform: none;
}

.rs-hero-summary {
  max-width: 650px;
  margin-top: 27px;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.68;
}

.rs-hero-actions {
  margin-top: 34px;
}

.rs-hero .rs-button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 2px;
  font-size: 11px;
}

.rs-hero-blueprint {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 5vw;
  width: min(34vw, 510px);
  height: 58%;
  border: solid rgba(255,255,255,.2);
  border-width: 1px 1px 1px 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .55;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  pointer-events: none;
}

.rs-hero-blueprint::before,
.rs-hero-blueprint::after,
.rs-hero-blueprint span {
  position: absolute;
  display: block;
  content: "";
}

.rs-hero-blueprint::before {
  top: -7px;
  right: -7px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.72);
}

.rs-hero-blueprint::after {
  right: -1px;
  bottom: 15%;
  width: 3px;
  height: 96px;
  background: var(--rs-red);
}

.rs-hero-blueprint span:first-child {
  top: 22%;
  right: 12%;
  width: 48%;
  height: 1px;
  background: rgba(255,255,255,.42);
}

.rs-hero-blueprint span:nth-child(2) {
  right: 12%;
  bottom: 19%;
  width: 1px;
  height: 49%;
  background: rgba(255,255,255,.42);
}

.rs-hero-blueprint span:nth-child(3) {
  right: 8%;
  bottom: 13%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rs-white);
}

.rs-hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 580ms var(--rs-ease), transform 760ms var(--rs-ease);
}

.rs-hero-slide.swiper-slide-active .rs-hero-copy > * {
  opacity: 1;
  transform: none;
}

.rs-hero-slide.swiper-slide-active .rs-hero-copy > :nth-child(2) {
  transition-delay: 90ms;
}

.rs-hero-slide.swiper-slide-active .rs-hero-copy > :nth-child(3) {
  transition-delay: 170ms;
}

.rs-hero-slide.swiper-slide-active .rs-hero-copy > :nth-child(4) {
  transition-delay: 240ms;
}

.rs-hero-controls {
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(8,10,9,.54);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.rs-hero-controls-inner {
  min-height: 92px;
  grid-template-columns: auto minmax(180px, 1fr) minmax(190px, .6fr) auto;
  gap: clamp(22px, 3.5vw, 56px);
}

.rs-hero-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(255,255,255,.42);
}

.rs-hero-count strong {
  min-width: 35px;
  color: var(--rs-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.rs-hero-count span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.rs-hero-caption-wrap {
  min-width: 0;
  padding-left: clamp(20px, 3vw, 46px);
  border-left: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: 4px;
}

.rs-hero-caption-wrap span {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs-hero-caption-wrap strong {
  overflow: hidden;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rs-hero-pagination {
  gap: 6px;
  justify-content: flex-end;
}

.rs-hero-page {
  width: 52px;
  height: 30px;
  color: rgba(255,255,255,.38);
  text-align: left;
  transition: color var(--rs-fast);
}

.rs-hero-page span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.rs-hero-page::before,
.rs-hero-page::after {
  top: auto;
  bottom: 2px;
}

.rs-hero-page::before {
  background: rgba(255,255,255,.23);
}

.rs-hero-page::after {
  height: 2px;
  background: var(--rs-red);
}

.rs-hero-page.is-active {
  color: var(--rs-white);
}

.rs-hero-arrows button {
  width: 48px;
  height: 48px;
  border-color: rgba(255,255,255,.26);
  border-radius: 50%;
}

/* Leadership editorial feature */
.rs-leadership {
  position: relative;
  padding: clamp(100px, 10vw, 154px) 0;
  background:
    linear-gradient(90deg, rgba(21,23,22,.035) 1px, transparent 1px),
    var(--rs-concrete);
  background-size: 82px 100%;
  overflow: hidden;
  isolation: isolate;
}

.rs-leadership::before {
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(21,23,22,.16);
}

.rs-leadership::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 31%;
  height: 7px;
  background: var(--rs-red);
  content: "";
}

.rs-leadership-mark {
  position: absolute;
  z-index: -1;
  top: -9vw;
  right: -2vw;
  color: rgba(21,23,22,.035);
  font-family: var(--rs-display);
  font-size: clamp(260px, 39vw, 610px);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: 1;
  user-select: none;
}

.rs-leadership-layout {
  position: relative;
  grid-template-columns: minmax(360px, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 0;
}

.rs-leadership-portrait {
  z-index: 1;
  width: min(100%, 620px);
  margin: 0;
}

.rs-leadership-portrait::before {
  z-index: -1;
  inset: 24px -24px -24px 24px;
  border-color: rgba(21,23,22,.28);
}

.rs-leadership-portrait::after {
  z-index: 3;
  top: -12px;
  left: -12px;
  width: 54px;
  height: 54px;
  border: 0;
  background: var(--rs-red);
}

.rs-leadership-portrait picture {
  aspect-ratio: .92;
  filter: saturate(.82) contrast(1.03);
}

.rs-leadership-portrait figcaption {
  right: auto;
  bottom: 0;
  left: 0;
  min-width: 205px;
  padding: 17px 20px;
  background: rgba(255,255,255,.94);
  display: grid;
  gap: 3px;
}

.rs-leadership-portrait figcaption span {
  color: var(--rs-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-leadership-portrait figcaption strong {
  color: var(--rs-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: none;
}

.rs-leadership-copy {
  position: relative;
  z-index: 2;
  width: calc(100% + 54px);
  min-height: 590px;
  margin-left: -54px;
  padding: clamp(52px, 5.8vw, 84px) clamp(42px, 6vw, 90px) 38px clamp(72px, 8vw, 126px);
  background: var(--rs-ink);
  color: var(--rs-white);
  box-shadow: 0 34px 80px rgba(18,20,19,.19);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rs-leadership-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 3px;
  background: var(--rs-red);
  content: "";
}

.rs-leadership-copy .rs-eyebrow {
  color: rgba(255,255,255,.55);
}

.rs-leadership-copy h2 {
  max-width: 720px;
  margin-top: 24px;
  color: var(--rs-white);
  font: 700 clamp(42px, 4vw, 66px)/.99 var(--rs-display);
  letter-spacing: -.055em;
  text-transform: none;
}

.rs-leadership-statement {
  max-width: 660px;
  margin-top: 30px;
  padding-left: 23px;
  border-left: 2px solid var(--rs-red);
}

.rs-leadership-copy .rs-leadership-statement {
  color: rgba(255,255,255,.91);
  font: 500 clamp(20px, 1.65vw, 27px)/1.42 var(--rs-display);
  letter-spacing: -.025em;
}

.rs-leadership-note {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(255,255,255,.61);
  font-size: 15px;
  line-height: 1.72;
}

.rs-leadership-foot {
  margin-top: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.rs-leadership .rs-leader-identity {
  grid-template-columns: 44px 1fr;
  gap: 15px;
  margin-top: 0;
}

.rs-leadership .rs-leader-rule {
  margin-top: 11px;
}

.rs-leader-identity h3 {
  color: var(--rs-white);
  font: 700 17px/1.2 var(--rs-display);
  letter-spacing: -.02em;
  text-transform: none;
}

.rs-leader-identity p {
  margin-top: 6px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rs-leadership-copy > .rs-text-link,
.rs-leadership-foot .rs-text-link {
  margin-top: 0;
  flex: 0 0 auto;
}

.rs-leadership-values {
  margin-top: 37px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rs-leadership-values span {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 1179.98px) {
  .rs-hero-copy {
    width: min(720px, 76%);
  }

  .rs-hero-copy h1,
  .rs-hero-copy h2,
  .rs-hero h1 {
    font-size: clamp(56px, 7.7vw, 86px);
  }

  .rs-hero-blueprint {
    right: 3vw;
    width: 40vw;
    opacity: .38;
  }

  .rs-leadership-layout {
    grid-template-columns: minmax(310px, .88fr) minmax(430px, 1.12fr);
  }

  .rs-leadership-copy {
    min-height: 550px;
    padding-left: clamp(66px, 8vw, 96px);
  }
}

@media (max-width: 991.98px) {
  .rs-hero-controls-inner {
    grid-template-columns: auto 1fr auto;
  }

  .rs-hero-caption-wrap {
    display: none;
  }

  .rs-leadership-layout {
    grid-template-columns: minmax(270px, .78fr) minmax(390px, 1.22fr);
  }

  .rs-leadership-copy {
    width: calc(100% + 38px);
    min-height: 520px;
    margin-left: -38px;
    padding: 48px 38px 34px 68px;
  }

  .rs-leadership-copy h2 {
    font-size: clamp(38px, 5vw, 50px);
  }

  .rs-leadership-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .rs-hero {
    height: clamp(650px, calc(100svh - 72px), 820px);
    min-height: 650px;
  }
}

@media (max-width: 767.98px) {
  .rs-hero {
    height: clamp(660px, calc(100svh - 72px), 780px);
    min-height: 660px;
  }

  .rs-hero-scrim {
    background:
      linear-gradient(90deg, rgba(7,9,8,.94) 0%, rgba(7,9,8,.75) 58%, rgba(7,9,8,.35) 100%),
      linear-gradient(0deg, rgba(7,9,8,.94) 0%, rgba(7,9,8,.12) 63%);
  }

  .rs-hero-media img,
  .rs-hero-slide:nth-child(2) .rs-hero-media img,
  .rs-hero-slide:nth-child(3) .rs-hero-media img {
    object-position: 64% center;
  }

  .rs-hero-slide-layout {
    align-items: flex-end;
    padding-top: 54px;
    padding-bottom: 86px;
  }

  .rs-hero-copy {
    width: 100%;
    padding: 20px 0 28px 22px;
  }

  .rs-hero-copy::after {
    height: 56px;
  }

  .rs-hero-eyebrow {
    max-width: none;
    margin-bottom: 17px;
    font-size: 10px;
    line-height: 1.4;
  }

  .rs-hero-copy h1,
  .rs-hero-copy h2,
  .rs-hero h1 {
    max-width: 610px;
    font-size: clamp(43px, 11.9vw, 66px);
    line-height: .98;
  }

  .rs-hero-summary {
    max-width: 540px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .rs-hero-actions {
    max-width: 480px;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
  }

  .rs-hero .rs-button {
    width: auto;
    min-height: 52px;
    padding-inline: 20px;
    flex: 1 1 185px;
  }

  .rs-hero-blueprint {
    top: 6%;
    right: -12%;
    width: 68vw;
    height: 42%;
    background-size: 42px 42px;
    opacity: .28;
  }

  .rs-hero-controls-inner {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 17px;
  }

  .rs-hero-count strong {
    font-size: 20px;
  }

  .rs-hero-page {
    width: clamp(30px, 8vw, 44px);
    height: 27px;
  }

  .rs-hero-page span {
    display: none;
  }

  .rs-hero-arrows {
    display: flex;
  }

  .rs-hero-arrows button {
    width: 40px;
    height: 40px;
  }

  .rs-leadership {
    padding: 82px 0;
    background-size: 54px 100%;
  }

  .rs-leadership::after {
    width: 48%;
    height: 6px;
  }

  .rs-leadership-mark {
    top: auto;
    right: -8vw;
    bottom: -9vw;
    font-size: 90vw;
  }

  .rs-leadership-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rs-leadership-portrait {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .rs-leadership-portrait picture {
    aspect-ratio: 1.05;
  }

  .rs-leadership-portrait::before {
    inset: 14px -14px -14px 14px;
  }

  .rs-leadership-portrait::after {
    top: -8px;
    left: -8px;
    width: 38px;
    height: 38px;
  }

  .rs-leadership-copy {
    width: calc(100% - 10px);
    min-height: 0;
    margin: -30px 0 0 auto;
    padding: 52px 25px 30px;
  }

  .rs-leadership-copy h2 {
    margin-top: 19px;
    font-size: clamp(36px, 10.4vw, 49px);
  }

  .rs-leadership-statement {
    margin-top: 26px;
  }

  .rs-leadership-copy .rs-leadership-statement {
    font-size: clamp(19px, 5.2vw, 24px);
  }

  .rs-leadership-note {
    font-size: 14px;
  }

  .rs-leadership-values {
    margin-top: 30px;
    gap: 10px;
  }
}

@media (max-width: 479.98px) {
  .rs-hero {
    height: clamp(680px, calc(100svh - 72px), 760px);
    min-height: 680px;
  }

  .rs-hero-slide-layout {
    padding-bottom: 76px;
  }

  .rs-hero-copy {
    padding-left: 17px;
  }

  .rs-hero-eyebrow {
    gap: 8px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .rs-hero-eyebrow span {
    min-width: 27px;
  }

  .rs-hero-copy h1,
  .rs-hero-copy h2,
  .rs-hero h1 {
    font-size: clamp(40px, 12.2vw, 53px);
    line-height: .99;
  }

  .rs-hero-summary {
    max-width: 365px;
    font-size: 14px;
  }

  .rs-hero-actions {
    max-width: 100%;
    gap: 8px;
  }

  .rs-hero .rs-button {
    min-height: 48px;
    flex: 1 1 100%;
  }

  .rs-hero-controls-inner {
    grid-template-columns: 1fr auto;
  }

  .rs-hero-pagination,
  .rs-hero-caption-wrap {
    display: none;
  }

  .rs-hero-arrows {
    display: flex;
  }

  .rs-leadership-values {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs-hero-copy > * {
    opacity: 1;
    transform: none;
  }

  .rs-hero-slide.swiper-slide-active .rs-hero-media img {
    transform: scale(1.015);
  }
}

/* ================================================================
   Lower homepage and footer redesign — September 2026
   ================================================================ */

.rs-section-index {
  width: fit-content;
  min-width: 42px;
  height: 27px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 30px;
  display: inline-grid;
  place-items: center;
  color: rgba(21,23,22,.44);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
}

.rs-about .rs-section-index,
.rs-projects .rs-section-index,
.rs-testimonial .rs-section-index,
.rs-enquiry .rs-section-index,
.rs-leadership .rs-section-index {
  color: rgba(255,255,255,.48);
}

.rs-leadership-copy > .rs-section-index {
  position: absolute;
  top: 30px;
  right: 32px;
}

.rs-leadership-copy h2,
.rs-about h2,
.rs-expertise h2,
.rs-projects h2,
.rs-why h2,
.rs-insights h2,
.rs-enquiry h2,
.rs-footer h2 {
  text-wrap: balance;
}

/* About */
.rs-about {
  padding: clamp(105px, 11vw, 170px) 0;
  background: #101211;
}

.rs-about::after {
  right: -9vw;
  bottom: -19vw;
  width: min(42vw, 680px);
  border-color: rgba(255,255,255,.08);
}

.rs-about-grid {
  opacity: .33;
  background-size: 76px 76px;
}

.rs-about .rs-container {
  position: relative;
}

.rs-editorial-head {
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  align-items: start;
  gap: clamp(45px, 8vw, 128px);
}

.rs-editorial-head > div {
  display: grid;
  gap: 26px;
}

.rs-editorial-head > div .rs-eyebrow {
  margin: 0;
}

.rs-editorial-head h2 {
  max-width: 980px;
  margin: 0;
  color: var(--rs-white);
  font: 700 clamp(52px, 6.5vw, 98px)/.95 var(--rs-display);
  letter-spacing: -.062em;
  text-transform: none;
}

.rs-about-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(70px, 10vw, 154px);
  margin-top: clamp(70px, 9vw, 128px);
  padding-top: clamp(35px, 5vw, 64px);
  border-top-color: rgba(255,255,255,.18);
}

.rs-about-main {
  max-width: 760px;
}

.rs-about-lead {
  max-width: 740px;
  color: var(--rs-white) !important;
  font: 500 clamp(27px, 2.7vw, 41px)/1.28 var(--rs-display) !important;
  letter-spacing: -.032em;
}

.rs-about-main > p:not(.rs-about-lead) {
  max-width: 630px;
  margin-top: 32px;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.78;
}

.rs-about-main .rs-text-link {
  margin-top: 39px;
}

.rs-about-principles > p {
  margin-bottom: 26px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

.rs-about-principles > div {
  position: relative;
  padding: 27px 0 29px 34px;
  border-top-color: rgba(255,255,255,.17);
}

.rs-about-principles > div::before {
  position: absolute;
  top: 35px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--rs-red);
  border-radius: 50%;
  content: "";
}

.rs-about-principles h3 {
  color: var(--rs-white);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.25;
  text-transform: none;
}

.rs-about-principles div p {
  margin-top: 12px;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.68;
}

/* Expertise */
.rs-expertise {
  position: relative;
  padding: clamp(105px, 10vw, 160px) 0;
  background: #f7f5f0;
  overflow: clip;
}

.rs-expertise .rs-section-heading,
.rs-why .rs-section-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .52fr);
  align-items: end;
}

.rs-expertise .rs-section-heading > div,
.rs-why .rs-section-heading > div {
  display: grid;
  gap: 23px;
}

.rs-expertise .rs-section-heading h2,
.rs-why .rs-section-heading h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .94;
  text-transform: none;
}

.rs-expertise .rs-section-heading > p,
.rs-why .rs-section-heading > p {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.72;
}

.rs-expertise-layout {
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7.5vw, 112px);
  margin-top: clamp(60px, 7.5vw, 108px);
}

.rs-expertise-visual {
  top: 116px;
  aspect-ratio: .88;
  border-radius: 3px;
  box-shadow: 0 28px 70px rgba(21,23,22,.12);
}

.rs-expertise-visual::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 7px;
  height: 29%;
  background: var(--rs-red);
  content: "";
}

.rs-expertise-visual figcaption {
  right: 30px;
  bottom: 27px;
  left: 30px;
  font-size: 10px;
}

.rs-service-list {
  border-top-color: rgba(21,23,22,.22);
}

.rs-service-item {
  min-height: 116px;
  padding: 25px 12px;
  border-bottom-color: rgba(21,23,22,.2);
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
}

.rs-service-item:hover,
.rs-service-item:focus-visible,
.rs-service-item.is-active {
  padding-inline: 24px;
  border-bottom-color: var(--rs-ink);
  background: var(--rs-ink);
}

.rs-service-item.is-active {
  box-shadow: inset 4px 0 0 var(--rs-red);
}

.rs-service-item strong {
  font-size: clamp(22px, 1.75vw, 29px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.rs-service-item small {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
}

.rs-expertise-link {
  margin-top: 48px;
  margin-left: calc(44% + clamp(48px, 7.5vw, 112px));
}

/* Projects */
.rs-projects {
  padding: clamp(108px, 11vw, 170px) 0 clamp(90px, 10vw, 145px);
  background: #0e100f;
}

.rs-projects-linework {
  opacity: .3;
}

.rs-projects-head {
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .46fr);
  align-items: end;
}

.rs-projects-head > div:first-child {
  display: grid;
  gap: 23px;
}

.rs-projects-head h2 {
  margin: 0;
  font-size: clamp(55px, 6.5vw, 98px);
  font-weight: 700;
  letter-spacing: -.064em;
  line-height: .93;
  text-transform: none;
}

.rs-projects-head > div:last-child > p {
  color: rgba(255,255,255,.52);
  font-size: 15px;
  line-height: 1.72;
}

.rs-projects-head .rs-text-link {
  margin-top: 30px;
}

.rs-project-slider {
  margin-top: clamp(62px, 7vw, 100px);
  overflow: visible;
}

.rs-project-slide > a {
  min-height: 590px;
  border-radius: 3px;
}

.rs-project-slide > a::after {
  position: absolute;
  z-index: 3;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1px;
  content: "";
  pointer-events: none;
  transition: inset 450ms var(--rs-ease), border-color 450ms var(--rs-ease);
}

.rs-project-slide > a:hover::after,
.rs-project-slide > a:focus-visible::after {
  inset: 18px;
  border-color: rgba(255,255,255,.42);
}

.rs-project-caption {
  right: 42px;
  bottom: 42px;
  left: 42px;
}

.rs-project-caption h3 {
  max-width: 520px;
  font-size: clamp(29px, 2.7vw, 43px);
  font-weight: 650;
  line-height: 1.05;
  text-transform: none;
}

.rs-project-open {
  top: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,12,11,.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.rs-project-slider-foot {
  margin-top: 34px;
}

/* Why ROSHES */
.rs-why {
  position: relative;
  padding: clamp(105px, 10vw, 160px) 0;
  background: #eeebe4;
  overflow: clip;
}

.rs-why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(60px, 7vw, 96px);
}

.rs-why-item,
.rs-why-item--offset {
  position: relative;
  min-height: 320px;
  margin: 0;
  padding: 38px;
  border: 1px solid rgba(21,23,22,.16);
  background: rgba(255,255,255,.42);
  overflow: hidden;
  transition: color 360ms var(--rs-ease), background 360ms var(--rs-ease), transform 360ms var(--rs-ease);
}

.rs-why-item::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 4px;
  background: var(--rs-red);
  content: "";
  transition: width 420ms var(--rs-ease);
}

.rs-why-item:hover {
  background: var(--rs-ink);
  color: var(--rs-white);
  transform: translateY(-4px);
}

.rs-why-item:hover::before {
  width: 100%;
}

.rs-why-icon {
  width: 48px;
  height: 48px;
}

.rs-why-item h3 {
  max-width: 510px;
  margin-top: 48px;
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 650;
  line-height: 1.08;
  text-transform: none;
}

.rs-why-item > p {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.7;
  transition: color 360ms var(--rs-ease);
}

.rs-why-item:hover > p {
  color: rgba(255,255,255,.62);
}

.rs-why-item--wide {
  grid-template-columns: minmax(320px, .76fr) minmax(0, 1fr);
  min-height: 0;
  margin: 0;
  padding: 44px 38px;
  border-bottom: 1px solid rgba(21,23,22,.16);
  background: var(--rs-red);
  color: var(--rs-white);
}

.rs-why-item--wide::before {
  display: none;
}

.rs-why-item--wide:hover {
  background: var(--rs-red-dark);
}

.rs-why-item--wide .rs-why-icon {
  color: var(--rs-white);
}

.rs-why-item--wide > p,
.rs-why-item--wide:hover > p {
  color: rgba(255,255,255,.78);
}

/* Testimonial */
.rs-testimonial {
  min-height: 720px;
  align-items: stretch;
  background: #0b0d0c;
}

.rs-testimonial-media img {
  object-position: center 42%;
  filter: saturate(.72) contrast(1.08);
}

.rs-testimonial-shade {
  background:
    linear-gradient(90deg, rgba(8,10,9,.98) 0%, rgba(8,10,9,.86) 48%, rgba(8,10,9,.30) 100%),
    linear-gradient(0deg, rgba(8,10,9,.82), transparent 54%);
}

.rs-testimonial-drawing {
  opacity: .32;
  background-size: 74px 74px;
}

.rs-testimonial-inner {
  padding: clamp(92px, 10vw, 150px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rs-testimonial-head {
  padding-bottom: 31px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.rs-testimonial-head > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rs-testimonial-head .rs-eyebrow {
  margin: 0;
}

.rs-testimonial-head > h2 {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rs-testimonial-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .45fr);
  align-items: end;
  gap: clamp(70px, 10vw, 155px);
  margin-top: clamp(54px, 7vw, 94px);
}

.rs-testimonial blockquote {
  max-width: 980px;
  margin: 0;
}

.rs-testimonial blockquote p {
  font: 600 clamp(43px, 5.4vw, 82px)/1.03 var(--rs-display);
  letter-spacing: -.058em;
}

.rs-testimonial blockquote cite {
  margin-top: 35px;
  display: block;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rs-testimonial-side {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.rs-testimonial-side > span {
  height: 50px;
  color: var(--rs-red);
  display: block;
  font: 400 76px/.9 Georgia, serif;
}

.rs-testimonial-side > p {
  margin-top: 17px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.72;
}

.rs-testimonial-side .rs-text-link {
  margin-top: 28px;
}

/* Live insights accordion */
.rs-insights {
  padding: clamp(105px, 10vw, 160px) 0;
  background: #f8f7f3;
}

.rs-insights-layout {
  grid-template-columns: minmax(290px, .58fr) minmax(0, 1.42fr);
  gap: clamp(65px, 9vw, 140px);
}

.rs-insights header {
  top: 120px;
}

.rs-insights header .rs-section-index {
  margin-bottom: 26px;
}

.rs-insights header h2 {
  margin-top: 24px;
  font-size: clamp(49px, 5.4vw, 82px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .95;
  text-transform: none;
}

.rs-insights header > p:last-child {
  max-width: 360px;
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.72;
}

.rs-insight-list {
  border-top: 1px solid rgba(21,23,22,.22);
}

.rs-insight-list .rs-insight-item {
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(21,23,22,.22);
  display: block;
}

.rs-insight-item h3 {
  margin: 0;
}

.rs-insight-item h3 button {
  width: 100%;
  min-height: 132px;
  padding: 27px 0;
  border: 0;
  background: transparent;
  color: var(--rs-ink);
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 26px;
  text-align: left;
}

.rs-insight-meta {
  display: grid;
  gap: 7px;
  color: var(--rs-red);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rs-insight-meta b {
  color: rgba(21,23,22,.36);
  font-size: 11px;
  font-weight: 700;
}

.rs-insight-item h3 button > span:nth-child(2) {
  max-width: 720px;
  font: 650 clamp(25px, 2.2vw, 35px)/1.16 var(--rs-display);
  letter-spacing: -.034em;
}

.rs-insight-item h3 button > i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21,23,22,.28);
  border-radius: 50%;
  transition: background var(--rs-fast), border-color var(--rs-fast), transform var(--rs-fast);
}

.rs-insight-item h3 button > i::before,
.rs-insight-item h3 button > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--rs-fast);
}

.rs-insight-item h3 button > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.rs-insight-item h3 button:hover > i,
.rs-insight-item h3 button:focus-visible > i,
.rs-insight-item.is-open h3 button > i {
  border-color: var(--rs-red);
  background: var(--rs-red);
  color: var(--rs-white);
}

.rs-insight-item.is-open h3 button > i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.rs-insight-answer {
  padding: 0 72px 35px 164px;
}

.rs-insight-answer[hidden] {
  display: none;
}

.rs-insight-answer p {
  max-width: 740px;
  color: var(--rs-muted);
  font-size: 15px;
  line-height: 1.78;
}

/* Project enquiry */
.rs-enquiry {
  padding: clamp(105px, 10vw, 160px) 0;
  background: #171a18;
}

.rs-enquiry::before {
  width: 33%;
  height: 7px;
}

.rs-enquiry-layout {
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
  gap: clamp(65px, 8vw, 125px);
}

.rs-enquiry-intro .rs-section-index {
  margin-bottom: 26px;
}

.rs-enquiry-intro h2 {
  margin-top: 24px;
  font-size: clamp(52px, 5.9vw, 90px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
  text-transform: none;
}

.rs-enquiry-lead {
  margin-top: 29px !important;
  font-size: clamp(25px, 2.2vw, 34px) !important;
  font-weight: 500 !important;
}

.rs-enquiry-steps {
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  list-style: none;
}

.rs-enquiry-steps li {
  min-height: 49px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 13px;
}

.rs-enquiry-steps span {
  color: var(--rs-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.rs-quick-contact {
  margin-top: 38px;
}

.rs-quick-contact a {
  min-height: 54px;
  border-radius: 2px;
}

.rs-enquiry-form-wrap {
  position: relative;
  padding: clamp(34px, 4.5vw, 64px);
  border-radius: 3px;
  background: #f4f1e9;
  box-shadow: 0 40px 90px rgba(0,0,0,.18);
}

.rs-enquiry-form-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 4px;
  background: var(--rs-red);
  content: "";
}

.rs-form-head {
  padding-bottom: 31px;
}

.rs-form-head p {
  font-size: clamp(29px, 2.6vw, 41px);
  font-weight: 650;
}

.rs-form-head span,
.rs-field label {
  font-size: 10px;
}

.rs-enquiry-form {
  gap: 30px;
  margin-top: 35px;
}

.rs-field input,
.rs-field select {
  height: 52px;
}

.rs-field textarea {
  min-height: 140px;
}

.rs-form-submit button {
  min-width: 230px;
  min-height: 59px;
  border-radius: 2px;
  font-size: 11px;
}

/* Footer */
.rs-footer {
  position: relative;
  padding-top: 0;
  background: #090b0a;
  isolation: isolate;
}

.rs-footer::before {
  display: none;
}

.rs-footer-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 72%);
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.rs-footer-cta {
  min-height: 320px;
  padding: clamp(65px, 8vw, 110px) 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.rs-footer-cta > div > p {
  margin-bottom: 20px;
  color: var(--rs-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs-footer-cta h2 {
  color: var(--rs-white);
  font: 700 clamp(48px, 6vw, 90px)/.94 var(--rs-display);
  letter-spacing: -.065em;
  text-transform: none;
}

.rs-footer-cta .rs-button {
  flex: 0 0 auto;
  min-height: 60px;
  padding-inline: 30px;
  border-radius: 2px;
  font-size: 11px;
}

.rs-footer-top {
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 9vw, 140px);
  padding: clamp(72px, 8vw, 116px) 0;
}

.rs-footer-brand {
  max-width: 480px;
}

.rs-footer-brand > a img {
  width: min(260px, 72%);
}

.rs-footer-tagline {
  margin-top: 35px;
  color: var(--rs-white);
  font: 600 clamp(22px, 2vw, 30px)/1.2 var(--rs-display);
  letter-spacing: -.03em;
}

.rs-footer-brand > p:last-of-type {
  max-width: 430px;
  margin-top: 17px;
  color: rgba(255,255,255,.47);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  text-transform: none;
}

.rs-footer-social {
  margin-top: 31px;
  display: flex;
  gap: 9px;
}

.rs-footer-social a {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  color: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 650;
}

.rs-footer-social a:hover,
.rs-footer-social a:focus-visible {
  border-color: var(--rs-white);
  background: var(--rs-white);
  color: var(--rs-ink);
}

.rs-footer-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 78px);
}

.rs-footer-nav h3 {
  margin-bottom: 27px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.4);
  font-size: 9px;
}

.rs-footer-nav > div > a {
  width: fit-content;
  padding: 6px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.rs-footer-offices {
  grid-template-columns: .7fr .7fr 1.15fr;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.rs-footer-offices > div {
  min-height: 185px;
  padding: 34px clamp(24px, 3vw, 48px);
  border-right-color: rgba(255,255,255,.14);
}

.rs-footer-offices > div:first-child {
  padding-left: 0;
}

.rs-footer-offices > div:last-child {
  padding-right: 0;
}

.rs-footer-offices span,
.rs-footer-newsletter > div > span {
  font-size: 9px;
}

.rs-footer-offices address,
.rs-footer-newsletter > div > p {
  margin-top: 17px;
  color: rgba(255,255,255,.63);
  font-size: 13px;
  line-height: 1.66;
}

.rs-footer-newsletter {
  align-items: center;
  gap: 25px;
}

.rs-footer-newsletter form {
  min-width: 0;
}

.rs-footer-newsletter input {
  height: 52px;
  border-bottom-color: rgba(255,255,255,.32);
  font-size: 14px;
}

.rs-footer-newsletter button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.rs-footer-bottom {
  min-height: 96px;
  padding: 25px 0;
  color: rgba(255,255,255,.38);
}

@media (max-width: 1179.98px) {
  .rs-editorial-head,
  .rs-expertise .rs-section-heading,
  .rs-why .rs-section-heading,
  .rs-projects-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rs-editorial-head > div {
    gap: 20px;
  }

  .rs-expertise .rs-section-heading > p,
  .rs-why .rs-section-heading > p,
  .rs-projects-head > div:last-child > p {
    max-width: 670px;
  }

  .rs-expertise-link {
    margin-left: calc(41% + 55px);
  }

  .rs-footer-top {
    display: grid;
    grid-template-columns: minmax(270px, .68fr) minmax(0, 1.32fr);
    gap: 60px;
  }

  .rs-footer-brand {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .rs-about-layout,
  .rs-testimonial-body,
  .rs-insights-layout,
  .rs-enquiry-layout {
    grid-template-columns: 1fr;
  }

  .rs-about-layout,
  .rs-testimonial-body,
  .rs-insights-layout,
  .rs-enquiry-layout {
    gap: 58px;
  }

  .rs-about-main,
  .rs-about-main > p:not(.rs-about-lead) {
    max-width: 760px;
  }

  .rs-expertise-layout {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .rs-expertise-link {
    margin-left: calc(36% + 42px);
  }

  .rs-project-slide > a {
    min-height: 520px;
  }

  .rs-testimonial-body {
    align-items: start;
  }

  .rs-testimonial-side {
    max-width: 520px;
  }

  .rs-insights header {
    position: relative;
    top: auto;
  }

  .rs-insights header > p:last-child {
    max-width: 610px;
  }

  .rs-enquiry-intro {
    max-width: 680px;
  }

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

  .rs-footer-brand {
    max-width: 640px;
  }

  .rs-footer-nav {
    gap: 45px;
  }

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

  .rs-footer-offices > div:nth-child(2) {
    border-right: 0;
  }

  .rs-footer-newsletter {
    grid-column: 1 / -1;
    padding-inline: 0 !important;
    border-top: 1px solid rgba(255,255,255,.14);
  }
}

@media (max-width: 767.98px) {
  .rs-section-index {
    min-width: 38px;
    height: 25px;
  }

  .rs-leadership-copy > .rs-section-index {
    top: 24px;
    right: 24px;
  }

  .rs-about,
  .rs-expertise,
  .rs-projects,
  .rs-why,
  .rs-insights,
  .rs-enquiry {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .rs-editorial-head h2,
  .rs-projects-head h2 {
    font-size: clamp(43px, 12.4vw, 59px);
  }

  .rs-expertise .rs-section-heading h2,
  .rs-why .rs-section-heading h2,
  .rs-insights header h2,
  .rs-enquiry-intro h2 {
    font-size: clamp(42px, 11.8vw, 57px);
  }

  .rs-about-layout {
    margin-top: 58px;
    gap: 52px;
  }

  .rs-about-lead {
    font-size: clamp(24px, 7vw, 31px) !important;
  }

  .rs-about-main > p:not(.rs-about-lead) {
    font-size: 15px;
  }

  .rs-expertise-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 56px;
  }

  .rs-expertise-visual {
    aspect-ratio: 1.2;
  }

  .rs-service-item {
    min-height: 100px;
    padding: 21px 8px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .rs-service-item:hover,
  .rs-service-item:focus-visible,
  .rs-service-item.is-active {
    padding-inline: 14px;
  }

  .rs-service-item strong {
    font-size: 21px;
  }

  .rs-service-item small {
    font-size: 13px;
  }

  .rs-expertise-link {
    margin: 35px 0 0;
  }

  .rs-projects-head > div:first-child {
    gap: 20px;
  }

  .rs-project-slider {
    margin-top: 54px;
  }

  .rs-project-slide > a {
    min-height: 465px;
  }

  .rs-project-caption {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .rs-project-open {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
  }

  .rs-why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 56px;
  }

  .rs-why-item,
  .rs-why-item--offset {
    min-height: 0;
    padding: 30px 25px 34px;
  }

  .rs-why-item h3 {
    margin-top: 32px;
    font-size: 27px;
  }

  .rs-why-item--wide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rs-why-item--wide > div {
    grid-template-columns: 45px 1fr;
    gap: 17px;
  }

  .rs-why-item--wide h3 {
    margin: 0;
  }

  .rs-testimonial {
    min-height: 680px;
  }

  .rs-testimonial-inner {
    padding: 88px 0;
  }

  .rs-testimonial-head > h2 {
    display: none;
  }

  .rs-testimonial-body {
    margin-top: 50px;
    gap: 48px;
  }

  .rs-testimonial blockquote p {
    font-size: clamp(38px, 10.7vw, 51px);
  }

  .rs-insight-item h3 button {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 17px;
  }

  .rs-insight-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rs-insight-item h3 button > span:nth-child(2) {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .rs-insight-item h3 button > i {
    width: 38px;
    height: 38px;
  }

  .rs-insight-answer {
    padding: 0 0 28px;
  }

  .rs-insight-answer p {
    padding-right: 52px;
    font-size: 14px;
  }

  .rs-enquiry-form-wrap {
    padding: 32px 22px;
  }

  .rs-enquiry-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rs-field--full {
    grid-column: auto;
  }

  .rs-form-head {
    align-items: start;
    flex-direction: column;
  }

  .rs-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .rs-form-submit button {
    width: 100%;
  }

  .rs-footer-cta {
    min-height: 0;
    padding: 75px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .rs-footer-cta h2 {
    font-size: clamp(43px, 12.2vw, 58px);
  }

  .rs-footer-cta .rs-button {
    width: 100%;
  }

  .rs-footer-top {
    gap: 58px;
    padding: 70px 0;
  }

  .rs-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

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

  .rs-footer-offices > div,
  .rs-footer-offices > div:first-child,
  .rs-footer-offices > div:last-child {
    min-height: 0;
    padding: 29px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .rs-footer-offices > div:last-child {
    border-bottom: 0;
  }

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

  .rs-footer-bottom {
    min-height: 0;
    display: block;
    padding: 30px 0;
  }

  .rs-footer-bottom > div,
  .rs-footer-bottom > a {
    margin-top: 15px;
  }
}

@media (max-width: 479.98px) {
  .rs-editorial-head,
  .rs-expertise .rs-section-heading,
  .rs-why .rs-section-heading,
  .rs-projects-head {
    gap: 28px;
  }

  .rs-expertise-visual {
    aspect-ratio: .96;
  }

  .rs-service-mark {
    display: none;
  }

  .rs-service-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .rs-project-slide > a {
    min-height: 430px;
  }

  .rs-testimonial-head > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .rs-insight-answer p {
    padding-right: 0;
  }

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

  .rs-footer-social {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ================================================================
   Editorial typography and people showcase — refinement 08
   ================================================================ */

body,
.rs-home,
.rs-site-header,
.rs-footer,
button,
input,
select,
textarea {
  font-family: var(--rs-body);
}

body {
  font-weight: 400;
  letter-spacing: -.012em;
}

h1,
h2,
h3,
.rs-hero-caption,
.rs-leadership-statement,
.rs-footer-tagline {
  font-family: var(--rs-display);
}

.rs-hero-copy h1,
.rs-hero-copy h2,
.rs-hero h1,
.rs-editorial-head h2,
.rs-expertise .rs-section-heading h2,
.rs-why .rs-section-heading h2,
.rs-projects-head h2,
.rs-insights header h2,
.rs-enquiry-intro h2,
.rs-footer-cta h2 {
  font-weight: 600;
  letter-spacing: -.052em;
}

.rs-eyebrow,
.rs-hero-eyebrow,
.rs-footer-cta > div > p,
.rs-footer-nav h3,
.rs-footer-offices span,
.rs-footer-newsletter > div > span {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .105em;
}

.rs-hero-eyebrow {
  gap: 12px;
}

.rs-hero-eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--rs-red);
  content: "";
}

.rs-hero-controls-inner {
  grid-template-columns: minmax(230px, 1fr) minmax(180px, .55fr) auto;
}

.rs-hero-caption-wrap {
  padding-left: 0;
  border-left: 0;
}

.rs-hero-caption-wrap span {
  font-size: 11px;
}

.rs-hero-caption-wrap strong {
  font-size: 15px;
  letter-spacing: -.01em;
}

.rs-hero-pagination {
  gap: 9px;
}

.rs-hero-page {
  width: 58px;
  height: 18px;
}

.rs-hero-page::before,
.rs-hero-page::after {
  bottom: 7px;
  border-radius: 20px;
}

.rs-hero-page::before {
  height: 2px;
  background: rgba(255,255,255,.26);
}

.rs-hero-page::after {
  height: 2px;
}

.rs-insight-item h3 button {
  grid-template-columns: 122px minmax(0, 1fr) 46px;
}

.rs-insight-meta {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(217,6,18,.28);
  border-radius: 999px;
  display: block;
  font-size: 10px;
  letter-spacing: .09em;
}

.rs-insight-answer {
  padding-left: 148px;
}

.rs-enquiry-steps li {
  gap: 15px;
  font-size: 14px;
}

.rs-enquiry-steps li::before {
  width: 8px;
  height: 8px;
  border: 2px solid var(--rs-red);
  border-radius: 50%;
  flex: 0 0 auto;
  content: "";
}

/* Team showcase */
.rs-team-showcase {
  position: relative;
  padding: clamp(112px, 11vw, 176px) 0 clamp(120px, 12vw, 190px);
  background: #111412;
  color: var(--rs-white);
  overflow: hidden;
  isolation: isolate;
}

.rs-team-showcase::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--rs-gutter);
  width: min(34vw, 510px);
  height: 5px;
  background: var(--rs-red);
  content: "";
}

.rs-team-showcase::after {
  position: absolute;
  z-index: -1;
  right: -19vw;
  bottom: -26vw;
  width: min(62vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
  content: "";
}

.rs-team-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(217,6,18,.13), transparent 27%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 88%);
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.rs-team-head {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .52fr);
  align-items: end;
  gap: clamp(48px, 8vw, 126px);
}

.rs-team-head > div:first-child {
  display: grid;
  gap: 24px;
}

.rs-team-head h2 {
  max-width: 970px;
  color: var(--rs-white);
  font-size: clamp(53px, 6.35vw, 96px);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .95;
  text-transform: none;
  text-wrap: balance;
}

.rs-team-head > div:last-child > p {
  max-width: 510px;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.74;
}

.rs-team-head .rs-text-link {
  margin-top: 29px;
}

.rs-team-grid {
  margin-top: clamp(72px, 8.5vw, 124px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2.5vw, 38px);
}

.rs-team-card {
  min-width: 0;
}

.rs-team-card--lifted {
  margin-top: clamp(42px, 5vw, 78px);
}

.rs-team-card > a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1b1f1c;
}

.rs-team-card figure {
  position: relative;
  aspect-ratio: .79;
  overflow: hidden;
}

.rs-team-card figure::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(255,255,255,.66);
  border-right: 1px solid rgba(255,255,255,.66);
  content: "";
  transition: width 420ms var(--rs-ease), height 420ms var(--rs-ease), border-color 420ms var(--rs-ease);
}

.rs-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.76) contrast(1.02);
  transform: scale(1.002);
  transition: filter 620ms var(--rs-ease), transform 820ms var(--rs-ease);
}

.rs-team-card figure > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7,9,8,.2) 60%, rgba(7,9,8,.95) 100%);
}

.rs-team-card-copy {
  position: absolute;
  z-index: 3;
  right: clamp(23px, 2.3vw, 35px);
  bottom: clamp(25px, 2.5vw, 38px);
  left: clamp(23px, 2.3vw, 35px);
}

.rs-team-card-copy > p {
  margin-bottom: 9px;
  color: rgba(255,255,255,.63);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.rs-team-card-copy h3 {
  max-width: 92%;
  color: var(--rs-white);
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 550;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-transform: none;
}

.rs-team-card-copy > span {
  max-height: 0;
  margin-top: 0;
  color: var(--rs-white);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: max-height 420ms var(--rs-ease), margin 420ms var(--rs-ease), opacity 420ms var(--rs-ease), transform 420ms var(--rs-ease);
}

.rs-team-card-copy i {
  color: var(--rs-red);
  font-style: normal;
}

.rs-team-card > a:hover img,
.rs-team-card > a:focus-visible img {
  filter: saturate(1) contrast(1.01);
  transform: scale(1.045);
}

.rs-team-card > a:hover figure::before,
.rs-team-card > a:focus-visible figure::before {
  width: 58px;
  height: 58px;
  border-color: var(--rs-red);
}

.rs-team-card > a:hover .rs-team-card-copy > span,
.rs-team-card > a:focus-visible .rs-team-card-copy > span {
  max-height: 24px;
  margin-top: 18px;
  opacity: 1;
  transform: none;
}

/* Footer polish */
.rs-footer {
  background:
    radial-gradient(circle at 16% 8%, rgba(217,6,18,.10), transparent 27%),
    #090b0a;
}

.rs-footer-cta {
  position: relative;
}

.rs-footer-cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 3px;
  background: var(--rs-red);
  content: "";
}

.rs-footer-cta h2 {
  letter-spacing: -.048em;
}

.rs-footer-tagline {
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
}

.rs-footer-nav > div > a,
.rs-footer-offices address,
.rs-footer-newsletter > div > p,
.rs-footer-bottom {
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .rs-team-head {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .rs-team-head > div:last-child > p {
    max-width: 680px;
  }

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

  .rs-team-card--lifted {
    margin-top: 46px;
  }

  .rs-team-card:last-child {
    width: calc(50% - 10px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 767.98px) {
  .rs-hero-controls-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .rs-hero-caption-wrap {
    display: grid;
  }

  .rs-hero-pagination {
    display: none;
  }

  .rs-insight-item h3 button {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .rs-insight-meta {
    grid-column: 1 / -1;
    display: block;
  }

  .rs-insight-answer {
    padding-left: 0;
  }

  .rs-team-showcase {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .rs-team-head h2 {
    font-size: clamp(43px, 12.1vw, 58px);
  }

  .rs-team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 60px;
  }

  .rs-team-card--lifted,
  .rs-team-card:last-child {
    width: 100%;
    margin-top: 0;
    grid-column: auto;
  }

  .rs-team-card figure {
    aspect-ratio: .92;
  }

  .rs-team-card-copy > span {
    max-height: 24px;
    margin-top: 15px;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 479.98px) {
  .rs-hero-caption-wrap span {
    display: none;
  }

  .rs-hero-caption-wrap strong {
    max-width: 180px;
    font-size: 13px;
  }

  .rs-team-card figure {
    aspect-ratio: .83;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs-team-card img,
  .rs-team-card figure::before,
  .rs-team-card-copy > span {
    transition: none;
  }
}

/* ================================================================
   Branded homepage splash — refinement 09
   ================================================================ */

html.rs-splash-active,
html.rs-splash-active body {
  overflow: hidden;
}

.rs-splash {
  position: fixed;
  z-index: 12000;
  inset: 0;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 46%, rgba(217,6,18,.11), transparent 25%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.035), transparent 23%),
    #080a09;
  color: var(--rs-white);
  display: grid;
  place-items: center;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  transition: transform 920ms cubic-bezier(.75, 0, .2, 1), opacity 480ms ease;
  will-change: transform;
}

html.rs-splash-active .rs-splash {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

html.rs-splash-active .rs-splash.is-leaving {
  opacity: 1;
  transform: translate3d(0, -100%, 0);
}

.rs-splash::before,
.rs-splash::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.rs-splash::before {
  z-index: 2;
  top: 0;
  left: clamp(20px, 4vw, 68px);
  width: clamp(82px, 13vw, 210px);
  height: 4px;
  background: var(--rs-red);
  box-shadow: 0 0 32px rgba(217,6,18,.42);
  transform: scaleX(0);
  transform-origin: left;
  animation: rs-splash-line-in 720ms var(--rs-ease) 120ms forwards;
}

.rs-splash::after {
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--rs-red);
  box-shadow: 0 -7px 28px rgba(217,6,18,.32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 310ms var(--rs-ease);
}

.rs-splash.is-leaving::after {
  transform: scaleX(1);
}

.rs-splash-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(54px, 6vw, 92px) clamp(54px, 6vw, 92px);
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle at center, black 4%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 4%, transparent 72%);
  animation: rs-splash-pattern-in 1s ease 180ms forwards;
}

.rs-splash-pattern::before,
.rs-splash-pattern::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.rs-splash-pattern::before {
  width: min(62vw, 760px);
  aspect-ratio: 1;
}

.rs-splash-pattern::after {
  width: min(42vw, 510px);
  aspect-ratio: 1;
  border-color: rgba(217,6,18,.16);
}

.rs-splash-pattern > span {
  position: absolute;
  display: block;
  background: rgba(255,255,255,.12);
}

.rs-splash-pattern > span:first-child {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  animation: rs-splash-rule-x 960ms var(--rs-ease) 240ms forwards;
}

.rs-splash-pattern > span:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: scaleY(0);
  animation: rs-splash-rule-y 960ms var(--rs-ease) 280ms forwards;
}

.rs-splash-pattern > span:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rs-red);
  box-shadow: 0 0 0 8px rgba(217,6,18,.11), 0 0 28px rgba(217,6,18,.45);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.3);
  animation: rs-splash-point-in 520ms var(--rs-ease) 610ms forwards;
}

.rs-splash-frame {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  pointer-events: none;
}

.rs-splash-frame i {
  position: absolute;
  width: clamp(28px, 4vw, 54px);
  height: clamp(28px, 4vw, 54px);
  opacity: 0;
  animation: rs-splash-corner-in 620ms var(--rs-ease) 360ms forwards;
}

.rs-splash-frame i:first-child {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.48);
  border-left: 1px solid rgba(255,255,255,.48);
}

.rs-splash-frame i:nth-child(2) {
  top: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,.48);
  border-right: 1px solid rgba(255,255,255,.48);
}

.rs-splash-frame i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(255,255,255,.48);
  border-bottom: 1px solid rgba(255,255,255,.48);
}

.rs-splash-frame i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(255,255,255,.48);
  border-left: 1px solid rgba(255,255,255,.48);
}

.rs-splash-topline {
  position: absolute;
  top: clamp(34px, 5vw, 72px);
  right: clamp(38px, 6vw, 96px);
  left: clamp(38px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  animation: rs-splash-meta-in 640ms var(--rs-ease) 420ms forwards;
}

.rs-splash-centre {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 64px), 620px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.rs-splash-kicker {
  margin-bottom: clamp(24px, 4vh, 38px);
  color: rgba(255,255,255,.56);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: rs-splash-copy-in 620ms var(--rs-ease) 260ms forwards;
}

.rs-splash-kicker span {
  width: 28px;
  height: 1px;
  background: var(--rs-red);
}

.rs-splash-logo {
  position: relative;
  width: min(78vw, 430px);
  padding: clamp(25px, 4vw, 42px) clamp(22px, 4vw, 48px);
}

.rs-splash-logo::before,
.rs-splash-logo::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  content: "";
  transform: scaleX(0);
  animation: rs-splash-logo-rule 780ms var(--rs-ease) 360ms forwards;
}

.rs-splash-logo::before {
  top: 0;
}

.rs-splash-logo::after {
  bottom: 0;
}

.rs-splash-logo > span {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  filter: blur(3px);
  transform: skewX(-14deg);
  animation: rs-splash-sheen 1.15s ease 560ms forwards;
}

.rs-splash-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(16px) scale(.975);
  animation: rs-splash-logo-in 760ms var(--rs-ease) 280ms forwards;
}

.rs-splash-tagline {
  margin-top: clamp(22px, 4vh, 36px);
  color: rgba(255,255,255,.76);
  font-family: var(--rs-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 450;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(8px);
  animation: rs-splash-copy-in 620ms var(--rs-ease) 580ms forwards;
}

.rs-splash-progress {
  position: relative;
  width: min(64vw, 260px);
  height: 2px;
  margin-top: clamp(31px, 5vh, 46px);
  background: rgba(255,255,255,.14);
  overflow: hidden;
  opacity: 0;
  animation: rs-splash-meta-in 420ms ease 650ms forwards;
}

.rs-splash-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rs-red), #ff4450);
  box-shadow: 0 0 18px rgba(217,6,18,.5);
  transform: scaleX(0);
  transform-origin: left;
  animation: rs-splash-progress 1.25s cubic-bezier(.25, .7, .2, 1) 420ms forwards;
}

.rs-splash.is-leaving .rs-splash-progress span {
  animation: none;
  transform: scaleX(1);
  transition: transform 240ms ease;
}

.rs-splash-disciplines {
  position: absolute;
  right: clamp(38px, 6vw, 96px);
  bottom: clamp(34px, 5vw, 72px);
  left: clamp(38px, 6vw, 96px);
  display: flex;
  justify-content: center;
  gap: clamp(23px, 4vw, 58px);
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  animation: rs-splash-meta-in 640ms var(--rs-ease) 520ms forwards;
}

.rs-splash-disciplines span {
  position: relative;
}

.rs-splash-disciplines span + span::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(23px, 4vw, 58px) / -2);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rs-red);
  content: "";
  transform: translate(-50%, -50%);
}

@keyframes rs-splash-line-in {
  to { transform: scaleX(1); }
}

@keyframes rs-splash-pattern-in {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: .82; transform: scale(1); }
}

@keyframes rs-splash-rule-x {
  to { transform: scaleX(1); }
}

@keyframes rs-splash-rule-y {
  to { transform: scaleY(1); }
}

@keyframes rs-splash-point-in {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes rs-splash-corner-in {
  from { opacity: 0; transform: scale(.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rs-splash-meta-in {
  to { opacity: 1; }
}

@keyframes rs-splash-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rs-splash-logo-rule {
  to { transform: scaleX(1); }
}

@keyframes rs-splash-logo-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rs-splash-sheen {
  to { left: 104%; }
}

@keyframes rs-splash-progress {
  0% { transform: scaleX(0); }
  62% { transform: scaleX(.72); }
  100% { transform: scaleX(.93); }
}

@media (max-width: 767.98px) {
  .rs-splash-topline {
    justify-content: center;
  }

  .rs-splash-topline span:last-child {
    display: none;
  }

  .rs-splash-pattern::before {
    width: 92vw;
  }

  .rs-splash-pattern::after {
    width: 68vw;
  }

  .rs-splash-logo {
    width: min(82vw, 390px);
  }

  .rs-splash-disciplines {
    gap: 18px;
    font-size: 12px;
    letter-spacing: .08em;
  }

  .rs-splash-disciplines span + span::before {
    left: -9px;
  }
}

@media (max-width: 479.98px) {
  .rs-splash-frame {
    inset: 14px;
  }

  .rs-splash-topline {
    top: 31px;
    font-size: 12px;
  }

  .rs-splash-centre {
    width: calc(100% - 38px);
  }

  .rs-splash-kicker {
    font-size: 12px;
    letter-spacing: .1em;
  }

  .rs-splash-kicker span {
    width: 20px;
  }

  .rs-splash-logo {
    width: min(88vw, 360px);
    padding-inline: 18px;
  }

  .rs-splash-disciplines {
    bottom: 32px;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .035em;
  }

  .rs-splash-disciplines span + span::before {
    left: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs-splash,
  .rs-splash::before,
  .rs-splash::after,
  .rs-splash-pattern,
  .rs-splash-pattern::before,
  .rs-splash-pattern::after,
  .rs-splash-pattern > span,
  .rs-splash-frame i,
  .rs-splash-topline,
  .rs-splash-kicker,
  .rs-splash-logo::before,
  .rs-splash-logo::after,
  .rs-splash-logo > span,
  .rs-splash-logo img,
  .rs-splash-tagline,
  .rs-splash-progress,
  .rs-splash-progress span,
  .rs-splash-disciplines {
    animation: none !important;
    transition-duration: 180ms !important;
  }

  .rs-splash-pattern,
  .rs-splash-frame i,
  .rs-splash-topline,
  .rs-splash-kicker,
  .rs-splash-logo img,
  .rs-splash-tagline,
  .rs-splash-progress,
  .rs-splash-disciplines {
    opacity: 1;
    transform: none;
  }

  .rs-splash::before,
  .rs-splash-logo::before,
  .rs-splash-logo::after,
  .rs-splash-pattern > span:first-child,
  .rs-splash-pattern > span:nth-child(2) {
    transform: none;
  }

  .rs-splash-pattern > span:nth-child(3) {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .rs-splash-logo > span {
    display: none;
  }

  .rs-splash-progress span {
    transform: scaleX(1);
  }
}
