/*
  KPD Homepage Template System
  --------------------------------
  Reusable classes extracted from the current homepage direction.
  Load sitewide, then opt individual pages/sections into these classes as we rebuild page by page.
*/

:root {
  --kpd-template-black: #000000;
  --kpd-template-white: #ffffff;
  --kpd-template-paper: #f3f3f3;
  --kpd-template-ink-soft: rgba(0, 0, 0, 0.68);
  --kpd-template-white-soft: rgba(255, 255, 255, 0.68);
  --kpd-template-white-muted: rgba(255, 255, 255, 0.56);
  --kpd-template-line-dark: rgba(0, 0, 0, 0.1);
  --kpd-template-line-light: rgba(255, 255, 255, 0.18);
  --kpd-template-width: min(var(--kpd-container-width, 1760px), calc(100vw - 30px));
  --kpd-template-gutter: var(--kpd-container-gutter, 15px);
  --kpd-template-gap: clamp(16px, 1.55vw, 28px);
  --kpd-template-section-y: clamp(54px, 6vw, 96px);
  --kpd-template-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --kpd-template-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --kpd-template-fast: 320ms;
  --kpd-template-medium: 560ms;
  --kpd-template-reveal: 820ms;
  --kpd-template-long: 960ms;
  --kpd-template-title-size: 28px;
  --kpd-template-title-height: 53px;
  --kpd-template-card-title-size: 28px;
  --kpd-template-card-title-height: 76px;
  --kpd-template-body-size: 14px;
  --kpd-template-body-height: 84px;
  --kpd-template-tracking: 0.784px;
}

.kpd-template-shell,
.kpd-template-section > .container,
.kpd-template-section > .kpd-template-container,
.kpd-template-footer-shell {
  width: var(--kpd-template-width) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: var(--kpd-template-gutter) !important;
  padding-left: var(--kpd-template-gutter) !important;
  box-sizing: border-box !important;
}

.kpd-template-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--kpd-template-section-y);
  padding-bottom: var(--kpd-template-section-y);
}

.kpd-template-section--dark {
  background: var(--kpd-template-black);
  color: var(--kpd-template-white);
}

.kpd-template-section--light {
  background: var(--kpd-template-paper);
  color: var(--kpd-template-black);
}

.kpd-template-section--atmosphere::before,
.kpd-template-section--atmosphere::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.kpd-template-section--atmosphere::before {
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.09), transparent 32%),
    radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.055), transparent 30%);
  mix-blend-mode: screen;
}

.kpd-template-section--atmosphere::after {
  background:
    radial-gradient(circle at 86% 74%, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.018) 100%);
  opacity: 0.75;
}

.kpd-template-section > .container,
.kpd-template-section > .kpd-template-container {
  position: relative;
  z-index: 1;
}

.kpd-template-title,
html body main#wrapper .kpd-template-title {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--kpd-template-title-height);
  height: var(--kpd-template-title-height);
  margin: 0;
  color: currentColor;
  font-size: var(--kpd-template-title-size) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
  text-transform: uppercase;
}

.kpd-template-title::after {
  position: absolute;
  left: 0;
  bottom: -0.38em;
  width: clamp(56px, 7vw, 112px);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.72;
  transform: scaleX(0.5);
  transform-origin: left center;
  animation: kpdTemplateTitleLine 3.8s var(--kpd-template-ease) infinite;
}

.kpd-template-copy,
html body main#wrapper .kpd-template-copy {
  margin: 0;
  color: currentColor;
  font-size: var(--kpd-template-body-size) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.kpd-template-section--dark .kpd-template-copy {
  color: var(--kpd-template-white-soft);
}

.kpd-template-section--light .kpd-template-copy {
  color: var(--kpd-template-ink-soft);
}

.kpd-template-copy--fixed {
  height: var(--kpd-template-body-height);
  overflow: visible;
}

.kpd-template-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--kpd-template-black);
  color: var(--kpd-template-white);
  isolation: isolate;
}

.kpd-template-hero__media,
.kpd-template-hero__media :is(img, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kpd-template-hero__media :is(img, video) {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.kpd-template-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.56) 66%, #020303 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.kpd-template-hero__content {
  position: relative;
  z-index: 2;
  width: var(--kpd-template-width);
  margin: 0 auto;
  padding: clamp(110px, 15svh, 180px) var(--kpd-template-gutter) clamp(68px, 9svh, 120px);
}

.kpd-template-hero__title,
html body main#wrapper .kpd-template-hero__title {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: min(100%, 640px);
  min-height: 76px;
  height: 76px;
  margin: 0;
  color: var(--kpd-template-white);
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
}

.kpd-template-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--kpd-template-gap);
  align-items: stretch;
}

.kpd-template-split__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(260px, 30vw, 430px);
}

.kpd-template-split__media {
  min-height: clamp(260px, 30vw, 430px);
  margin: 0;
  overflow: hidden;
  background: #101010;
}

.kpd-template-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1);
  transition: transform 1.25s var(--kpd-template-ease), filter 1.25s var(--kpd-template-ease);
}

.kpd-template-split__media:hover img {
  transform: scale(1.045);
}

.kpd-template-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.15vw, 22px);
  width: 100%;
}

.kpd-template-stat-card {
  display: grid;
  align-content: center;
  min-height: clamp(118px, 13svh, 166px);
  padding: clamp(16px, 1.5vw, 28px) clamp(10px, 1vw, 18px);
  border: 1px solid var(--kpd-template-line-light);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.2);
  color: var(--kpd-template-white);
  text-align: center;
  transition: border-color var(--kpd-template-fast) ease, transform var(--kpd-template-fast) ease;
}

.kpd-template-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-4px);
}

.kpd-template-stat-value,
html body main#wrapper .kpd-template-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  min-height: 53px;
  margin: 0;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
}

.kpd-template-stat-label {
  max-width: 16ch;
  margin: 8px auto 0;
  color: var(--kpd-template-white-soft);
  font-size: clamp(12px, 0.92vw, 16px);
  line-height: 1.25;
}

.kpd-template-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 1.6vw, 28px);
  width: 100%;
}

.kpd-template-expanding-card {
  position: relative;
  flex: 0 1 clamp(190px, 16vw, 270px);
  min-width: clamp(180px, 15vw, 250px);
  height: clamp(430px, 43vw, 590px);
  overflow: hidden;
  background: #101010;
  color: var(--kpd-template-white);
  isolation: isolate;
  transition:
    flex-basis var(--kpd-template-reveal) var(--kpd-template-ease),
    min-width var(--kpd-template-reveal) var(--kpd-template-ease),
    transform var(--kpd-template-reveal) var(--kpd-template-ease),
    box-shadow var(--kpd-template-medium) ease;
}

.kpd-template-expanding-card.is-active,
.kpd-template-expanding-card:hover,
.kpd-template-expanding-card:focus-within {
  flex-basis: clamp(520px, 48vw, 790px);
  min-width: clamp(480px, 44vw, 740px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 28px 86px rgba(0, 0, 0, 0.28);
}

.kpd-template-expanding-card__media,
.kpd-template-expanding-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kpd-template-expanding-card__media {
  margin: 0;
}

.kpd-template-expanding-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.82) 100%),
    rgba(0, 0, 0, 0.5);
  transition: background var(--kpd-template-medium) var(--kpd-template-ease), opacity var(--kpd-template-medium) var(--kpd-template-ease);
}

.kpd-template-expanding-card:is(.is-active, :hover, :focus-within) .kpd-template-expanding-card__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.84) 100%);
}

.kpd-template-expanding-card__media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform var(--kpd-template-long) var(--kpd-template-ease);
}

.kpd-template-expanding-card:is(.is-active, :hover, :focus-within) .kpd-template-expanding-card__media img {
  transform: scale(1.06);
}

.kpd-template-expanding-card__title,
.kpd-template-expanding-card__copy,
.kpd-template-expanding-card__button {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 3vw, 48px);
  right: clamp(24px, 3vw, 48px);
  color: var(--kpd-template-white);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px);
}

.kpd-template-expanding-card__title,
html body main#wrapper .kpd-template-expanding-card__title {
  bottom: clamp(142px, 12vw, 184px);
  display: flex;
  align-items: center;
  height: var(--kpd-template-card-title-height);
  min-height: var(--kpd-template-card-title-height);
  margin: 0;
  font-size: var(--kpd-template-card-title-size) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
  transition: opacity var(--kpd-template-medium) var(--kpd-template-ease), transform var(--kpd-template-reveal) var(--kpd-template-ease);
}

.kpd-template-expanding-card__copy {
  bottom: clamp(74px, 6.8vw, 98px);
  height: var(--kpd-template-body-height);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--kpd-template-body-size);
  line-height: 1.5;
  transition: opacity var(--kpd-template-medium) var(--kpd-template-ease) 70ms, transform var(--kpd-template-reveal) var(--kpd-template-ease) 70ms;
}

.kpd-template-expanding-card__button {
  right: auto;
  bottom: clamp(28px, 3vw, 42px);
  transition: opacity var(--kpd-template-medium) var(--kpd-template-ease) 120ms, transform var(--kpd-template-reveal) var(--kpd-template-ease) 120ms, color var(--kpd-template-fast) ease;
}

.kpd-template-expanding-card.is-content-ready :is(.kpd-template-expanding-card__title, .kpd-template-expanding-card__copy, .kpd-template-expanding-card__button),
.kpd-template-expanding-card:hover :is(.kpd-template-expanding-card__title, .kpd-template-expanding-card__copy, .kpd-template-expanding-card__button),
.kpd-template-expanding-card:focus-within :is(.kpd-template-expanding-card__title, .kpd-template-expanding-card__copy, .kpd-template-expanding-card__button) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.kpd-template-news-layout {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}

.kpd-template-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
}

.kpd-template-news-card {
  display: flex;
  min-width: 0;
  min-height: clamp(330px, 23vw, 390px);
  overflow: hidden;
  border: 1px solid var(--kpd-template-line-dark);
  background: var(--kpd-template-white);
  color: var(--kpd-template-black);
  flex-direction: column;
  box-shadow: none;
  isolation: isolate;
  transition: transform var(--kpd-template-fast) var(--kpd-template-ease), box-shadow var(--kpd-template-fast) ease;
}

.kpd-template-news-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.kpd-template-news-card__media {
  display: block;
  margin: 22px 22px 0;
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: #0e0e0e;
}

.kpd-template-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1.01);
  transition: transform 760ms var(--kpd-template-ease);
}

.kpd-template-news-card:hover .kpd-template-news-card__media img {
  transform: scale(1.06);
}

.kpd-template-development {
  background: var(--kpd-template-paper) !important;
  color: var(--kpd-template-black) !important;
  padding-top: clamp(64px, 6.8vw, 116px);
  padding-bottom: clamp(70px, 7vw, 120px);
}

.kpd-template-development::before,
.kpd-template-development::after,
.kpd-template-development.home-white-reveal-section::before,
.kpd-template-development.home-white-reveal-section::after {
  display: none !important;
  content: none !important;
}

.kpd-template-development__intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(36px, 4.4vw, 72px);
}

.kpd-template-development__intro .kpd-template-copy {
  max-width: 650px;
  color: var(--kpd-template-ink-soft) !important;
}

.kpd-template-development__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
  align-items: stretch;
}

.kpd-template-development-card {
  display: flex;
  min-width: 0;
  min-height: clamp(430px, 35vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--kpd-template-white);
  color: var(--kpd-template-black);
  flex-direction: column;
  box-shadow: none;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition:
    border-color var(--kpd-template-fast) ease,
    box-shadow var(--kpd-template-fast) ease,
    transform var(--kpd-template-medium) var(--kpd-template-ease);
}

.kpd-template-development-card:hover,
.kpd-template-development-card:focus-within {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.12);
  transform: translate3d(0, -6px, 0);
}

.kpd-template-development-card__media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
  text-decoration: none;
}

.kpd-template-development-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none !important;
  transform: scale(1.01);
  transition: transform var(--kpd-template-long) var(--kpd-template-ease);
}

.kpd-template-development-card:hover .kpd-template-development-card__media img,
.kpd-template-development-card:focus-within .kpd-template-development-card__media img {
  transform: scale(1.055);
}

.kpd-template-development-card__body {
  display: flex;
  flex: 1;
  min-height: 0;
  padding: clamp(24px, 2.1vw, 34px);
  flex-direction: column;
}

.kpd-template-development-card__eyebrow {
  min-height: 34px;
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.kpd-template-development-card__title,
html body main#wrapper .kpd-template-development-card__title {
  display: flex;
  align-items: flex-start;
  height: var(--kpd-template-card-title-height);
  min-height: var(--kpd-template-card-title-height);
  margin: 0;
  color: var(--kpd-template-black);
  font-size: var(--kpd-template-card-title-size) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
  text-transform: uppercase;
}

html body main#wrapper .kpd-template-development-card p.kpd-template-development-card__copy,
.kpd-template-development-card__copy {
  height: var(--kpd-template-body-height);
  min-height: var(--kpd-template-body-height);
  margin: 0 0 clamp(24px, 2vw, 34px);
  overflow: hidden;
  color: rgba(0, 0, 0, 0.62);
  font-size: var(--kpd-template-body-size) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

html body main#wrapper .kpd-template-development-card .tf-btn {
  width: fit-content;
  min-width: 188px;
  margin-top: auto;
  border-color: rgba(0, 0, 0, 0.72) !important;
  color: var(--kpd-template-black) !important;
  background: transparent !important;
}

html body main#wrapper .kpd-template-development-card .tf-btn:hover,
html body main#wrapper .kpd-template-development-card .tf-btn:focus-visible {
  border-color: var(--kpd-template-black) !important;
  color: var(--kpd-template-white) !important;
  background: var(--kpd-template-black) !important;
}

html body main#wrapper .kpd-template-development-card .tf-btn:hover::before,
html body main#wrapper .kpd-template-development-card .tf-btn:focus-visible::before {
  background: var(--kpd-template-black) !important;
}

/* Developments page expanding portfolio cards */
.kpd-template-development {
  background: #f3f3f3 !important;
  color: #000 !important;
  padding-top: clamp(72px, 6vw, 96px) !important;
  padding-bottom: clamp(72px, 6vw, 96px) !important;
}

html body main#wrapper .kpd-template-development {
  background-color: #f3f3f3 !important;
}

.kpd-template-development-slider {
  position: relative;
  width: 100%;
}

.kpd-template-development__grid {
  display: flex !important;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(16px, 1.6vw, 28px);
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 clamp(18px, 2vw, 30px);
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.kpd-template-development__grid::-webkit-scrollbar {
  display: none;
}

.kpd-template-development-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: clamp(8px, 1.1vw, 18px);
}

.kpd-template-development-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.kpd-template-development-control:hover,
.kpd-template-development-control:focus-visible {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.kpd-template-development-control[data-development-prev]:hover,
.kpd-template-development-control[data-development-prev]:focus-visible {
  transform: translate3d(-3px, 0, 0);
}

.kpd-template-development-control[data-development-next]:hover,
.kpd-template-development-control[data-development-next]:focus-visible {
  transform: translate3d(3px, 0, 0);
}

.kpd-template-development-card {
  position: relative;
  display: block;
  flex: 0 1 clamp(190px, 16vw, 270px);
  min-width: clamp(190px, 16vw, 270px);
  height: clamp(430px, 43vw, 590px);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  isolation: isolate;
  outline: 0;
  scroll-snap-align: start;
  transform: translate3d(0, 0, 0);
  transition:
    flex-basis 820ms cubic-bezier(0.16, 1, 0.3, 1),
    min-width 820ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 560ms ease,
    transform 560ms ease;
}

.kpd-template-development-card.is-active,
.kpd-template-development-card:hover,
.kpd-template-development-card:focus-within {
  flex-basis: clamp(520px, 48vw, 790px);
  min-width: clamp(520px, 48vw, 790px);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.22);
  transform: translate3d(0, -2px, 0);
}

.kpd-template-development-card__media,
.kpd-template-development-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kpd-template-development-card__media {
  display: block;
  margin: 0;
  overflow: hidden;
  aspect-ratio: auto;
  background: #000;
  pointer-events: none;
}

.kpd-template-development-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
  opacity: 1;
  transition: background 640ms ease, opacity 640ms ease;
}

.kpd-template-development-card.is-active .kpd-template-development-card__media::after,
.kpd-template-development-card:hover .kpd-template-development-card__media::after,
.kpd-template-development-card:focus-within .kpd-template-development-card__media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.02) 62%);
}

.kpd-template-development-card__media img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none !important;
  transform: scale(1.015);
  transition: transform 960ms cubic-bezier(0.16, 1, 0.3, 1);
}

.kpd-template-development-card.is-active .kpd-template-development-card__media img,
.kpd-template-development-card:hover .kpd-template-development-card__media img,
.kpd-template-development-card:focus-within .kpd-template-development-card__media img {
  transform: scale(1.06);
}

.kpd-template-development-card__body {
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 42px);
  left: clamp(24px, 3vw, 48px);
  z-index: 3;
  display: block;
  min-height: 0;
  padding: 0;
  color: #fff;
  pointer-events: none;
}

.kpd-template-development-card__eyebrow,
.kpd-template-development-card :is(.selected-dev-features, .selected-dev-feature-icon, .kpd-template-development-card__features) {
  display: none !important;
}

.kpd-template-development-card__title,
html body main#wrapper .kpd-template-development-card__title {
  display: block;
  height: 76px;
  min-height: 76px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.14 !important;
  letter-spacing: 0.784px !important;
  text-transform: uppercase;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 440ms ease,
    visibility 440ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

html body main#wrapper .kpd-template-development-card p.kpd-template-development-card__copy,
.kpd-template-development-card__copy {
  height: 84px;
  min-height: 84px;
  max-width: 560px;
  margin: 0 0 24px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 440ms ease 80ms,
    visibility 440ms ease 80ms,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.kpd-template-development-card__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 30px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition:
    color 260ms ease,
    opacity 440ms ease 150ms,
    visibility 440ms ease 150ms,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}

.kpd-template-development-card__button span {
  display: inline-block;
  transition: transform 260ms ease;
}

.kpd-template-development-card__button:hover,
.kpd-template-development-card__button:focus-visible {
  color: #fff !important;
  transform: translate3d(6px, 0, 0);
}

.kpd-template-development-card__button:hover span,
.kpd-template-development-card__button:focus-visible span {
  transform: translate3d(4px, 0, 0);
}

.kpd-template-development-card.is-content-ready .kpd-template-development-card__title,
html body main#wrapper .kpd-template-development-card.is-content-ready .kpd-template-development-card__title,
.kpd-template-development-card.is-content-ready .kpd-template-development-card__copy,
html body main#wrapper .kpd-template-development-card.is-content-ready p.kpd-template-development-card__copy,
.kpd-template-development-card.is-content-ready .kpd-template-development-card__button {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.kpd-template-development-card.is-content-ready .kpd-template-development-card__button {
  pointer-events: auto;
}

.kpd-template-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 1.9vw, 30px);
}

.kpd-template-news-card__title,
html body main#wrapper .kpd-template-news-card__title {
  display: flex;
  align-items: flex-start;
  height: var(--kpd-template-card-title-height);
  min-height: var(--kpd-template-card-title-height);
  margin: 0;
  color: var(--kpd-template-black);
  font-size: var(--kpd-template-card-title-size) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: var(--kpd-template-tracking) !important;
}

.kpd-template-news-card__meta {
  display: block;
  height: var(--kpd-template-body-height);
  min-height: var(--kpd-template-body-height);
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

.kpd-template-events-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(260px, 1.15fr) minmax(220px, 0.85fr);
  grid-template-rows: repeat(2, minmax(188px, 1fr));
  gap: clamp(14px, 1.3vw, 24px);
  min-height: clamp(430px, 40vw, 560px);
}

.kpd-template-event-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  background: var(--kpd-template-black);
  color: var(--kpd-template-white);
  isolation: isolate;
  text-decoration: none;
}

.kpd-template-event-card--hero {
  grid-row: 1 / 3;
}

.kpd-template-event-card--wide {
  grid-column: 2 / 4;
}

.kpd-template-event-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.kpd-template-event-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1.01);
  transition: transform 900ms var(--kpd-template-ease);
}

.kpd-template-event-card:hover img,
.kpd-template-event-card:focus-visible img {
  transform: scale(1.07);
}

.kpd-template-event-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  padding: clamp(28px, 2.6vw, 46px);
}

.kpd-template-event-card__title {
  max-width: min(100%, 18ch);
  margin: 0;
  color: var(--kpd-template-white);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.62);
}

.kpd-template-event-card__meta,
.kpd-template-event-card__button {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--kpd-template-fast) ease,
    visibility var(--kpd-template-fast) ease,
    transform var(--kpd-template-medium) var(--kpd-template-ease);
}

.kpd-template-event-card__meta {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpd-template-event-card__button {
  margin-top: 18px;
}

.kpd-template-event-card:hover :is(.kpd-template-event-card__meta, .kpd-template-event-card__button),
.kpd-template-event-card:focus-visible :is(.kpd-template-event-card__meta, .kpd-template-event-card__button) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kpd-template-marquee {
  overflow: hidden;
  width: 100%;
}

.kpd-template-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: kpdTemplateMarqueeRtl 34s linear infinite;
}

.kpd-template-marquee:hover .kpd-template-marquee__track {
  animation-play-state: paused;
}

.kpd-template-brand-tile {
  flex: 0 0 clamp(150px, 13vw, 208px);
  width: clamp(150px, 13vw, 208px);
  height: clamp(78px, 6vw, 96px);
  display: grid;
  place-items: center;
  padding: clamp(14px, 1.4vw, 20px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.kpd-template-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity var(--kpd-template-reveal) var(--kpd-template-ease),
    transform var(--kpd-template-reveal) var(--kpd-template-ease);
}

.kpd-template-reveal.is-kpd-visible,
.kpd-template-reveal.is-effect-visible,
.is-kpd-visible .kpd-template-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kpd-template-light-reveal {
  --white-reveal-y: 106%;
  position: relative;
  isolation: isolate;
  color: var(--kpd-template-white);
  transition: color var(--kpd-template-medium) ease;
}

.kpd-template-light-reveal::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--kpd-template-paper);
  transform: translate3d(0, var(--white-reveal-y), 0);
  transition: transform var(--kpd-template-reveal) var(--kpd-template-ease);
}

.kpd-template-light-reveal.is-white-revealed {
  color: var(--kpd-template-black);
}

.kpd-template-light-reveal.is-white-revealed::before {
  transform: translate3d(0, 0, 0);
}

@keyframes kpdTemplateTitleLine {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.42);
  }

  48% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes kpdTemplateMarqueeRtl {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1199px) {
  .kpd-template-development__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpd-template-news-layout {
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .kpd-template-development__intro {
    grid-template-columns: 1fr;
  }

  .kpd-template-split,
  .kpd-template-news-layout {
    grid-template-columns: 1fr;
  }

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

  .kpd-template-news-grid {
    grid-template-columns: 1fr;
  }

  .kpd-template-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .kpd-template-event-card,
  .kpd-template-event-card--hero,
  .kpd-template-event-card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(280px, 46vw, 430px);
  }

  .kpd-template-event-card--hero,
  .kpd-template-event-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  :root {
    --kpd-template-section-y: 50px;
    --kpd-template-title-height: 46px;
  }

  .kpd-template-title,
  html body main#wrapper .kpd-template-title,
  .kpd-template-hero__title,
  html body main#wrapper .kpd-template-hero__title {
    width: 100%;
    height: auto;
    min-height: 46px;
    white-space: normal;
  }

  .kpd-template-stats-grid,
  .kpd-template-development__grid,
  .kpd-template-events-grid {
    grid-template-columns: 1fr;
  }

  .kpd-template-development-card {
    min-height: 0;
  }

  .kpd-template-expanding-card,
  .kpd-template-expanding-card.is-active,
  .kpd-template-expanding-card:hover,
  .kpd-template-expanding-card:focus-within {
    flex-basis: 82vw;
    min-width: 82vw;
    height: clamp(350px, 105vw, 460px);
  }
}

@media (max-width: 1199px) {
  .kpd-template-development__grid {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .kpd-template-development-card,
  .kpd-template-development-card.is-active,
  .kpd-template-development-card:hover,
  .kpd-template-development-card:focus-within {
    flex: 0 0 clamp(420px, 58vw, 680px);
    min-width: clamp(420px, 58vw, 680px);
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .kpd-template-development-card,
  .kpd-template-development-card.is-active,
  .kpd-template-development-card:hover,
  .kpd-template-development-card:focus-within {
    flex-basis: 82vw;
    min-width: 82vw;
    height: clamp(390px, 112vw, 520px);
  }

  .kpd-template-development-card__title,
  html body main#wrapper .kpd-template-development-card__title {
    height: auto;
    min-height: 58px;
  }
}

/* Sitewide navigation sizing
   Keeps header, dropdown, and mobile menu typography matched across pages. */
html body main#wrapper .tf-header :is(
  .nav-menu-main .item-link,
  .nav-panel-trigger,
  .desktop-nav-link,
  .btn-mobile-menu,
  .header-contact p
),
html body main#wrapper .desktop-nav-panel :is(
  .desktop-nav-link
),
html body main#wrapper .offcanvas-menu :is(
  .mb-menu-link,
  .mb-menu-link .text,
  .nav-site-heading,
  .nav-site-link-anchor
),
html body main#wrapper .tf-footer :is(
  .footer-heading,
  .footer-menu-list a
),
html body main#wrapper :is(
  .tf-link-icon,
  .project-anchor-nav a
) {
  height: auto !important;
  min-height: 0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

html body main#wrapper .tf-header :is(
  .nav-menu-main .item-link,
  .nav-panel-trigger,
  .btn-mobile-menu,
  .header-contact p
) {
  align-items: center !important;
}

html body main#wrapper .desktop-nav-link {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

html body main#wrapper .offcanvas-menu .nav-site-links {
  gap: 12px !important;
}

html body main#wrapper .offcanvas-menu .nav-site-link-anchor {
  display: inline-flex !important;
  text-align: end !important;
}

/* Leadership hero uses the same bottom title placement as the About template hero. */
html body.leadership-page-body main#wrapper .section-leadership-hero.kpd-template-hero > .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  min-height: 100svh !important;
  padding-top: clamp(112px, 11vw, 172px) !important;
  padding-bottom: clamp(54px, 7vw, 104px) !important;
}

html body.leadership-page-body main#wrapper .section-leadership-hero.kpd-template-hero .project-title.kpd-template-hero__title {
  margin: 0 !important;
  color: #fff !important;
}

/* Global non-homepage hero lock: matches the reference cinematic hero. */
html body:not(.home-page-body) main#wrapper .section-project-hero {
  min-height: 100svh !important;
  height: 100svh !important;
  padding: 0 !important;
  background: #000 !important;
  color: #fff !important;
  overflow: hidden !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero :is(.project-hero-grid, .project-hero-top, .project-hero-video-tools, .contact-hero-kicker) {
  display: none !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero :is(.project-hero-bg, .project-hero-shade) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero .project-hero-bg :is(img, video) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero .project-hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 28%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.34) 100%) !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero > .container,
html body.leadership-page-body main#wrapper .section-leadership-hero.kpd-template-hero > .container {
  width: min(1326px, calc(100vw - 48px)) !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: clamp(104px, 14svh, 168px) 0 clamp(66px, 8.5svh, 112px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero :is(.effectFade, .fadeUp, .fadeLeft, .fadeRight, .kpd-reveal-target) {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero h1.project-title {
  max-width: min(760px, 100%) !important;
  min-height: 53px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.784px !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero h1.project-title::after {
  content: "" !important;
  display: block !important;
  width: clamp(96px, 7.5vw, 160px) !important;
  height: 1px !important;
  margin-top: clamp(10px, 1.2vw, 16px) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  opacity: 1 !important;
  transform: scaleX(1) !important;
  transform-origin: left center !important;
}

@media (max-width: 991px) {
  html body:not(.home-page-body) main#wrapper .section-project-hero > .container,
  html body.leadership-page-body main#wrapper .section-leadership-hero.kpd-template-hero > .container {
    width: min(100% - 36px, 760px) !important;
    padding-top: 104px !important;
    padding-bottom: clamp(54px, 10svh, 88px) !important;
  }
}

@media (max-width: 767px) {
  html body:not(.home-page-body) main#wrapper .section-project-hero > .container,
  html body.leadership-page-body main#wrapper .section-leadership-hero.kpd-template-hero > .container {
    width: calc(100vw - 32px) !important;
    padding-top: 96px !important;
    padding-bottom: 54px !important;
  }
}

/* Global editorial card style: news, blogs, events, and investor trust cards. */
html body main#wrapper :is(.press-news-card),
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog,
html body.events-page-body main#wrapper :is(.event-card, .event-recap-card),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card {
  position: relative !important;
  min-height: clamp(410px, 31vw, 452px) !important;
  height: auto !important;
  padding: clamp(20px, 1.55vw, 28px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #0b0b0b !important;
  box-shadow: none !important;
  transform: translate3d(0, 0, 0) !important;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 420ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body main#wrapper .press-news-card:hover,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog:hover,
html body.events-page-body main#wrapper :is(.event-card, .event-recap-card):hover,
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card:hover {
  border-color: rgba(0, 0, 0, 0.18) !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: translate3d(0, -4px, 0) !important;
}

html body main#wrapper .press-news-card::before,
html body main#wrapper .press-news-card::after,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog::before,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog::after,
html body.events-page-body main#wrapper :is(.event-card, .event-recap-card)::before,
html body.events-page-body main#wrapper :is(.event-card, .event-recap-card)::after,
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card::before,
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card::after {
  display: none !important;
  content: none !important;
}

html body main#wrapper .press-news-card-media,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog :is(.blog-image, .img-style),
html body.events-page-body main#wrapper :is(.event-card__visual, .event-recap-card .blog-image, .event-recap-card .img-style),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card > img {
  width: 100% !important;
  height: clamp(128px, 10.4vw, 164px) !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 0 clamp(28px, 3vw, 34px) !important;
  padding: 0 !important;
  display: block !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  aspect-ratio: auto !important;
}

html body main#wrapper .press-news-card-media img,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog :is(.blog-image img, .img-style img),
html body.events-page-body main#wrapper :is(.event-card__visual img, .event-recap-card .blog-image img, .event-recap-card .img-style img),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card > img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1) !important;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body main#wrapper .press-news-card:hover .press-news-card-media img,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog:hover :is(.blog-image img, .img-style img),
html body.events-page-body main#wrapper :is(.event-card, .event-recap-card):hover :is(.event-card__visual img, .blog-image img, .img-style img),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card:hover > img {
  transform: scale(1.035) !important;
}

html body main#wrapper .press-news-card-body,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .blog-content,
html body.events-page-body main#wrapper :is(.event-card__content, .event-recap-card .blog-content) {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  background: transparent !important;
  color: #0b0b0b !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog.style-horizontal {
  display: flex !important;
  flex-direction: column !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .infor,
html body.events-page-body main#wrapper .event-recap-card .infor {
  width: 100% !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog h6,
html body.events-page-body main#wrapper .event-recap-card h6 {
  order: 1 !important;
  margin: 0 0 clamp(26px, 3vw, 34px) !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .infor_sub,
html body.events-page-body main#wrapper .event-recap-card .infor_sub {
  order: 2 !important;
}

html body main#wrapper .press-news-card h3,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog :is(.infor_name, h6 a),
html body.events-page-body main#wrapper :is(.event-card__title, .event-recap-card .infor_name),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card h3 {
  margin: 0 0 clamp(26px, 3vw, 34px) !important;
  color: #0b0b0b !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.784px !important;
  text-transform: none !important;
}

html body.events-page-body main#wrapper .event-card__title {
  order: 1 !important;
}

html body main#wrapper .press-news-card-body p,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .infor_sub,
html body.events-page-body main#wrapper :is(.event-card__meta, .event-card__location, .event-recap-card .infor_sub),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card p {
  margin: 0 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18px !important;
  text-transform: uppercase !important;
}

html body.events-page-body main#wrapper :is(.event-card__meta, .event-card__location) {
  order: 2 !important;
}

html body.events-page-body main#wrapper .event-card__details {
  order: 3 !important;
  margin: 14px 0 0 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

html body main#wrapper .press-news-card-link,
html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .btn-action,
html body.events-page-body main#wrapper :is(.event-card .tf-btn, .event-recap-action) {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0b0b0b !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  transform: none !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .btn-action {
  font-size: 0 !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .btn-action i {
  display: none !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .btn-action::before {
  content: "READ HERE" !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: #0b0b0b !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 2px !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog .btn-action::after {
  content: ">" !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin-left: 4px !important;
  background: transparent !important;
  color: #0b0b0b !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

html body.events-page-body main#wrapper .event-card__actions {
  order: 4 !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: clamp(26px, 3vw, 34px) !important;
}

html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .tf-grid-layout,
html body.events-page-body main#wrapper :is(.events-schedule-grid, .events-recap-grid),
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-grid {
  align-items: stretch !important;
  gap: clamp(22px, 2.2vw, 34px) !important;
}

@media (max-width: 767px) {
  html body main#wrapper :is(.press-news-card),
  html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog,
  html body.events-page-body main#wrapper :is(.event-card, .event-recap-card),
  html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card {
    min-height: 390px !important;
    padding: 20px !important;
  }

  html body main#wrapper .press-news-card h3,
  html body:is(.news-page-body, .blog-updates-page-body) main#wrapper .section-blog .article-blog :is(.infor_name, h6 a),
  html body.events-page-body main#wrapper :is(.event-card__title, .event-recap-card .infor_name),
  html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card h3 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }
}

/* Editorial card backfill for older blog/news layouts without page body classes. */
html body main#wrapper .section-blog .article-blog {
  min-height: clamp(410px, 31vw, 452px) !important;
  height: auto !important;
  padding: clamp(20px, 1.55vw, 28px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #0b0b0b !important;
  box-shadow: none !important;
}

html body main#wrapper .section-blog .article-blog:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
  box-shadow: none !important;
}

html body main#wrapper .section-blog .article-blog :is(.blog-image, .img-style) {
  width: 100% !important;
  height: clamp(128px, 10.4vw, 164px) !important;
  min-height: clamp(128px, 10.4vw, 164px) !important;
  margin: 0 0 clamp(28px, 3vw, 34px) !important;
  padding: 0 !important;
  display: block !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  aspect-ratio: auto !important;
}

html body main#wrapper .section-blog .article-blog :is(.blog-image img, .img-style img) {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1) !important;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body main#wrapper .section-blog .article-blog:hover :is(.blog-image img, .img-style img) {
  transform: scale(1.035) !important;
}

html body main#wrapper .section-blog .article-blog .blog-content,
html body main#wrapper .section-blog .article-blog .infor {
  min-height: 0 !important;
  height: auto !important;
  width: 100% !important;
  padding: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  background: transparent !important;
  color: #0b0b0b !important;
}

html body main#wrapper .section-blog .article-blog.style-horizontal {
  display: flex !important;
  flex-direction: column !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

html body main#wrapper .section-blog .article-blog h6 {
  order: 1 !important;
  margin: 0 0 clamp(26px, 3vw, 34px) !important;
}

html body main#wrapper .section-blog .article-blog .infor_sub {
  order: 2 !important;
  margin: 0 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18px !important;
  text-transform: uppercase !important;
}

html body main#wrapper .section-blog .article-blog :is(.infor_name, h6 a) {
  margin: 0 !important;
  color: #0b0b0b !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.784px !important;
  text-transform: none !important;
}

html body main#wrapper .section-blog .article-blog .btn-action {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0b0b0b !important;
  box-shadow: none !important;
  font-size: 0 !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  transform: none !important;
}

html body main#wrapper .section-blog .article-blog .btn-action i {
  display: none !important;
}

html body main#wrapper .section-blog .article-blog .btn-action::before {
  content: "READ HERE" !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: #0b0b0b !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 2px !important;
}

html body main#wrapper .section-blog .article-blog .btn-action::after {
  content: ">" !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin-left: 4px !important;
  background: transparent !important;
  color: #0b0b0b !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card {
  min-height: clamp(430px, 32vw, 470px) !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card h3,
html body.investor-guide-page-body main#wrapper .investor-ref-trust .investor-ref-image-card p {
  padding: 0 !important;
}

@media (max-width: 767px) {
  html body main#wrapper .section-blog .article-blog {
    min-height: 390px !important;
    padding: 20px !important;
  }

  html body main#wrapper .section-blog .article-blog :is(.infor_name, h6 a) {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }
}

/* Global header band and shared page polish */
html body:not(.home-page-body) .tf-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  transition:
    background 420ms ease,
    box-shadow 420ms ease,
    backdrop-filter 420ms ease !important;
}

html body.home-header-band-visible .tf-header {
  background: #000000 !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: none !important;
}

html body:not(.home-page-body):not(.home-header-band-visible) .tf-header {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0) 100%) !important;
  box-shadow: none !important;
}

html body.home-page-body.home-video-intro-active .tf-header {
  background: transparent !important;
  box-shadow: none !important;
}

html body:not(.home-page-body) main#wrapper :is(
  .section-project-hero,
  .section-about-hero,
  .section-contact-hero,
  .section-legacy-video-hero,
  .section-legacy-hero,
  .kpd-template-hero
) :is(h1.project-title, .kpd-template-hero__title) {
  display: block !important;
  align-items: initial !important;
  width: auto !important;
  max-width: min(760px, 100%) !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  line-height: 1.1 !important;
}

html body:not(.home-page-body) main#wrapper :is(
  .section-project-hero,
  .section-about-hero,
  .section-contact-hero,
  .section-legacy-video-hero,
  .section-legacy-hero,
  .kpd-template-hero
) :is(h1.project-title, .kpd-template-hero__title)::after {
  display: block !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: clamp(96px, 7.5vw, 160px) !important;
  height: 1px !important;
  margin: clamp(12px, 1.2vw, 18px) 0 0 !important;
  background: currentColor !important;
  opacity: 0.74 !important;
  transform: none !important;
  animation: none !important;
}

html body.investor-guide-page-body main#wrapper :is(
  .investor-ref-inventory-card .tf-btn,
  .investor-ref-doc-card a
) {
  position: relative !important;
  z-index: 2 !important;
  display: inline-flex !important;
  width: auto !important;
  min-width: 172px !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 28px !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-inventory-card .tf-btn :is(span, i),
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card a :is(span, i) {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-inventory-card .tf-btn::before,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-card .tf-btn::after,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card a::before,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card a::after {
  display: none !important;
  content: none !important;
}

html body.investor-guide-page-body main#wrapper :is(
  .investor-ref-inventory-card .tf-btn:hover,
  .investor-ref-inventory-card .tf-btn:focus-visible,
  .investor-ref-doc-card a:hover,
  .investor-ref-doc-card a:focus-visible
) {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

html body.contact-page-body main#wrapper .contact-form-code select,
html body main#wrapper .floor-plan-modal select {
  color-scheme: light !important;
  background: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

html body.contact-page-body main#wrapper .contact-form-code select option,
html body main#wrapper .floor-plan-modal select option {
  background: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

html body.contact-page-body main#wrapper .contact-form-code select {
  pointer-events: none !important;
}

html body.contact-page-body main#wrapper .contact-form-code .contact-form-select__chevron {
  opacity: 0.45 !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] summary {
  padding: clamp(26px, 3vw, 42px) !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current .legacy-react-trigger {
  padding: clamp(26px, 3vw, 42px) !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] :is(.legacy-year, h3, summary p, .legacy-toggle) {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current :is(.legacy-year, h3, .legacy-react-trigger p, .legacy-toggle) {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] .legacy-timeline-body {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) !important;
  gap: clamp(20px, 2vw, 30px) !important;
  padding: clamp(22px, 2.4vw, 34px) !important;
  border-top-color: rgba(255, 255, 255, 0.16) !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current .legacy-timeline-body {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) !important;
  gap: clamp(20px, 2vw, 30px) !important;
  padding: clamp(22px, 2.4vw, 34px) !important;
  border-top-color: rgba(255, 255, 255, 0.16) !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] .legacy-timeline-media {
  aspect-ratio: 16 / 9 !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current .legacy-timeline-media {
  aspect-ratio: 16 / 9 !important;
}

html body.legacy-page-body main#wrapper .legacy-timeline-item[open] .legacy-timeline-content p {
  color: rgba(255, 255, 255, 0.72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

html body.legacy-page-body main#wrapper .legacy-react-card.is-current .legacy-timeline-content p {
  color: rgba(255, 255, 255, 0.72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

@media (max-width: 767px) {
  html body.legacy-page-body main#wrapper .legacy-timeline-item[open] .legacy-timeline-body {
    grid-template-columns: 1fr !important;
  }

  html body.legacy-page-body main#wrapper .legacy-react-card.is-current .legacy-timeline-body {
    grid-template-columns: 1fr !important;
  }
}

/* Strong cascade pass for shared fixes that older page rules were overriding. */
html body.home-header-band-visible:not(.home-video-intro-active) .tf-header,
html body:not(.home-page-body).home-header-band-visible .tf-header,
html body:not(.home-page-body).home-header-band-visible:not(.home-video-intro-active) .tf-header {
  background: #000000 !important;
  background-color: #000000 !important;
  background-image: none !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: none !important;
}

html body:not(.home-page-body) main#wrapper .section-project-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .section-project-hero h1.project-title.kpd-template-hero__title,
html body:not(.home-page-body) main#wrapper .section-about-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .section-about-hero h1.project-title.kpd-template-hero__title,
html body:not(.home-page-body) main#wrapper .section-contact-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .section-contact-hero h1.project-title.kpd-template-hero__title,
html body:not(.home-page-body) main#wrapper .section-legacy-video-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .section-legacy-video-hero h1.project-title.kpd-template-hero__title,
html body:not(.home-page-body) main#wrapper .section-legacy-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .section-legacy-hero h1.project-title.kpd-template-hero__title,
html body:not(.home-page-body) main#wrapper .kpd-template-hero h1.project-title,
html body:not(.home-page-body) main#wrapper .kpd-template-hero h1.project-title.kpd-template-hero__title {
  display: block !important;
  width: auto !important;
  max-width: min(760px, 100%) !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn.animate-btn,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-grid .investor-ref-doc-card a,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card > a {
  display: inline-flex !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 172px !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  justify-self: start !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 28px !important;
  border: 1px solid #000000 !important;
  background: transparent !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: 2px !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn::before,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn::after,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn.animate-btn::before,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn.animate-btn::after,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-grid .investor-ref-doc-card a::before,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-grid .investor-ref-doc-card a::after,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card > a::before,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card > a::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn:hover,
html body.investor-guide-page-body main#wrapper .investor-ref-inventory-grid .investor-ref-inventory-card a.tf-btn:focus-visible,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-grid .investor-ref-doc-card a:hover,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-grid .investor-ref-doc-card a:focus-visible,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card > a:hover,
html body.investor-guide-page-body main#wrapper .investor-ref-doc-card > a:focus-visible {
  background: #000000 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body.contact-page-body main#wrapper .section-contact-inquiry .contact-form-code select,
html body.contact-page-body main#wrapper .section-contact-inquiry.home-white-reveal-section .contact-form-code select,
html body.contact-page-body main#wrapper .section-contact-inquiry.home-white-reveal-section.is-white-revealed .contact-form-code select {
  pointer-events: none !important;
  color-scheme: light !important;
  background: transparent !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

html body main#wrapper .floor-plan-modal label select,
html body main#wrapper .floor-plan-modal label select option,
html body.contact-page-body main#wrapper .section-contact-inquiry .contact-form-code select option {
  color-scheme: light !important;
  background: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
