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

:root {
  --rs2-red: #d90612;
  --rs2-red-deep: #ad0710;
  --rs2-ink: #151716;
  --rs2-ink-soft: #232624;
  --rs2-concrete: #f0ede6;
  --rs2-paper: #fbfaf7;
  --rs2-white: #fff;
  --rs2-muted: #686b68;
  --rs2-line: rgba(21, 23, 22, .16);
  --rs2-light-line: rgba(255, 255, 255, .17);
  --rs2-container: 1440px;
  --rs2-gutter: clamp(20px, 4vw, 64px);
  --rs2-section: clamp(82px, 9vw, 148px);
  --rs2-display: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --rs2-ease: cubic-bezier(.2, .75, .2, 1);
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
figure, blockquote, h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; }
address { font-style: normal; }

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

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

.rs2-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;
}

.rs2-skip {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--rs2-white);
  color: var(--rs2-ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 220ms var(--rs2-ease);
}

.rs2-skip:focus { transform: none; }

/* Sitewide splash */
html.rs2-splash-active,
html.rs2-splash-active body { overflow: hidden; }

.rs2-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--rs2-ink);
  color: var(--rs2-white);
  transition: opacity 520ms var(--rs2-ease), visibility 520ms var(--rs2-ease);
}

.rs2-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rs2-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(135deg, #000 10%, transparent 76%);
  mask-image: linear-gradient(135deg, #000 10%, transparent 76%);
}

.rs2-splash::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.13);
}

.rs2-splash-inner {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 52px));
  text-align: center;
}

.rs2-splash-kicker,
.rs2-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rs2-splash-kicker {
  justify-content: center;
  color: rgba(255,255,255,.68);
}

.rs2-splash-kicker::before,
.rs2-splash-kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--rs2-red);
}

.rs2-splash img {
  width: min(320px, 72vw);
  margin: 36px auto 18px;
}

.rs2-splash-tagline {
  color: rgba(255,255,255,.74);
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: .12em;
}

.rs2-splash-progress {
  width: min(260px, 60vw);
  height: 2px;
  margin: 34px auto 0;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}

.rs2-splash-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rs2-red);
  transform: translateX(-100%);
  animation: rs2-load 1s var(--rs2-ease) forwards;
}

@keyframes rs2-load { to { transform: none; } }

/* Header */
.rs2-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--rs2-white);
  transition: box-shadow 220ms var(--rs2-ease);
}

.rs2-header.is-scrolled { box-shadow: 0 14px 36px rgba(0,0,0,.09); }

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

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

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

.rs2-disciplines,
.rs2-utility-links {
  display: flex;
  align-items: center;
}

.rs2-disciplines {
  gap: 9px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.rs2-disciplines i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rs2-red);
}

.rs2-utility-links { gap: 22px; font-size: 10px; letter-spacing: .05em; }
.rs2-utility-links a:hover { color: var(--rs2-white); }

.rs2-primary { border-bottom: 1px solid rgba(21,23,22,.1); }
.rs2-primary-inner { min-height: 86px; gap: clamp(18px, 3vw, 42px); }
.rs2-logo { flex: 0 0 auto; width: clamp(148px, 15vw, 214px); }
.rs2-logo img { width: 100%; height: auto; }

.rs2-desktop-nav { margin-left: auto; }
.rs2-nav-list { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 36px); list-style: none; }

.rs2-nav-link,
.rs2-dropdown-toggle {
  position: relative;
  padding: 33px 0;
  border: 0;
  background: transparent;
  color: #303330;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.rs2-dropdown-toggle { display: flex; align-items: center; gap: 7px; }
.rs2-dropdown-toggle svg { transition: transform 220ms var(--rs2-ease); }
.rs2-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.rs2-nav-link::after,
.rs2-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--rs2-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--rs2-ease);
}

.rs2-nav-link:hover::after,
.rs2-nav-link.is-current::after,
.rs2-dropdown-toggle:hover::after,
.rs2-dropdown.is-current .rs2-dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.rs2-dropdown { position: relative; }

.rs2-dropdown-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: -26px;
  width: 244px;
  padding: 12px;
  list-style: none;
  background: var(--rs2-ink);
  box-shadow: 0 24px 50px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.rs2-dropdown:hover .rs2-dropdown-menu,
.rs2-dropdown:focus-within .rs2-dropdown-menu,
.rs2-dropdown.is-open .rs2-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.rs2-dropdown-menu a {
  display: block;
  padding: 12px 13px;
  color: rgba(255,255,255,.77);
  font-size: 12px;
  border-left: 2px solid transparent;
}

.rs2-dropdown-menu a:hover,
.rs2-dropdown-menu a[aria-current="page"] {
  border-color: var(--rs2-red);
  background: rgba(255,255,255,.06);
  color: var(--rs2-white);
}

.rs2-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--rs2-red);
  color: var(--rs2-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 220ms var(--rs2-ease), background 220ms var(--rs2-ease), border-color 220ms var(--rs2-ease), transform 220ms var(--rs2-ease);
}

.rs2-btn:hover { background: var(--rs2-red-deep); transform: translateY(-2px); }
.rs2-btn--dark { background: var(--rs2-ink); }
.rs2-btn--dark:hover { background: #303330; }
.rs2-btn--light { border-color: rgba(255,255,255,.35); background: transparent; }
.rs2-btn--light:hover { border-color: var(--rs2-white); background: var(--rs2-white); color: var(--rs2-ink); }
.rs2-btn--line { border-color: rgba(21,23,22,.25); background: transparent; color: var(--rs2-ink); }
.rs2-btn--line:hover { border-color: var(--rs2-ink); background: var(--rs2-ink); color: var(--rs2-white); }
.rs2-desktop-cta { white-space: nowrap; }

.rs2-menu-trigger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--rs2-line);
  background: transparent;
}

.rs2-menu-trigger span,
.rs2-menu-trigger span::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  background: var(--rs2-ink);
  content: "";
}

.rs2-menu-trigger span::after { transform: translateY(6px); }

.rs2-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(12,14,13,.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.rs2-mobile-drawer {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  padding: 24px;
  overflow-y: auto;
  background: var(--rs2-paper);
  transform: translateX(100%);
  transition: transform 320ms var(--rs2-ease);
}

body.rs2-menu-open .rs2-drawer-overlay { opacity: 1; visibility: visible; }
body.rs2-menu-open .rs2-mobile-drawer { transform: none; }

.rs2-drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--rs2-line); }
.rs2-drawer-head img { width: 174px; }
.rs2-drawer-close { width: 44px; height: 44px; border: 1px solid var(--rs2-line); background: transparent; display: grid; place-items: center; }
.rs2-drawer-label { margin: 34px 0 12px; color: var(--rs2-red); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.rs2-mobile-nav { list-style: none; border-top: 1px solid var(--rs2-line); }
.rs2-mobile-nav a,
.rs2-mobile-nav button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  border: 0;
  border-bottom: 1px solid var(--rs2-line);
  background: transparent;
  color: var(--rs2-ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.rs2-mobile-nav a[aria-current="page"] { color: var(--rs2-red); }
.rs2-mobile-submenu { list-style: none; padding-left: 18px; background: rgba(21,23,22,.035); }
.rs2-mobile-submenu a { font-size: 14px; font-weight: 600; }
.rs2-mobile-actions { display: grid; gap: 10px; margin-top: 28px; }
.rs2-drawer-contact { display: grid; gap: 8px; margin-top: 34px; font-size: 13px; }

/* Page hero */
.rs2-page-hero {
  position: relative;
  min-height: clamp(460px, 61vh, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--rs2-ink);
  color: var(--rs2-white);
}

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

.rs2-page-hero-media img {
  object-fit: cover;
  filter: saturate(.84) contrast(1.03);
  transform: scale(1.015);
}

.rs2-page-hero-scrim {
  background:
    linear-gradient(90deg, rgba(10,12,11,.94) 0%, rgba(10,12,11,.69) 47%, rgba(10,12,11,.19) 100%),
    linear-gradient(0deg, rgba(10,12,11,.62) 0%, transparent 55%);
}

.rs2-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(110deg, transparent 35%, #000);
  mask-image: linear-gradient(110deg, transparent 35%, #000);
}

.rs2-page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(62px, 8vw, 108px);
}

.rs2-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rs2-breadcrumb a:hover { color: var(--rs2-white); }
.rs2-breadcrumb i { width: 24px; height: 1px; background: var(--rs2-red); }

.rs2-page-hero h1 {
  max-width: 920px;
  font-size: clamp(52px, 7.8vw, 116px);
  font-weight: 500;
  letter-spacing: -.057em;
  line-height: .9;
}

.rs2-page-hero-summary {
  max-width: 670px;
  margin-top: 25px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.65vw, 21px);
  font-weight: 400;
  line-height: 1.62;
}

.rs2-page-hero-code {
  position: absolute;
  z-index: 2;
  right: var(--rs2-gutter);
  bottom: 38px;
  padding-left: 52px;
  color: rgba(255,255,255,.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rs2-page-hero-code::before { content: ""; position: absolute; left: 0; top: 50%; width: 38px; height: 1px; background: var(--rs2-red); }

/* Shared sections */
.rs2-section { position: relative; padding-block: var(--rs2-section); }
.rs2-section--paper { background: var(--rs2-paper); }
.rs2-section--concrete { background: var(--rs2-concrete); }
.rs2-section--ink { background: var(--rs2-ink); color: var(--rs2-white); }
.rs2-section--red { background: var(--rs2-red); color: var(--rs2-white); }
.rs2-rule { border-top: 1px solid var(--rs2-line); }
.rs2-section--ink.rs2-rule { border-color: var(--rs2-light-line); }

.rs2-grid-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .23;
  background-image:
    linear-gradient(rgba(21,23,22,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,23,22,.13) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(130deg, transparent 44%, #000);
  mask-image: linear-gradient(130deg, transparent 44%, #000);
}

.rs2-section--ink.rs2-grid-surface::before {
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
}

.rs2-eyebrow {
  margin-bottom: 20px;
  color: var(--rs2-red);
}
.rs2-eyebrow::before { content: ""; width: 35px; height: 2px; background: currentColor; }
.rs2-section--red .rs2-eyebrow,
.rs2-section--ink .rs2-eyebrow { color: rgba(255,255,255,.7); }

.rs2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.rs2-section-head h2,
.rs2-editorial-copy h2,
.rs2-cta h2 {
  font-size: clamp(42px, 5.6vw, 82px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .96;
}

.rs2-section-head > p,
.rs2-editorial-copy > p,
.rs2-prose p {
  color: var(--rs2-muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}
.rs2-section--ink .rs2-section-head > p,
.rs2-section--ink .rs2-editorial-copy > p,
.rs2-section--ink .rs2-prose p { color: rgba(255,255,255,.66); }

.rs2-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(42px, 8vw, 128px);
  align-items: center;
}

.rs2-editorial--reverse .rs2-media { order: 2; }

.rs2-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #ddd9d0;
}
.rs2-media--landscape { min-height: 470px; }
.rs2-media::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 74px;
  height: 74px;
  border-right: 2px solid var(--rs2-red);
  border-bottom: 2px solid var(--rs2-red);
}
.rs2-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--rs2-ease); }
.rs2-media:hover img { transform: scale(1.025); }
.rs2-media-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 28px 24px;
  background: linear-gradient(transparent, rgba(10,12,11,.8));
  color: var(--rs2-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rs2-editorial-copy h2 { margin-bottom: 30px; }
.rs2-editorial-copy p + p { margin-top: 18px; }
.rs2-editorial-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.rs2-signature-line {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--rs2-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rs2-signature-line strong { font-size: 14px; }
.rs2-signature-line span { color: var(--rs2-muted); font-size: 12px; }

.rs2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rs2-line);
  border-left: 1px solid var(--rs2-line);
}
.rs2-stat {
  min-height: 220px;
  padding: clamp(26px, 3vw, 44px);
  border-right: 1px solid var(--rs2-line);
  border-bottom: 1px solid var(--rs2-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rs2-stat strong { color: var(--rs2-red); font-size: clamp(42px, 5vw, 74px); font-weight: 500; letter-spacing: -.05em; }
.rs2-stat span { max-width: 150px; color: var(--rs2-muted); font-size: 11px; font-weight: 800; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.rs2-section--ink .rs2-stats { border-color: var(--rs2-light-line); }
.rs2-section--ink .rs2-stat { border-color: var(--rs2-light-line); }
.rs2-section--ink .rs2-stat span { color: rgba(255,255,255,.58); }

.rs2-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rs2-line);
  border: 1px solid var(--rs2-line);
}
.rs2-pillar {
  min-height: 320px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--rs2-paper);
  transition: background 260ms ease, color 260ms ease;
}
.rs2-pillar::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-bottom: auto;
  border: 2px solid var(--rs2-red);
  transform: rotate(45deg);
}
.rs2-pillar h3 { margin-bottom: 14px; font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; letter-spacing: -.035em; }
.rs2-pillar p { color: var(--rs2-muted); font-size: 14px; line-height: 1.65; }
.rs2-pillar:hover { background: var(--rs2-ink); color: var(--rs2-white); }
.rs2-pillar:hover p { color: rgba(255,255,255,.66); }

.rs2-quote {
  position: relative;
  max-width: 1140px;
  padding-left: clamp(30px, 5vw, 76px);
}
.rs2-quote::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 0; width: 3px; background: var(--rs2-red); }
.rs2-quote blockquote { font-size: clamp(34px, 5vw, 72px); font-weight: 400; letter-spacing: -.045em; line-height: 1.12; }
.rs2-quote cite { display: block; margin-top: 28px; color: rgba(255,255,255,.55); font-size: 11px; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

/* Timeline */
.rs2-timeline { border-top: 1px solid var(--rs2-line); }
.rs2-milestone {
  display: grid;
  grid-template-columns: 150px minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--rs2-line);
}
.rs2-milestone time { color: var(--rs2-red); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rs2-milestone h3 { font-size: clamp(25px, 3vw, 42px); font-weight: 600; letter-spacing: -.04em; }
.rs2-milestone p { color: var(--rs2-muted); font-size: 15px; line-height: 1.68; }

/* Services */
.rs2-service-list { border-top: 1px solid var(--rs2-light-line); }
.rs2-service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(280px, 1fr) auto;
  gap: clamp(26px, 5vw, 80px);
  align-items: center;
  min-height: 210px;
  padding-block: 28px;
  border-bottom: 1px solid var(--rs2-light-line);
  overflow: hidden;
}
.rs2-service-row h3 { position: relative; z-index: 2; font-size: clamp(28px, 3.6vw, 52px); font-weight: 500; letter-spacing: -.045em; }
.rs2-service-row p { position: relative; z-index: 2; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.7; }
.rs2-service-row a { position: relative; z-index: 2; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); font-size: 22px; transition: background 220ms ease, border 220ms ease; }
.rs2-service-row a:hover { border-color: var(--rs2-red); background: var(--rs2-red); }
.rs2-service-row img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 44%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  transform: scale(1.06);
  transition: opacity 300ms ease, transform 500ms var(--rs2-ease);
}
.rs2-service-row:hover img { opacity: .32; transform: none; }

.rs2-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rs2-capability {
  min-height: 240px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--rs2-line);
  background: rgba(255,255,255,.45);
}
.rs2-capability svg { width: 38px; margin-bottom: 42px; color: var(--rs2-red); }
.rs2-capability h3 { margin-bottom: 14px; font-size: 24px; letter-spacing: -.03em; }
.rs2-capability p { color: var(--rs2-muted); font-size: 14px; line-height: 1.68; }

.rs2-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rs2-light-line);
}
.rs2-step { min-height: 270px; padding: 30px 28px; border-right: 1px solid var(--rs2-light-line); display: flex; flex-direction: column; }
.rs2-step:first-child { border-left: 1px solid var(--rs2-light-line); }
.rs2-step span { color: var(--rs2-red); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rs2-step h3 { margin-top: auto; margin-bottom: 12px; font-size: 25px; }
.rs2-step p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.65; }

/* Projects */
.rs2-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.rs2-filter {
  padding: 11px 16px;
  border: 1px solid var(--rs2-line);
  background: transparent;
  color: var(--rs2-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rs2-filter:hover,
.rs2-filter.is-active { border-color: var(--rs2-ink); background: var(--rs2-ink); color: var(--rs2-white); }

.rs2-project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); }
.rs2-project-card { grid-column: span 4; }
.rs2-project-card:nth-child(1),
.rs2-project-card:nth-child(6) { grid-column: span 8; }
.rs2-project-card[hidden] { display: none; }
.rs2-project-card a { display: block; }
.rs2-project-image { position: relative; height: clamp(330px, 38vw, 540px); overflow: hidden; background: #d9d6ce; }
.rs2-project-card:nth-child(1) .rs2-project-image,
.rs2-project-card:nth-child(6) .rs2-project-image { height: clamp(380px, 46vw, 650px); }
.rs2-project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 620ms var(--rs2-ease), filter 320ms ease; }
.rs2-project-image::after { content: "↗"; position: absolute; right: 18px; bottom: 18px; width: 50px; height: 50px; display: grid; place-items: center; background: var(--rs2-red); color: var(--rs2-white); font-size: 20px; transform: translateY(12px); opacity: 0; transition: opacity 220ms ease, transform 220ms ease; }
.rs2-project-card:hover img { transform: scale(1.035); }
.rs2-project-card:hover .rs2-project-image::after { transform: none; opacity: 1; }
.rs2-project-meta { padding: 22px 0 8px; display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; }
.rs2-project-meta p { color: var(--rs2-red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.rs2-project-meta h2,
.rs2-project-meta h3 { max-width: 650px; font-size: clamp(22px, 2.5vw, 34px); font-weight: 600; letter-spacing: -.035em; line-height: 1.13; }
.rs2-project-meta span { grid-row: 1 / span 2; grid-column: 2; color: var(--rs2-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }

.rs2-project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
  gap: clamp(52px, 9vw, 150px);
}
.rs2-project-intro h2 { max-width: 820px; margin-bottom: 28px; font-size: clamp(42px, 6vw, 88px); font-weight: 500; letter-spacing: -.055em; line-height: .97; }
.rs2-project-intro p { max-width: 780px; color: var(--rs2-muted); font-size: 17px; line-height: 1.75; }
.rs2-project-facts { border-top: 1px solid var(--rs2-line); }
.rs2-project-fact { display: flex; justify-content: space-between; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--rs2-line); }
.rs2-project-fact span { color: var(--rs2-muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.rs2-project-fact strong { max-width: 210px; font-size: 13px; text-align: right; }
.rs2-gallery { display: grid; grid-template-columns: 1.5fr .75fr; grid-template-rows: repeat(2, minmax(270px, 1fr)); gap: 18px; }
.rs2-gallery figure { min-height: 320px; overflow: hidden; }
.rs2-gallery figure:first-child { grid-row: 1 / 3; }
.rs2-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* People and clients */
.rs2-leader-feature {
  display: grid;
  grid-template-columns: minmax(330px, .77fr) minmax(0, 1.23fr);
  gap: clamp(44px, 8vw, 126px);
  align-items: center;
}
.rs2-leader-portrait { position: relative; min-height: 680px; overflow: hidden; background: #252826; }
.rs2-leader-portrait::before { content: ""; position: absolute; z-index: 1; inset: 20px; border: 1px solid rgba(255,255,255,.28); pointer-events: none; }
.rs2-leader-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rs2-leader-copy h1,
.rs2-leader-copy h2 { font-size: clamp(48px, 6vw, 88px); font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.rs2-leader-role { margin: 18px 0 34px; color: var(--rs2-red); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rs2-leader-copy > p { max-width: 690px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; }
.rs2-leader-copy .rs2-btn { margin-top: 34px; }

.rs2-team-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(18px, 2.5vw, 34px); }
.rs2-person { grid-column: span 3; }
.rs2-person:first-child { grid-column: span 6; }
.rs2-person-image { height: 510px; overflow: hidden; background: #222; }
.rs2-person:first-child .rs2-person-image { height: 660px; }
.rs2-person-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--rs2-ease); }
.rs2-person:hover img { transform: scale(1.025); }
.rs2-person-content { padding: 20px 0; border-bottom: 1px solid var(--rs2-line); }
.rs2-person-content h3 { font-size: clamp(21px, 2.2vw, 30px); letter-spacing: -.035em; }
.rs2-person-content p { margin-top: 7px; color: var(--rs2-red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.rs2-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rs2-line); border-left: 1px solid var(--rs2-line); }
.rs2-client-logo { min-height: 190px; padding: 34px; border-right: 1px solid var(--rs2-line); border-bottom: 1px solid var(--rs2-line); display: grid; place-items: center; background: rgba(255,255,255,.42); }
.rs2-client-logo img { max-width: 145px; max-height: 80px; object-fit: contain; filter: grayscale(1); opacity: .68; transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease; }
.rs2-client-logo:hover img { filter: none; opacity: 1; transform: scale(1.04); }

/* Offices, forms, FAQs, legal */
.rs2-office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rs2-office-card { min-height: 370px; padding: clamp(30px, 3vw, 46px); border: 1px solid var(--rs2-line); display: flex; flex-direction: column; background: var(--rs2-white); }
.rs2-office-card span { color: var(--rs2-red); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rs2-office-card h2,
.rs2-office-card h3 { margin: 30px 0 18px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.04em; }
.rs2-office-card address { color: var(--rs2-muted); font-size: 15px; line-height: 1.75; }
.rs2-office-card a { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--rs2-line); font-size: 12px; font-weight: 800; }

.rs2-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 8vw, 130px);
}
.rs2-contact-aside h2 { margin-bottom: 22px; font-size: clamp(38px, 4.6vw, 64px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.rs2-contact-aside > p { color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.7; }
.rs2-contact-channels { margin-top: 38px; border-top: 1px solid var(--rs2-light-line); }
.rs2-contact-channel { display: block; padding: 19px 0; border-bottom: 1px solid var(--rs2-light-line); }
.rs2-contact-channel span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rs2-contact-channel strong { font-size: 15px; }

.rs2-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
.rs2-field { display: grid; gap: 9px; }
.rs2-field--full { grid-column: 1 / -1; }
.rs2-field label { color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.rs2-form input,
.rs2-form select,
.rs2-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  padding: 14px 0;
  outline: 0;
  background: transparent;
  color: var(--rs2-white);
  font-size: 16px;
}
.rs2-form option { color: var(--rs2-ink); }
.rs2-form textarea { min-height: 130px; resize: vertical; }
.rs2-form input:focus,
.rs2-form select:focus,
.rs2-form textarea:focus { border-color: var(--rs2-red); }
.rs2-form .rs2-btn { justify-self: start; margin-top: 10px; }
.rs2-form-note { grid-column: 1 / -1; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.6; }

.rs2-faq-layout { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: clamp(50px, 9vw, 140px); }
.rs2-faq-aside h2 { font-size: clamp(38px, 4.8vw, 66px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.rs2-faq-aside p { margin-top: 22px; color: var(--rs2-muted); line-height: 1.7; }
.rs2-faq-list { border-top: 1px solid var(--rs2-line); }
.rs2-faq { border-bottom: 1px solid var(--rs2-line); }
.rs2-faq summary {
  position: relative;
  padding: 25px 56px 25px 0;
  list-style: none;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -.025em;
  cursor: pointer;
}
.rs2-faq summary::-webkit-details-marker { display: none; }
.rs2-faq summary::before,
.rs2-faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 20px; height: 2px; background: var(--rs2-red); }
.rs2-faq summary::after { transform: rotate(90deg); transition: transform 220ms ease; }
.rs2-faq[open] summary::after { transform: none; }
.rs2-faq p { max-width: 760px; padding: 0 70px 28px 0; color: var(--rs2-muted); font-size: 15px; line-height: 1.72; }

.rs2-legal-layout { display: grid; grid-template-columns: 260px minmax(0, 850px); gap: clamp(50px, 8vw, 120px); justify-content: center; align-items: start; }
.rs2-legal-nav { position: sticky; top: 144px; display: grid; border-top: 1px solid var(--rs2-line); }
.rs2-legal-nav a { padding: 13px 0; border-bottom: 1px solid var(--rs2-line); color: var(--rs2-muted); font-size: 12px; }
.rs2-legal-nav a:hover { color: var(--rs2-red); }
.rs2-prose { min-width: 0; }
.rs2-prose section { scroll-margin-top: 150px; }
.rs2-prose section + section { margin-top: 58px; padding-top: 58px; border-top: 1px solid var(--rs2-line); }
.rs2-prose h2 { margin-bottom: 19px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.04em; }
.rs2-prose p + p { margin-top: 15px; }
.rs2-prose ul { margin-top: 16px; padding-left: 20px; color: var(--rs2-muted); line-height: 1.72; }
.rs2-prose li + li { margin-top: 8px; }

.rs2-notice {
  padding: clamp(28px, 4vw, 48px);
  border-left: 4px solid var(--rs2-red);
  background: var(--rs2-white);
}
.rs2-notice h2 { font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -.04em; }
.rs2-notice p { margin-top: 14px; color: var(--rs2-muted); line-height: 1.7; }

/* CTA and footer */
.rs2-cta { position: relative; overflow: hidden; padding-block: clamp(72px, 8vw, 120px); background: var(--rs2-red); color: var(--rs2-white); }
.rs2-cta::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 70px 70px; -webkit-mask-image: linear-gradient(90deg, transparent 35%, #000); mask-image: linear-gradient(90deg, transparent 35%, #000); }
.rs2-cta-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.rs2-cta h2 { max-width: 950px; }
.rs2-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.rs2-footer { background: #101211; color: var(--rs2-white); }
.rs2-footer-top { padding-block: clamp(66px, 8vw, 112px); }
.rs2-footer-lead { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 54px; border-bottom: 1px solid var(--rs2-light-line); }
.rs2-footer-lead p { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rs2-footer-lead h2 { max-width: 800px; margin-top: 12px; font-size: clamp(38px, 5vw, 72px); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.rs2-footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .65fr); gap: clamp(32px, 5vw, 80px); padding-top: 54px; }
.rs2-footer-brand img { width: 210px; }
.rs2-footer-brand > p { max-width: 360px; margin-top: 26px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.rs2-footer-social { display: flex; gap: 18px; margin-top: 24px; }
.rs2-footer-social a { font-size: 11px; font-weight: 700; }
.rs2-footer-social a:hover { color: var(--rs2-red); }
.rs2-footer-nav { display: grid; align-content: start; gap: 10px; }
.rs2-footer-nav h3 { margin-bottom: 10px; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.rs2-footer-nav a { color: rgba(255,255,255,.73); font-size: 13px; }
.rs2-footer-nav a:hover { color: var(--rs2-white); }
.rs2-footer-bottom { min-height: 74px; border-top: 1px solid var(--rs2-light-line); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.45); font-size: 10px; }
.rs2-footer-bottom div { display: flex; gap: 20px; }
.rs2-footer-bottom a:hover { color: var(--rs2-white); }

.rs2-wa {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--rs2-ink);
  color: var(--rs2-white);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rs2-wa:hover { background: #1b7f47; }
.rs2-wa b { font-size: 16px; }

[data-rs2-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--rs2-ease), transform 680ms var(--rs2-ease);
}
[data-rs2-reveal].is-visible { opacity: 1; transform: none; }

.rs2-fallback { max-width: 760px; margin: 10vh auto; padding: 28px; }
.rs2-fallback h1 { font-size: clamp(42px, 8vw, 82px); }
.rs2-fallback p { margin-top: 18px; color: var(--rs2-muted); line-height: 1.7; }
.rs2-fallback nav { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.rs2-fallback a { color: var(--rs2-red); font-weight: 700; }

@media (max-width: 1120px) {
  .rs2-desktop-nav,
  .rs2-desktop-cta { display: none; }
  .rs2-menu-trigger { display: block; margin-left: auto; }
  .rs2-section-head { grid-template-columns: 1fr; align-items: start; }
  .rs2-section-head > p { max-width: 690px; }
  .rs2-pillars { grid-template-columns: repeat(2, 1fr); }
  .rs2-project-card,
  .rs2-project-card:nth-child(1),
  .rs2-project-card:nth-child(6) { grid-column: span 6; }
  .rs2-project-card:nth-child(n) .rs2-project-image { height: 480px; }
  .rs2-team-grid { grid-template-columns: repeat(2, 1fr); }
  .rs2-person,
  .rs2-person:first-child { grid-column: auto; }
  .rs2-person:nth-child(n) .rs2-person-image { height: 560px; }
  .rs2-footer-grid { grid-template-columns: 1.25fr repeat(2, .75fr); }
  .rs2-footer-nav:last-child { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --rs2-section: 80px; }
  .rs2-utility { display: none; }
  .rs2-primary-inner { min-height: 74px; }
  .rs2-page-hero { min-height: 500px; }
  .rs2-page-hero-code { display: none; }
  .rs2-editorial,
  .rs2-leader-feature,
  .rs2-contact-layout,
  .rs2-project-intro,
  .rs2-faq-layout,
  .rs2-legal-layout { grid-template-columns: 1fr; }
  .rs2-editorial--reverse .rs2-media { order: 0; }
  .rs2-media,
  .rs2-leader-portrait { min-height: min(700px, 100vw); }
  .rs2-stats { grid-template-columns: repeat(2, 1fr); }
  .rs2-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .rs2-process { grid-template-columns: repeat(2, 1fr); }
  .rs2-step:nth-child(3) { border-left: 1px solid var(--rs2-light-line); }
  .rs2-service-row { grid-template-columns: 1fr auto; gap: 10px 24px; padding-block: 34px; }
  .rs2-service-row p { grid-column: 1; }
  .rs2-service-row a { grid-row: 1 / 3; grid-column: 2; }
  .rs2-milestone { grid-template-columns: 120px 1fr; }
  .rs2-milestone p { grid-column: 2; }
  .rs2-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 280px; }
  .rs2-gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .rs2-office-grid { grid-template-columns: 1fr; }
  .rs2-office-card { min-height: 300px; }
  .rs2-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .rs2-legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .rs2-cta-inner { grid-template-columns: 1fr; align-items: start; }
  .rs2-cta-actions { justify-content: flex-start; }
  .rs2-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .rs2-footer-brand { grid-column: 1 / -1; }
  .rs2-footer-nav:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --rs2-gutter: 18px; --rs2-section: 68px; }
  .rs2-splash::after { inset: 12px; }
  .rs2-primary-inner { min-height: 68px; }
  .rs2-logo { width: 155px; }
  .rs2-menu-trigger { width: 43px; height: 43px; }
  .rs2-page-hero { min-height: 470px; }
  .rs2-page-hero-inner { padding-bottom: 58px; }
  .rs2-page-hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .rs2-page-hero-summary { font-size: 15px; }
  .rs2-page-hero-scrim { background: linear-gradient(90deg, rgba(10,12,11,.93), rgba(10,12,11,.52)), linear-gradient(0deg, rgba(10,12,11,.72), transparent 70%); }
  .rs2-section-head h2,
  .rs2-editorial-copy h2,
  .rs2-cta h2 { font-size: clamp(38px, 12vw, 56px); }
  .rs2-media,
  .rs2-media--landscape,
  .rs2-leader-portrait { min-height: 470px; }
  .rs2-stats,
  .rs2-pillars,
  .rs2-capability-grid,
  .rs2-team-grid,
  .rs2-logo-grid,
  .rs2-footer-grid { grid-template-columns: 1fr; }
  .rs2-stat { min-height: 180px; }
  .rs2-pillar { min-height: 270px; }
  .rs2-milestone { grid-template-columns: 1fr; gap: 12px; }
  .rs2-milestone p { grid-column: auto; }
  .rs2-service-row { grid-template-columns: 1fr; }
  .rs2-service-row a { grid-row: auto; grid-column: auto; margin-top: 12px; }
  .rs2-service-row img { width: 100%; opacity: .15; }
  .rs2-process { grid-template-columns: 1fr; }
  .rs2-step,
  .rs2-step:nth-child(3) { border-left: 1px solid var(--rs2-light-line); }
  .rs2-project-card,
  .rs2-project-card:nth-child(1),
  .rs2-project-card:nth-child(6) { grid-column: span 12; }
  .rs2-project-card:nth-child(n) .rs2-project-image { height: 430px; }
  .rs2-project-meta { grid-template-columns: 1fr; }
  .rs2-project-meta span { grid-row: auto; grid-column: auto; }
  .rs2-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 360px); }
  .rs2-gallery figure:first-child { grid-column: auto; }
  .rs2-person:nth-child(n) .rs2-person-image { height: 520px; }
  .rs2-form { grid-template-columns: 1fr; }
  .rs2-field--full { grid-column: auto; }
  .rs2-form-note { grid-column: auto; }
  .rs2-legal-nav { grid-template-columns: 1fr; }
  .rs2-footer-lead { align-items: flex-start; flex-direction: column; }
  .rs2-footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 24px; }
  .rs2-wa span { display: none; }
  .rs2-wa { width: 48px; padding: 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-rs2-reveal] { opacity: 1; transform: none; }
}
.rs2-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.rs2-form-note.is-success { color: #86d69a; font-weight: 700; }
.rs2-form-note.is-error { color: #ff9da2; font-weight: 700; }
.rs2-form button:disabled { cursor: wait; opacity: .65; }
