:root {
  --white: #ffffff;
  --black: #000000;
  --placeholder-blue: #3866df;
  --placeholder-blue-hover: #477aff;
  --placeholder-dark-blue: #0c1633;
  --placeholder-semi-dark-blue: #162859;
  --placeholder-gold: #c0a47f;
  --placeholder-light-gold: #f2dbbd;
  --placeholder-cream: #f8f5f0;
  --placeholder-grey-blue-text: #5a6686;
  --placeholder-ink: #111827;
  --pre-header-height: 36px;
  --pre-header-height-mobile: 58px;
  --header-height-mobile: 104px;
  --header-height-mobile-sticky: 70px;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--placeholder-ink);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Taviraj", serif;
  font-weight: 500;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li {
  margin: 0 0 0.7rem;
  line-height: 1.55;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--placeholder-dark-blue);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

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

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.background-cream {
  background: var(--placeholder-cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--placeholder-gold);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.eyebrow--light {
  color: var(--placeholder-light-gold);
}

.pre-header {
  position: relative;
  z-index: 1001;
  min-height: var(--pre-header-height);
  display: flex;
  align-items: center;
  padding: 0.65rem 8%;
  background: var(--placeholder-dark-blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pre-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.pre-header__left,
.pre-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pre-header__right a,
.pre-header__left a {
  opacity: 0.86;
  transition: opacity 0.25s ease;
}

.pre-header__right a:hover,
.pre-header__left a:hover {
  opacity: 1;
}

.pre-header__separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header {
  position: absolute;
  top: var(--pre-header-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(12, 22, 51, 0.18);
}

.site-header.sticky {
  position: fixed;
  top: 0;
  height: 70px;
  background: var(--placeholder-dark-blue);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header__inner {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 1px solid rgba(242, 219, 189, 0.9);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, rgba(242, 219, 189, 0.9) 46%, rgba(242, 219, 189, 0.9) 54%, transparent 55%),
    radial-gradient(circle at 34% 30%, rgba(242, 219, 189, 0.35), transparent 40%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.02);
}

.brand__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.88;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--placeholder-light-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--placeholder-light-gold);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  padding: 0.75rem 1.35rem !important;
  border: 1px solid rgba(242, 219, 189, 0.8);
  border-radius: 999px;
}

.site-nav__cta::after {
  content: none !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ac-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  padding: 12px 34px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ac-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 132%;
  clip-path: polygon(0% 100%, 0% 28%, 3% 25%, 8% 21%, 15% 17%, 25% 14%, 35% 12%, 50% 10%, 65% 12%, 75% 14%, 85% 17%, 92% 21%, 97% 25%, 100% 28%, 100% 100%);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

.ac-btn:hover {
  transform: translateY(-1px);
}

.ac-btn:hover::before {
  transform: scaleY(1.1);
}

.ac-btn-filled {
  border: none;
}

.ac-btn-outline {
  background: transparent;
}

.ac-btn-gold.ac-btn-filled {
  color: var(--placeholder-dark-blue);
  background: var(--placeholder-gold);
}

.ac-btn-gold.ac-btn-outline {
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--placeholder-gold);
}

.ac-btn-gold::before {
  background: var(--placeholder-light-gold);
}

.ac-btn-white.ac-btn-outline {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.ac-btn-white::before {
  background: var(--white);
}

.ac-btn-white:hover {
  color: var(--placeholder-dark-blue);
}

.ac-btn-dark.ac-btn-outline {
  color: var(--placeholder-dark-blue);
  box-shadow: inset 0 0 0 1px var(--placeholder-dark-blue);
}

.ac-btn-dark::before {
  background: var(--placeholder-dark-blue);
}

.ac-btn-dark:hover {
  color: var(--white);
}

.home-hero-slider {
  --home-hero-slider-footer-height: 130px;
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  background: var(--placeholder-dark-blue);
}

.home-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.58s ease, visibility 0.58s ease;
}

.home-hero-slider__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-hero-slider__background {
  position: absolute;
  inset: 0;
  background: var(--placeholder-dark-blue);
}

.home-hero-slider__background::before,
.home-hero-slider__background::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 28vw;
  pointer-events: none;
}

.home-hero-slider__background::before {
  left: 0;
  background: linear-gradient(to right, var(--placeholder-dark-blue) 12%, rgba(12, 22, 51, 0));
}

.home-hero-slider__background::after {
  right: 0;
  background: linear-gradient(to left, var(--placeholder-dark-blue) 12%, rgba(12, 22, 51, 0));
}

.home-hero-slider__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-slider__mask-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 120px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.home-hero-slider__mask-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: var(--home-hero-slider-mask-bottom-height, 178px);
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background: linear-gradient(to bottom, rgba(12, 22, 51, 0) 30%, rgb(12, 22, 51) 100%);
}

.home-hero-slider__content {
  position: relative;
  z-index: 2;
  height: calc(100% - var(--home-hero-slider-footer-height) - var(--header-height, 0px));
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
}

.home-hero-slider__content-inner {
  width: 100%;
  margin-bottom: 64px;
}

.home-hero-slider__title {
  max-width: 690px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 64px);
  line-height: 1.02;
  text-transform: capitalize;
}

.home-hero-slider__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-hero-slider__footer {
  position: relative;
  z-index: 3;
  width: min(1280px, 94%);
  margin: 0 auto;
}

.home-hero-slider__indicator {
  position: relative;
  width: 100%;
  height: 4px;
}

.home-hero-slider__indicator-base,
.home-hero-slider__indicator-active {
  position: absolute;
  inset: 0;
  display: block;
}

.home-hero-slider__indicator-base {
  background: rgba(255, 255, 255, 0.14);
}

.home-hero-slider__indicator-active {
  width: calc(100% / var(--slide-count, 4));
  background: var(--placeholder-light-gold);
  transform: translateX(calc(var(--active-index, 0) * 100%));
  transition: transform 0.45s ease;
}

.home-hero-slider__bottom-icons {
  display: flex;
  width: 100%;
  padding: 2rem 0;
}

.home-hero-slider__bottom-icon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 0.75rem;
  border: 0;
  background: transparent;
  color: var(--white);
  opacity: 0.48;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-hero-slider__bottom-icon-item:hover,
.home-hero-slider__bottom-icon-item--active {
  opacity: 1;
  transform: translateY(-1px);
}

.home-hero-slider__bottom-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.home-hero-slider__bottom-icon-title {
  max-width: 140px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.intro-section {
  padding: 100px 0;
}

.intro-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.intro-section__copy h2,
.section-header h2,
.footer-cta h2 {
  color: var(--placeholder-dark-blue);
  font-size: clamp(2.5rem, 5vw, 60px);
  line-height: 1.06;
}

.intro-section__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.1rem 0;
  color: var(--placeholder-grey-blue-text);
  font-size: 19px;
  line-height: 1.65;
}

.intro-section__copy .ac-btn {
  margin-top: 0.8rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(12, 22, 51, 0.18);
}

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

.media-card__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(12, 22, 51, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-card__badge span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--placeholder-dark-blue);
  background: var(--placeholder-light-gold);
  font-weight: 800;
}

.event-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(192, 164, 127, 0.22), transparent 28%),
    linear-gradient(135deg, #0c1633 0%, #162859 58%, #0c1633 100%);
}

.event-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.18) 40.1% 40.3%, transparent 40.4%),
    linear-gradient(35deg, transparent 0 64%, rgba(255, 255, 255, 0.18) 64.1% 64.3%, transparent 64.4%);
}

.event-section__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.event-section h2 {
  max-width: 620px;
  color: #f6f2ec;
  font-size: clamp(2.4rem, 5vw, 60px);
  line-height: 1.02;
}

.event-section p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.3rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
}

.event-section__right img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.services-section {
  padding: 100px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header p:not(.eyebrow) {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--placeholder-grey-blue-text);
  font-size: 19px;
  line-height: 1.55;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 34px;
}

.tabs-navigation__item {
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(12, 22, 51, 0.16);
  border-radius: 999px;
  color: var(--placeholder-dark-blue);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.tabs-navigation__item.active,
.tabs-navigation__item:hover {
  color: var(--white);
  border-color: var(--placeholder-dark-blue);
  background: var(--placeholder-dark-blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-columns {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 24px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(12, 22, 51, 0.08);
}

.tab-columns__left img {
  width: 100%;
  border-radius: 22px;
}

.tab-columns__right {
  padding: 1rem clamp(0rem, 2vw, 2rem) 1rem 0;
}

.tab-columns__right h3 {
  color: var(--placeholder-dark-blue);
  font-size: clamp(2.2rem, 4vw, 48px);
  line-height: 1.06;
}

.tab-columns__right p:not(.eyebrow) {
  margin: 1rem 0 1.4rem;
  color: var(--placeholder-grey-blue-text);
  font-size: 18px;
  line-height: 1.65;
}

.tab-columns__right ul {
  margin-bottom: 1.7rem;
  color: var(--placeholder-semi-dark-blue);
}

.press-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--placeholder-dark-blue);
}

.press-section__container {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.press-section h2 {
  color: #f6f2ec;
  font-size: clamp(2.4rem, 5vw, 56px);
  line-height: 1.08;
}

.press-section p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.15rem auto 1.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.press-section .eyebrow {
  justify-content: center;
}

.press-section__lines {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 250px;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(242, 219, 189, 0.9) 18px 19px),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(242, 219, 189, 0.5) 24px 25px);
}

.press-section__lines--left {
  left: -80px;
  transform: skewX(-10deg);
}

.press-section__lines--right {
  right: -80px;
  transform: skewX(10deg);
}

.insights-section {
  padding: 100px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(12, 22, 51, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(12, 22, 51, 0.13);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.post-card__content span {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: var(--placeholder-dark-blue);
  background: var(--placeholder-cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card__content h3 {
  color: var(--placeholder-dark-blue);
  font-size: 24px;
  line-height: 1.15;
}

.post-card__content p {
  margin: 1rem 0 1.4rem;
  color: var(--placeholder-grey-blue-text);
  line-height: 1.6;
}

.post-card__content a {
  margin-top: auto;
  color: var(--placeholder-semi-dark-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta {
  padding: 96px 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(56, 102, 223, 0.86), rgba(56, 102, 223, 0.86)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
    var(--placeholder-blue);
}

.footer-cta .container {
  max-width: 900px;
}

.footer-cta h2 {
  color: #f6f2ec;
}

.footer-cta p {
  max-width: 640px;
  margin: 1rem auto 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.site-footer {
  padding: 70px 0 40px;
  color: var(--white);
  background: var(--placeholder-dark-blue);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.site-footer__brand p,
.site-footer__disclaimer,
.site-footer__copyright {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.site-footer__brand p {
  max-width: 420px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.8rem 2rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links a {
  opacity: 0.82;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__links a:hover {
  color: var(--placeholder-light-gold);
  opacity: 1;
}

.site-footer__disclaimer {
  grid-column: 1 / -1;
  max-width: 960px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  font-size: 12px;
}

@media (min-width: 1440px) {
  .home-hero-slider__bg-image {
    max-width: 1605px;
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 1rem;
  }

  .intro-section__container,
  .event-section__container,
  .tab-columns {
    grid-template-columns: 1fr;
  }

  .tab-columns__right {
    padding: 0 0 0.5rem;
  }

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

@media (max-width: 860px) {
  :root {
    --pre-header-height: var(--pre-header-height-mobile);
  }

  .container,
  .site-header__inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .pre-header {
    min-height: var(--pre-header-height-mobile);
    padding: 0.65rem 1rem;
    text-align: center;
  }

  .pre-header__inner,
  .pre-header__left,
  .pre-header__right {
    justify-content: center;
  }

  .pre-header__left,
  .pre-header__right {
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
  }

  .pre-header__inner {
    flex-direction: column;
    gap: 0.35rem;
  }

  .pre-header__separator {
    display: none;
  }

  .site-header {
    height: var(--header-height-mobile);
    border-top: 0;
    border-bottom: 0;
  }

  .site-header::before {
    content: none;
  }

  .site-header.sticky {
    height: var(--header-height-mobile-sticky);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--pre-header-height-mobile) + var(--header-height-mobile));
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 1rem 1.25rem;
    color: var(--white);
    background: var(--placeholder-dark-blue);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .site-header.sticky .site-nav {
    top: var(--header-height-mobile-sticky);
  }

  body.mobile-menu-open .site-header {
    background: var(--placeholder-dark-blue);
  }

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

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__cta {
    margin-top: 0.9rem;
    text-align: center;
  }

  .home-hero-slider {
    min-height: 820px;
  }

  .home-hero-slider__background::before,
  .home-hero-slider__background::after,
  .home-hero-slider__mask-top {
    display: none;
  }

  .home-hero-slider__content {
    align-items: center;
  }

  .home-hero-slider__content-inner {
    max-width: 520px;
    margin-bottom: 52px;
  }

  .home-hero-slider__title {
    max-width: 520px;
    font-size: clamp(2.25rem, 8.2vw, 48px);
    line-height: 1.08;
  }

  .home-hero-slider__bottom-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0 1.35rem;
  }

  .home-hero-slider__indicator-active {
    display: none;
  }

  .intro-section,
  .event-section,
  .services-section,
  .press-section,
  .insights-section,
  .footer-cta {
    padding: 72px 0;
  }

  .tabs-navigation {
    flex-direction: column;
  }

  .tabs-navigation__item {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .pre-header {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .brand__text {
    font-size: 13px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .home-hero-slider {
    min-height: 760px;
  }

  .home-hero-slider__content-inner {
    max-width: 340px;
  }

  .home-hero-slider__title {
    max-width: 335px;
    font-size: clamp(2rem, 8vw, 38px);
  }

  .home-hero-slider__ctas {
    gap: 0.75rem;
  }

  .home-hero-slider__ctas .ac-btn {
    padding: 10px 20px;
    font-size: 11px;
  }

  .home-hero-slider__bottom-icon-title {
    max-width: 86px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .ac-btn {
    padding: 10px 22px;
    font-size: 12px;
  }

  .intro-section__copy h2,
  .section-header h2,
  .event-section h2,
  .press-section h2,
  .footer-cta h2 {
    font-size: clamp(2.15rem, 12vw, 42px);
  }

  .media-card img {
    min-height: 300px;
  }

  .tab-columns {
    padding: 16px;
  }

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

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

@media (max-width: 420px) {
  :root {
    --pre-header-height: 42px;
    --pre-header-height-mobile: 42px;
  }

  .pre-header {
    min-height: 42px;
  }

  .pre-header__left {
    display: none;
  }

  .home-hero-slider__ctas {
    flex-direction: column;
  }

  .home-hero-slider__ctas .ac-btn {
    min-width: 214px;
    text-align: center;
  }

}

/* placeholder asset completion pass: real logo files and sourced imagery. */
.brand__logo {
  display: block;
  width: clamp(190px, 18vw, 295px);
  max-height: 92px;
  object-fit: contain;
}
.site-header .brand {
  align-self: center;
}
.brand--footer .brand__logo,
.brand__logo--footer {
  width: min(320px, 82vw);
  max-height: none;
}
.home-hero-slider__background picture,
.home-hero-slider__background .home-hero-slider__bg-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-slider__bg-image {
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}
.background-cream {
  background-color: var(--placeholder-cream);
  background-image: url('/assets/bms/scene_12_brand_texture.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.event-section {
  background:
    linear-gradient(90deg, rgba(12,22,51,.96) 0%, rgba(12,22,51,.82) 48%, rgba(12,22,51,.72) 100%),
    url('/assets/bms/scene_06_forum.webp') center / cover no-repeat;
}
.event-section__right img,
.media-card img,
.tab-columns__left img,
.post-card img {
  background: #0c1633;
}
.press-section {
  background:
    linear-gradient(90deg, rgba(12,22,51,.94), rgba(22,40,89,.9)),
    url('/assets/bms/scene_12_brand_texture.webp') center / cover no-repeat;
}
.press-section__lines {
  background-image: url('../img/media/lines-vertical.svg');
  background-size: contain;
  background-repeat: repeat-y;
}
.footer-cta {
  background:
    linear-gradient(90deg, rgba(12,22,51,.88), rgba(56,102,223,.76)),
    url('/assets/bms/scene_04_legacy.webp') center / cover no-repeat;
}
@media (max-width: 900px) {
  .brand__logo { width: clamp(156px, 40vw, 220px); max-height: 74px; }
}
@media (max-width: 640px) {
  .brand__logo { width: 152px; max-height: 62px; }
}

/* Logo layout correction: prevent header overflow and use compact mark in nav. */
.site-header {
  overflow: hidden;
}
.site-header__inner {
  min-height: 76px;
  height: 76px;
  align-items: center;
}
.site-header .brand {
  flex: 0 0 150px;
  width: 150px;
  height: 58px;
  max-width: 150px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.site-header .brand__logo {
  width: 132px !important;
  max-width: 132px !important;
  height: auto !important;
  max-height: 54px !important;
  object-fit: contain;
  object-position: left center;
}
.site-footer .brand {
  width: auto;
  height: auto;
  overflow: visible;
}
.brand--footer .brand__logo,
.brand__logo--footer {
  width: min(340px, 82vw) !important;
  max-width: 340px !important;
  max-height: 124px !important;
  object-fit: contain;
}
@media (max-width: 900px) {
  .site-header__inner { height: 68px; min-height: 68px; }
  .site-header .brand { flex-basis: 132px; width: 132px; height: 52px; max-width: 132px; }
  .site-header .brand__logo { width: 118px !important; max-width: 118px !important; max-height: 48px !important; }
}
@media (max-width: 640px) {
  .site-header .brand { flex-basis: 112px; width: 112px; height: 46px; max-width: 112px; }
  .site-header .brand__logo { width: 104px !important; max-width: 104px !important; max-height: 42px !important; }
}

/* Exact provided horizontal logo crop - final sizing. */
.site-header .brand {
  flex: 0 0 230px !important;
  width: 230px !important;
  max-width: 230px !important;
  height: 62px !important;
  overflow: hidden !important;
  align-items: center !important;
}
.site-header .brand__logo {
  width: 210px !important;
  max-width: 210px !important;
  max-height: 46px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.brand--footer .brand__logo,
.brand__logo--footer {
  width: min(310px, 82vw) !important;
  max-width: 310px !important;
  max-height: 82px !important;
}
@media (max-width: 900px) {
  .site-header .brand { flex-basis: 190px !important; width: 190px !important; max-width: 190px !important; height: 54px !important; }
  .site-header .brand__logo { width: 174px !important; max-width: 174px !important; max-height: 40px !important; }
}
@media (max-width: 640px) {
  .site-header .brand { flex-basis: 160px !important; width: 160px !important; max-width: 160px !important; height: 48px !important; }
  .site-header .brand__logo { width: 146px !important; max-width: 146px !important; max-height: 36px !important; }
}

/* Final placeholder logo source from /Downloads/logo final.png */
.brand img,
.site-logo img,
.footer-logo img,
.placeholder-logo img {
  width: auto;
  object-fit: contain;
}
.brand img,
.site-logo img {
  max-width: 260px;
  max-height: 48px;
}
.footer-logo img {
  max-width: 310px;
  max-height: 60px;
}
@media (max-width: 720px) {
  .brand img,
  .site-logo img {
    max-width: 210px;
    max-height: 40px;
  }
}

/* Who We Are child pages and dropdown navigation */
.site-nav__group {
  position: relative;
  display: flex;
  align-items: center;
}
.site-nav__submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 210px;
  padding: 0.75rem;
  border: 1px solid rgba(242, 219, 189, 0.22);
  border-radius: 2px;
  background: rgba(8, 17, 42, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.site-nav__group:hover .site-nav__submenu,
.site-nav__group:focus-within .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.site-nav__submenu a {
  display: block;
  padding: 0.75rem 0.85rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav__submenu a:last-child { border-bottom: 0; }
.site-nav__submenu a::after { content: none; }
.interior-page {
  background: var(--placeholder-dark-blue);
}
.interior-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: calc(var(--pre-header-height) + 150px) 0 92px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 15, 39, 0.92), rgba(12, 22, 51, 0.64)),
    url('/assets/bms/scene_03_planning.webp') center / cover no-repeat,
    var(--placeholder-dark-blue);
}
.interior-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% 42%;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(199,173,126,0.22), rgba(199,173,126,0));
  pointer-events: none;
}
.interior-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.interior-hero h1 {
  max-width: 850px;
  margin: 0.35rem 0 1.15rem;
  font-size: clamp(3rem, 7vw, 82px);
  line-height: 0.98;
  color: #f6f2ec;
}
.interior-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.team-section,
.stories-section {
  padding: 92px 0 108px;
}
.team-tabs,
.story-tabs {
  margin-bottom: 46px;
}
.team-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.team-grid.active { display: grid; }
.team-card {
  background: #fffaf1;
  border: 1px solid rgba(12,22,51,0.11);
  box-shadow: 0 20px 48px rgba(12,22,51,0.08);
  overflow: hidden;
}
.team-card__photo {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: rgba(246,242,236,0.85);
  font-family: Taviraj, serif;
  font-size: 74px;
  letter-spacing: -0.08em;
  background:
    linear-gradient(140deg, rgba(12,22,51,0.22), rgba(12,22,51,0.86)),
    url('/assets/bms/scene_12_brand_texture.webp') center / cover no-repeat;
}
.team-card__body { padding: 24px; }
.team-card__name {
  margin: 0 0 0.45rem;
  color: var(--placeholder-dark-blue);
  font-family: Taviraj, serif;
  font-size: 27px;
  line-height: 1.1;
}
.team-card__role {
  min-height: 42px;
  margin: 0 0 1rem;
  color: var(--placeholder-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-card__excerpt {
  color: var(--placeholder-grey-blue-text);
  line-height: 1.6;
}
.team-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--placeholder-dark-blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.designations-section {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(12,22,51,0.94), rgba(12,22,51,0.98)),
    url('/assets/bms/scene_12_brand_texture.webp') center / cover no-repeat;
}
.designations-section .section-header h2 { color: #f6f2ec; }
.designations-section .section-header p:not(.eyebrow) { color: rgba(255,255,255,0.72); }
.designation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.designation-grid article {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
}
.designation-grid h3 {
  margin-bottom: 0.4rem;
  color: var(--placeholder-light-gold);
  font-family: RedHatDisplay, sans-serif;
  letter-spacing: 0.16em;
}
.designation-grid p { color: rgba(255,255,255,0.74); }
.story-note {
  max-width: 860px;
  margin: -20px auto 42px;
  text-align: center;
  color: var(--placeholder-grey-blue-text);
  line-height: 1.65;
}
.story-panel { display: none; }
.story-panel.active { display: block; }
.story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  box-shadow: 0 28px 68px rgba(12,22,51,0.14);
}
.story-copy {
  display: grid;
  gap: 18px;
}
.story-step {
  padding: 30px;
  background: #fffaf1;
  border-left: 3px solid var(--placeholder-gold);
  box-shadow: 0 18px 42px rgba(12,22,51,0.08);
}
.story-step h3 {
  margin-bottom: 0.75rem;
  color: var(--placeholder-dark-blue);
  font-size: 30px;
}
.story-step p {
  color: var(--placeholder-grey-blue-text);
  line-height: 1.7;
}
.story-disclosure {
  margin-top: 52px;
  padding: 28px;
  border: 1px solid rgba(12,22,51,0.12);
  color: var(--placeholder-grey-blue-text);
  background: rgba(255,250,241,0.72);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-nav__group { display: grid; }
  .site-nav__submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .site-nav__submenu a { padding: 0.8rem 1rem; }
  .interior-hero { min-height: 520px; padding-top: calc(var(--pre-header-height-mobile) + 132px); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-layout { grid-template-columns: 1fr; }
  .story-image img { min-height: 360px; }
  .designation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .interior-hero { min-height: 500px; }
  .team-grid,
  .designation-grid { grid-template-columns: 1fr; }
  .team-card__photo { min-height: 240px; }
}

/* Allow Who We Are dropdown to extend outside the header while keeping logo sizing controlled. */
.site-header { overflow: visible !important; }
.site-header .brand { overflow: hidden !important; }

/* Dropdown usability: remove hover gap between top nav item and submenu. */
.site-nav__group {
  padding: 0.95rem 0;
  margin: -0.95rem 0;
}
.site-nav__group::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  top: 100%;
  height: 22px;
}
.site-nav__submenu {
  top: 100% !important;
  z-index: 1005;
}
.site-nav__group:hover .site-nav__submenu,
.site-nav__group:focus-within .site-nav__submenu {
  transform: translate(-50%, 0) !important;
}
@media (max-width: 900px) {
  .site-nav__group {
    padding: 0;
    margin: 0;
  }
  .site-nav__group::after {
    content: none;
  }
}


/* Team photo roster from supplied Agent Photos folder. */
.team-card__photo {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  overflow: hidden;
  background: #d8d1c6;
}
.team-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.team-card:hover .team-card__photo img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.05);
}
.team-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(12,22,51,0), rgba(12,22,51,0.22));
  pointer-events: none;
}

/* BMS exact-logo sizing: supplied 1.786:1 mark, no wordmark redesign. */
:root{--placeholder-blue:#a8894e;--placeholder-blue-hover:#c3a567;--placeholder-dark-blue:#1e2725;--placeholder-semi-dark-blue:#343d38;--placeholder-gold:#c3a567;--placeholder-light-gold:#e9d8b3;--placeholder-cream:#f8f4e9;--placeholder-grey-blue-text:#676e68;--placeholder-ink:#202823}
.home-hero-slider__background::after{inset:0;width:100%;background:linear-gradient(90deg,rgba(20,26,23,.82) 0%,rgba(20,26,23,.62) 46%,rgba(20,26,23,.18) 100%);pointer-events:none}
.home-hero-slider__mask-bottom{background:linear-gradient(to bottom,rgba(30,39,37,0) 20%,#1e2725 100%)}
.site-header::before{background:rgba(30,39,37,.55)}
.site-header .brand{flex:0 0 120px!important;width:120px!important;max-width:120px!important;height:62px!important;justify-content:flex-start!important}
.site-header .brand__logo{width:auto!important;max-width:116px!important;height:54px!important;max-height:54px!important;object-fit:contain!important}
.site-header.sticky .brand__logo{height:48px!important;max-height:48px!important}
.brand--footer .brand__logo,.brand__logo--footer{width:190px!important;max-width:190px!important;height:auto!important;max-height:112px!important}
@media(max-width:991px){.site-header .brand{flex-basis:104px!important;width:104px!important;max-width:104px!important;height:54px!important}.site-header .brand__logo{height:46px!important;max-height:46px!important;max-width:100px!important}.site-header.sticky .brand__logo{height:42px!important;max-height:42px!important}}

/* BMS visual QA correction: persistent text contrast at every viewport. */
.home-hero-slider__background::before,.home-hero-slider__mask-top{display:none!important}
.home-hero-slider__background::after{display:block!important;inset:0;width:100%;background:linear-gradient(90deg,rgba(20,26,23,.78) 0%,rgba(20,26,23,.54) 48%,rgba(20,26,23,.22) 100%)}
.home-hero-slider__mask-bottom{background:linear-gradient(to bottom,rgba(30,39,37,0) 0%,rgba(30,39,37,.9) 70%,#1e2725 100%);backdrop-filter:none;-webkit-backdrop-filter:none}
.site-header{background:rgba(30,39,37,.90)}
.site-header::before{background:rgba(30,39,37,.90)}
[data-bms-concept-disclosure]{max-width:740px;margin:1rem 0;color:#f8f4e9;font-size:15px;line-height:1.6}
@media(max-width:860px){.home-hero-slider__background::after{background:linear-gradient(180deg,rgba(20,26,23,.53) 0%,rgba(20,26,23,.58) 60%,rgba(20,26,23,.60) 100%)}.home-hero-slider__mask-bottom{height:300px}.home-hero-slider__service{opacity:1}}
