@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --black: #000;
  --white: #fff;
  --ink: #212529;
  --muted: rgba(33, 37, 41, 0.72);
  --soft: #f0ebe1;
  --green: #1e3724;
  --font-main: "Saans TRIAL", "Figtree", "Helvetica Neue", Arial, sans-serif;
  --container: 93%;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.header-wrap {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 234px;
  height: 46px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-actions .btn-pill {
  margin-right: 20px;
}

.btn-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 20px;
  border: 1px solid var(--black);
  border-radius: 100px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-pill:hover {
  background: var(--black);
  color: var(--white);
}

.btn-pill-dark {
  background: var(--black);
  color: var(--white);
}

.btn-pill-dark:hover {
  background: var(--white);
  color: var(--black);
}

.btn-pill-arrow {
  padding: 10px 50px 10px 20px;
  overflow: hidden;
}

.btn-pill-arrow .arrow-circle {
  position: absolute;
  right: 0;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
}

.btn-pill-arrow .arrow-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 100%;
  background: currentColor;
  transition: left 0.45s ease;
}

.btn-pill-arrow svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.45s ease, color 0.45s ease;
}

.btn-pill-arrow:hover .arrow-circle::before {
  left: 0;
}

.btn-pill-arrow:hover svg {
  transform: rotate(-45deg);
}

.btn-pill-arrow.text-white {
  color: var(--white);
  border-color: var(--white);
}

.btn-pill-arrow.text-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-pill-arrow.text-white:hover svg {
  color: var(--black);
}

.btn-pill-arrow.text-black {
  color: var(--black);
  border-color: var(--black);
}

.btn-pill-arrow.text-black:hover {
  background: transparent;
  color: var(--black);
}

.btn-pill-arrow.text-black .arrow-circle::before {
  background: var(--black);
}

.btn-pill-arrow.text-black:hover svg {
  color: var(--white);
}

.meeting-icon {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.menu-toggle {
  width: 40px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  align-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--black);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 28%;
  min-width: 430px;
  height: 100vh;
  max-height: 100vh;
  z-index: 1200;
  background: var(--black);
  border-bottom-left-radius: 190px;
  color: var(--white);
  transform: translate(100%, -100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}

.menu-panel.open {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 52px;
  right: 44px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 31px;
  background: var(--white);
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-inner {
  height: 100%;
  padding: 130px 45px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.menu-list {
  list-style: none;
  padding: 0 0 68px;
  margin: 0;
}

.menu-list a {
  position: relative;
  display: inline-block;
  min-width: 300px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 300;
  line-height: 50px;
  text-transform: capitalize;
}

.menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-list a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.social-list {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 16px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.social-list a:hover {
  background: var(--white);
  color: var(--black);
}

.menu-email {
  font-size: 16px;
  font-weight: 300;
}

.hero {
  position: relative;
  height: calc(100vh - 36px);
  min-height: 690px;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.slider-frame::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 400;
  line-height: 110px;
  letter-spacing: 0;
}

.editorial-band {
  padding: 100px 0;
}

.editorial-wrap {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.editorial-left {
  width: 55%;
}

.editorial-right {
  width: 40%;
  margin-left: auto;
  margin-top: 50px;
}

.editorial-title {
  margin: 0;
  padding-right: 2%;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
  color: var(--ink);
}

.editorial-right p,
.body-copy {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: var(--ink);
}

.editorial-right p + p,
.body-copy + .body-copy {
  padding-top: 15px;
}

.editorial-actions {
  margin-top: 34px;
}

.small-kicker {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--ink);
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.project-meta {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  padding-top: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.project-meta span:first-child {
  text-transform: uppercase;
}

.slider-section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.slider-frame {
  position: relative;
  height: min(704px, 46vw);
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.slider-content h2 {
  margin: 0;
  font-size: 100px;
  font-weight: 300;
  line-height: 110px;
  text-transform: capitalize;
}

.image-band {
  width: var(--container);
  margin: 30px auto;
}

.image-band img {
  width: 100%;
  border-radius: 10px;
}

.image-pair {
  width: var(--container);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.image-pair img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 20px;
}

.video-band {
  width: var(--container);
  margin: 0 auto 100px;
  position: relative;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.video-band video,
.video-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.video-band-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.video-band-content h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 300;
  line-height: 92px;
}

.video-band-content p {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.dark-band {
  margin-top: 100px;
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.dark-band .editorial-title,
.dark-band .body-copy,
.dark-band .small-kicker,
.dark-band .editorial-right p {
  color: var(--white);
}

.partner-band {
  padding: 100px 0 0;
  overflow: hidden;
  background: var(--white);
}

.partner-inner {
  width: var(--container);
  margin: 0 auto;
}

.partner-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.partner-head h2 {
  max-width: 880px;
  margin: 0;
  font-size: 65px;
  font-weight: 300;
  line-height: 80px;
}

.partner-head p:not(.small-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.partner-marquee {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 34s linear infinite;
}

.partner-mark {
  min-width: 270px;
  min-height: 116px;
  padding: 26px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--black);
  font-size: 26px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  white-space: nowrap;
}

.partner-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.partner-grid {
  padding: 56px 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-grid span,
.market-card span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.partner-grid h3,
.market-card h3 {
  margin: 26px 0 12px;
  font-size: 30px;
  font-weight: 300;
  line-height: 38px;
}

.partner-grid p,
.market-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}

@keyframes partner-scroll {
  to {
    transform: translateX(-50%);
  }
}

.cards-band {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card,
.journal-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--black);
  color: var(--white);
}

.project-card img,
.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.project-card::after,
.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
}

.project-card-content,
.journal-card-content {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
}

.project-card h3,
.journal-card h3 {
  margin: 0 0 14px;
  font-size: 35px;
  font-weight: 300;
  line-height: 42px;
}

.project-card p,
.journal-card p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.project-card:hover img,
.journal-card:hover img {
  transform: scale(1.04);
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
}

.footer-container {
  width: var(--container);
  margin: 0 auto;
}

.footer-cta {
  display: flex;
  justify-content: center;
  padding-bottom: 84px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(170px, 0.6fr);
  gap: 32px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 26px;
}

.footer p,
.footer a {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.footer p {
  margin: 0 0 15px;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-legal {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.section_footer {
  background: var(--black);
  color: var(--white);
  padding: 54px 0 34px;
}

.footer_container {
  width: var(--container);
  margin: 0 auto;
}

.footer_header {
  padding-bottom: 74px;
  display: flex;
  justify-content: center;
}

.footer_logo_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer_logo {
  width: min(360px, 48vw);
  height: auto;
}

.footer_links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(52px, 8vw, 132px);
}

.footer_links_col_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 86px);
}

.footer_links_col,
.footer_links_newsletter {
  min-width: 0;
}

.footer_links_title {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.footer_links_list,
.footer_links_row {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_links_list {
  display: grid;
  gap: 10px;
}

.footer_link,
.footer_newsletter_terms,
.footer_legal_text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
}

.footer_link {
  display: inline-flex;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.footer_link:hover,
.footer_newsletter_terms a:hover {
  color: var(--white);
}

.footer_form_block {
  margin-top: 4px;
}

.footer_form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.form-label.hide {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.input-text {
  width: 100%;
  min-height: 46px;
  padding: 0 14px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: 0;
}

.input-text::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.button_submit {
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  transition: opacity 0.24s ease;
}

.button_submit:hover {
  opacity: 0.62;
}

.footer_newsletter_terms {
  max-width: 390px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 18px;
}

.footer_newsletter_terms a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer_legal_social {
  margin-top: 82px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}

.footer_legal_social.footer_links {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
}

.footer_links_row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.footer_links_social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-social-link-block {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.24s ease, transform 0.24s ease;
}

.icon-social-link-block:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.icon-socials {
  display: grid;
  place-items: center;
}

.icon-socials svg {
  display: block;
}

.page-hero {
  position: relative;
  height: 620px;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--white);
}

.page-hero img {
  position: absolute;
  inset: var(--header-h) 0 0;
  width: 100%;
  height: calc(100% - var(--header-h));
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-eyebrow {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.split-list {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.split-list h2 {
  margin: 0;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
}

.stats-row {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-row-spaced {
  padding-top: 100px;
}

.stat {
  border-top: 1px solid var(--black);
  padding-top: 20px;
}

.stat strong {
  display: block;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.stat strong a,
.pdf-stat strong a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.24s ease;
}

.stat strong a:hover,
.stat strong a:focus-visible,
.pdf-stat strong a:hover,
.pdf-stat strong a:focus-visible {
  opacity: 0.62;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.stats-as-of {
  grid-column: 1 / -1;
  justify-self: end;
  margin: -10px 0 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.route-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.route-card {
  min-height: 300px;
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-card h3 {
  margin: 0 0 18px;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.route-card p,
.route-card a {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.section-head {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0 42px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: end;
}

.section-head h2 {
  margin: 0;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
}

.section-head p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.feature-grid,
.news-grid,
.leader-grid,
.timeline-grid,
.investor-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card,
.news-card,
.leader-card,
.timeline-card,
.investor-card,
.doc-card,
.faq-card {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.feature-card img,
.news-card img,
.leader-card img,
.timeline-card img,
.investor-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.feature-card-body,
.news-card-body,
.leader-card-body,
.timeline-card-body,
.investor-card-body,
.doc-card,
.faq-card {
  padding: 28px;
}

.feature-card h3,
.news-card h3,
.leader-card h3,
.timeline-card h3,
.investor-card h3,
.doc-card h3 {
  margin: 0 0 12px;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.feature-card p,
.news-card p,
.leader-card p,
.timeline-card p,
.investor-card p,
.doc-card p,
.faq-card p,
.leader-card span {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.dark-band .feature-card,
.dark-band .news-card,
.dark-band .leader-card,
.dark-band .timeline-card,
.dark-band .investor-card,
.dark-band .doc-card,
.dark-band .faq-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--black);
  color: var(--white);
}

.dark-band .feature-grid,
.dark-band .news-grid,
.dark-band .leader-grid,
.dark-band .timeline-grid,
.dark-band .investor-grid,
.dark-band .section-head {
  padding-bottom: 0;
}

.experience-gallery {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.gallery-feature,
.gallery-grid {
  min-height: 620px;
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--black);
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
}

.gallery-feature-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  color: var(--white);
}

.gallery-feature-content h3 {
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: var(--black);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  z-index: 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.04));
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.tabs-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 50px;
}

.tab-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.tab-button {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 100px;
  background: transparent;
  padding: 13px 20px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tab-button.active,
.tab-button:hover {
  background: var(--black);
  color: var(--white);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.tab-panel.active {
  display: grid;
}

.tab-panel img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.tab-copy {
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 34px;
}

.tab-copy h3 {
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}

.tab-copy p,
.tab-copy li {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.tab-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.location-block {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.location-list {
  display: grid;
  gap: 14px;
}

.location-item {
  border-top: 1px solid var(--black);
  padding: 18px 0;
}

.location-item strong {
  display: block;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.location-item span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.project-anchor-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.project-anchor-inner {
  width: var(--container);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.project-anchor-inner::-webkit-scrollbar {
  display: none;
}

.project-anchor-inner a {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  text-transform: capitalize;
  color: var(--ink);
}

.project-anchor-inner a:hover,
.project-anchor-inner a.active {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.story-video {
  width: var(--container);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.story-video-media {
  position: relative;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
}

.story-video-media video,
.story-video-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.story-video-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.story-copy h2,
.architect-copy h2,
.residence-copy h2 {
  margin: 0 0 22px;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
}

.story-copy p,
.architect-copy p,
.residence-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.story-copy p + p,
.architect-copy p + p,
.residence-copy p + p {
  margin-top: 16px;
}

.architect-block {
  width: var(--container);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: stretch;
}

.architect-media {
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft);
}

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

.architect-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 56px 0;
}

.quote-line {
  margin: 30px 0 0;
  padding-left: 28px;
  border-left: 1px solid var(--black);
  font-size: 22px;
  font-weight: 300;
  line-height: 34px;
}

.portrait-message {
  width: var(--container);
  margin: 100px auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 56px;
  align-items: stretch;
}

.portrait-message-media {
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft);
}

.portrait-message-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.portrait-message-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 56px 0;
}

.portrait-message-copy h2 {
  margin: 0 0 24px;
  font-size: 65px;
  font-weight: 300;
  line-height: 82px;
}

.portrait-message-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.portrait-message-copy p + p {
  margin-top: 16px;
}

.portrait-signature {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 4px;
}

.portrait-signature strong {
  font-size: 20px;
  font-weight: 400;
}

.portrait-signature span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.portrait-message-dark {
  width: 100%;
  margin: 100px 0;
  padding: 100px calc((100% - var(--container)) / 2);
  background: var(--black);
  color: var(--white);
}

.portrait-message-dark .portrait-message-copy {
  border-color: rgba(255, 255, 255, 0.34);
}

.portrait-message-dark .portrait-message-copy h2,
.portrait-message-dark .portrait-message-copy p,
.portrait-message-dark .small-kicker,
.portrait-message-dark .portrait-signature span {
  color: var(--white);
}

.portrait-message-dark .portrait-signature {
  border-color: rgba(255, 255, 255, 0.24);
}

.market-grid {
  width: var(--container);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.market-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.numbered-slider {
  width: var(--container);
  margin: 0 auto 100px;
}

.numbered-slider-frame {
  position: relative;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
}

.numbered-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.numbered-slide.active {
  opacity: 1;
}

.numbered-slide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.numbered-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  color: var(--white);
}

.numbered-caption h3 {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}

.numbered-caption p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.numbered-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.numbered-dots button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.numbered-dots button.active,
.numbered-dots button:hover {
  background: var(--black);
  color: var(--white);
}

.stacking-plan {
  margin: 100px 0;
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.stacking-inner {
  width: var(--container);
  margin: 0 auto;
}

.stacking-head {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

.stacking-head h2 {
  margin: 0;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
}

.stacking-head p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.stacking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stack-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-card strong {
  display: block;
  font-size: 26px;
  font-weight: 300;
  line-height: 36px;
}

.stack-card span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.residence-panel {
  width: var(--container);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 44px;
}

.residence-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.residence-card {
  display: none;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.residence-card.active {
  display: grid;
}

.residence-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

.residence-copy {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 44px 0;
}

.residence-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.residence-specs span {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.lead-form-section {
  width: var(--container);
  margin: 0 auto 100px;
  padding: 80px;
  border: 1px solid var(--black);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.lead-form-section h2 {
  margin: 0;
  font-size: 65px;
  font-weight: 300;
  line-height: 90px;
}

.radio-row {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.radio-row label,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 18px;
}

.otp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.legal-content {
  width: min(980px, var(--container));
  margin: 0 auto;
  padding: 160px 0 100px;
}

.legal-content h1 {
  margin: 0 0 34px;
  font-size: 65px;
  font-weight: 300;
  line-height: 82px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.legal-content ul {
  padding-left: 20px;
}

.journal-feed {
  width: var(--container);
  margin: 0 auto 100px;
  display: grid;
  gap: 24px;
}

.journal-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 24px;
}

.journal-row img {
  width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.journal-row time {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
}

.journal-row h3 {
  margin: 0 0 10px;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.journal-row p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.pagination a,
.pagination span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 300;
}

.pagination .active,
.pagination a:hover {
  background: var(--black);
  color: var(--white);
}

.pagination a[aria-label] {
  width: auto;
  padding: 0 16px;
  border-radius: 100px;
}

.map-frame {
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft);
}

.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  object-fit: cover;
}

.yield-table {
  width: var(--container);
  margin: 0 auto 100px;
  border-top: 1px solid var(--black);
}

.yield-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 20px 0;
}

.yield-row strong,
.yield-row span,
.yield-row b {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.yield-row b {
  justify-self: end;
}

.yield-bar {
  position: relative;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.12);
}

.yield-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--black);
}

.bar-82 { width: 82%; }
.bar-70 { width: 70%; }
.bar-44 { width: 44%; }
.bar-40 { width: 40%; }
.bar-38 { width: 38%; }

.faq-list {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-top: 1px solid var(--black);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.go-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  z-index: 950;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.go-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 940;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-contact.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-contact__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.floating-contact__link:hover,
.floating-contact__link:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.floating-contact__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.floating-contact__icon svg {
  width: 18px;
  height: 18px;
}

.floating-contact__icon path {
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.menu-open .floating-contact,
body.modal-open .floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.floor-modal,
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 30px;
}

.floor-modal.open,
.lightbox-modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.floor-card {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 40px));
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
}

.floor-card h2 {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}

.lightbox-card {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 40px));
}

.lightbox-card img {
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}

.modal-close.light {
  background: var(--white);
  border-radius: 50%;
}

.contact-form {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--black);
  padding: 14px 0;
  font: 300 16px/26px var(--font-main);
  color: var(--ink);
  background: transparent;
}

select.field {
  border-radius: 0;
}

.field:focus {
  outline: 0;
  border-bottom-color: var(--green);
}

.form-note {
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  color: var(--muted);
}

textarea.field {
  min-height: 130px;
  resize: vertical;
}

.booking-modal {
  position: fixed;
  inset: 30px;
  z-index: 1400;
  display: none;
  place-items: center;
}

.booking-modal.open {
  display: grid;
}

.booking-backdrop {
  position: absolute;
  inset: -30px;
  background: rgba(0, 0, 0, 0.6);
}

.booking-card {
  position: relative;
  width: min(860px, calc(100vw - 40px));
  padding: 48px;
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
}

.booking-card h2 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}

.booking-card p {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.booking-scheduler {
  margin: 28px 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  overflow: hidden;
}

.booking-scheduler-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: var(--black);
  color: var(--white);
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.booking-slot {
  border: 1px solid var(--black);
  border-radius: 100px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 30px;
  background: var(--black);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-actions .btn-pill {
    margin-right: 20px;
  }

  .meeting-mobile {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
  }

  .meeting-mobile .meeting-icon {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .header-wrap {
    width: 100%;
    padding: 0 14px 0 13px;
  }

  .brand-logo {
    width: 200px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
  }

  .menu-panel {
    width: 100%;
    min-width: 0;
    max-height: none;
    height: auto;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.92);
    overflow: auto;
  }

  .menu-close {
    top: 22px;
    left: 20px;
    right: auto;
  }

  .menu-inner {
    padding: 100px 45px 30px;
    align-items: flex-end;
  }

  .menu-list {
    padding: 0 0 40px;
  }

  .menu-list a {
    min-width: 300px;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 23px;
    font-weight: 400;
    line-height: 40px;
  }

  .hero {
    height: 398px;
    min-height: 398px;
    padding-top: var(--header-h);
  }

  .hero-media,
  .hero-content {
    inset: var(--header-h) 0 0;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 20px;
  }

  .hero .btn-pill-arrow {
    margin-top: 20px;
    height: 29px;
    padding: 4px 40px 4px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .btn-pill-arrow .arrow-circle {
    width: 26px;
    height: 26px;
  }

  .editorial-band {
    padding: 50px 0;
  }

  .editorial-wrap {
    width: 100%;
    padding: 0 21px;
    display: block;
  }

  .editorial-left,
  .editorial-right {
    width: 100%;
    margin: 0;
  }

  .editorial-title {
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 400;
    line-height: 45px;
  }

  .editorial-right p,
  .body-copy {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }

  .editorial-left .btn-pill {
    height: 26px;
    margin-bottom: 15px;
    padding: 3px 37px 3px 15px;
    font-size: 14px;
    line-height: 20px;
  }

  .slider-section {
    width: calc(100% - 26px);
  }

  .slider-frame {
    height: 173px;
    min-height: 173px;
    border-radius: 10px;
  }

  .slider-content h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
  }

  .slider-content .btn-pill {
    height: 29px;
    margin-top: 30px;
    padding: 4px 47px 4px 20px;
    font-size: 14px;
  }

  .image-band {
    width: 100%;
    margin: 0;
    padding: 0 21px;
  }

  .image-band img {
    border-radius: 10px;
  }

  .image-pair {
    width: 100%;
    margin: 20px 0 0;
    padding: 0 21px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-pair img {
    height: 320px;
    border-radius: 10px;
  }

  .video-band {
    width: calc(100% - 42px);
    margin-bottom: 50px;
    min-height: 360px;
    border-radius: 10px;
  }

  .video-band-content {
    min-height: 360px;
    padding: 24px;
  }

  .video-band-content h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .dark-band {
    margin-top: 50px;
    padding: 50px 0;
  }

  .cards-band {
    width: 100%;
    padding: 50px 21px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card,
  .journal-card {
    min-height: 420px;
    border-radius: 10px;
  }

  .project-card h3,
  .journal-card h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .footer {
    padding: 26px 0 50px;
  }

  .footer-container {
    width: 100%;
    padding: 0 33px;
  }

  .footer-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 22px;
  }

  .footer-logo {
    grid-column: 1 / -1;
    width: 180px;
  }

  .footer p,
  .footer a {
    font-size: 10px;
    line-height: 16px;
  }

  .footer .social-list {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .page-hero {
    height: 430px;
  }

  .page-hero h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .page-hero-content {
    width: 100%;
    padding: 0 21px;
  }

  .split-list,
  .contact-form {
    width: 100%;
    padding: 50px 21px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-list h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .stats-row {
    width: 100%;
    padding: 0 21px 50px;
    grid-template-columns: 1fr 1fr;
  }

  .stats-row-spaced {
    padding-top: 50px;
  }

  .section-head {
    width: 100%;
    padding: 50px 21px 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .feature-grid,
  .news-grid,
  .leader-grid,
  .timeline-grid,
  .investor-grid {
    width: 100%;
    padding: 0 21px 50px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .news-card,
  .leader-card,
  .timeline-card,
  .investor-card,
  .doc-card,
  .faq-card {
    border-radius: 10px;
  }

  .feature-card img,
  .news-card img,
  .leader-card img,
  .timeline-card img,
  .investor-card img {
    height: 280px;
  }

  .feature-card h3,
  .news-card h3,
  .leader-card h3,
  .timeline-card h3,
  .investor-card h3,
  .doc-card h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .experience-gallery,
  .tabs-shell,
  .location-block {
    width: 100%;
    padding: 0 21px 50px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-anchor-nav {
    top: var(--header-h);
  }

  .project-anchor-inner {
    width: 100%;
    min-height: 54px;
    justify-content: flex-start;
    gap: 22px;
    padding: 0 21px;
  }

  .story-video,
  .architect-block,
  .residence-panel,
  .lead-form-section {
    width: 100%;
    padding: 0 21px 50px;
    margin-bottom: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-form-section {
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .story-video-media,
  .story-video-media video,
  .story-video-media img,
  .architect-media,
  .architect-media img,
  .numbered-slider-frame,
  .numbered-slide img,
  .residence-card img {
    min-height: 360px;
    height: 360px;
    border-radius: 10px;
  }

  .story-copy h2,
  .architect-copy h2,
  .residence-copy h2,
  .lead-form-section h2,
  .legal-content h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .architect-copy,
  .residence-copy {
    padding: 28px 0;
  }

  .quote-line {
    font-size: 18px;
    line-height: 30px;
  }

  .numbered-slider {
    width: 100%;
    padding: 0 21px 50px;
    margin-bottom: 0;
  }

  .numbered-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .numbered-caption h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .stacking-plan {
    margin: 50px 0;
    padding: 50px 0;
  }

  .stacking-inner {
    width: 100%;
    padding: 0 21px;
  }

  .stacking-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stacking-head h2 {
    font-size: 35px;
    line-height: 45px;
  }

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

  .stack-card {
    min-height: 190px;
    border-radius: 10px;
  }

  .residence-card,
  .form-row,
  .otp-row,
  .journal-row {
    grid-template-columns: 1fr;
  }

  .residence-specs {
    grid-template-columns: 1fr;
  }

  .radio-row {
    flex-wrap: wrap;
  }

  .legal-content {
    width: 100%;
    padding: 140px 21px 50px;
  }

  .legal-content h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .journal-feed {
    width: 100%;
    padding: 0 21px 50px;
    margin-bottom: 0;
  }

  .journal-row img {
    width: 100%;
    height: 220px;
  }

  .journal-row h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .booking-slot-grid {
    grid-template-columns: 1fr;
  }

  .booking-scheduler-head {
    display: grid;
  }

  .gallery-feature,
  .gallery-grid {
    min-height: 0;
  }

  .gallery-feature img {
    min-height: 380px;
  }

  .gallery-feature-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .gallery-feature-content h3,
  .tab-copy h3,
  .floor-card h2 {
    font-size: 35px;
    line-height: 45px;
  }

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

  .gallery-card {
    min-height: 260px;
    border-radius: 10px;
  }

  .tab-panel,
  .yield-row {
    grid-template-columns: 1fr;
  }

  .tab-panel img,
  .map-frame,
  .map-frame iframe,
  .map-frame img {
    height: 320px;
    min-height: 320px;
    border-radius: 10px;
  }

  .tab-copy {
    border-radius: 10px;
    padding: 24px;
  }

  .yield-table,
  .faq-list {
    width: calc(100% - 42px);
    margin-bottom: 50px;
  }

  .yield-row b {
    justify-self: start;
  }

  .faq-list summary {
    font-size: 22px;
    line-height: 32px;
  }

  .floor-card {
    padding: 38px 26px 28px;
  }

  .go-top {
    right: 16px;
    bottom: 78px;
    width: 42px;
    height: 42px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    gap: 7px;
    transform: translateY(12px);
  }

  .floating-contact.visible {
    transform: translateY(0);
  }

  .floating-contact__link {
    min-height: 48px;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    font-size: 10px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  }

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

  .floating-contact__icon {
    width: 24px;
    height: 24px;
  }

  .floating-contact__icon svg {
    width: 16px;
    height: 16px;
  }

  .route-grid {
    width: 100%;
    padding: 0 21px 50px;
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 240px;
    border-radius: 10px;
  }

  .route-card h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .booking-card {
    padding: 38px 26px 28px;
  }

  .booking-card h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 1024px) {
  .partner-head,
  .portrait-message,
  .portrait-message-dark {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .partner-head h2,
  .portrait-message-copy h2 {
    font-size: 48px;
    line-height: 60px;
  }

  .partner-grid,
  .market-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .partner-band {
    padding-top: 50px;
  }

  .partner-inner {
    width: 100%;
    padding: 0 21px;
  }

  .partner-head {
    gap: 18px;
    margin-bottom: 34px;
  }

  .partner-head h2,
  .portrait-message-copy h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .partner-marquee {
    width: calc(100% + 42px);
    margin-left: -21px;
  }

  .partner-mark {
    min-width: 220px;
    min-height: 88px;
    padding: 20px 26px;
    font-size: 20px;
    line-height: 28px;
  }

  .partner-mark img {
    width: 32px;
    height: 32px;
  }

  .partner-grid,
  .market-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-grid {
    padding: 34px 0 50px;
  }

  .partner-grid article,
  .market-card {
    min-height: 210px;
    padding: 24px;
    border-radius: 10px;
  }

  .partner-grid h3,
  .market-card h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .market-grid {
    width: 100%;
    padding: 0 21px;
    margin-bottom: 50px;
  }

  .portrait-message,
  .portrait-message-dark {
    width: 100%;
    margin: 50px 0;
    padding: 50px 21px;
    display: grid;
  }

  .portrait-message:not(.portrait-message-dark) {
    padding-top: 0;
    padding-bottom: 0;
  }

  .portrait-message-media,
  .portrait-message-media img {
    min-height: 420px;
    border-radius: 10px;
  }

  .portrait-message-copy {
    padding: 28px 0;
  }
}

.home-development-page {
  background: var(--white);
}

.home-development-page .development-site-header {
  position: absolute;
  background: transparent;
  color: var(--white);
}

.home-development-page .development-site-header.hide {
  transform: none;
  opacity: 1;
}

.home-development-page .brand-link {
  position: relative;
}

.home-development-page .brand-logo-dark {
  display: none;
}

.home-development-page .brand-logo-light {
  display: block;
}

.development-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 84px;
  align-items: center;
  text-transform: uppercase;
}

.development-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.home-development-page .header-actions .btn-pill {
  display: none;
}

.home-development-page .menu-toggle {
  display: none;
}

.development-pdf-home > section:not(.pdf-section) {
  display: none;
}

.pdf-section {
  width: min(86%, 1680px);
  margin-left: auto;
  margin-right: auto;
}

.pdf-hero {
  width: 100%;
  height: 720px;
  min-height: 720px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #063d4e;
}

.pdf-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) hue-rotate(145deg) brightness(0.72);
}

.pdf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 104, 138, 0.38);
}

.pdf-intro {
  padding: 110px 0 78px;
}

.pdf-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 86px;
  align-items: start;
}

.pdf-intro h1 {
  margin: 0;
  color: var(--black);
  font-size: 92px;
  font-weight: 300;
  line-height: 118px;
}

.pdf-intro-copy {
  padding-top: 12px;
}

.pdf-intro-copy p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.pdf-intro-copy p + p {
  margin-top: 26px;
}

.pdf-stat-grid {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pdf-stat {
  border-top: 1px solid var(--black);
  padding-top: 18px;
}

.pdf-stat strong {
  display: block;
  color: var(--black);
  font-size: 64px;
  font-weight: 300;
  line-height: 74px;
}

.pdf-stat span {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.pdf-development-banner {
  height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.pdf-development-slides,
.pdf-development-slide {
  position: absolute;
  inset: 0;
}

.pdf-development-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.pdf-development-slide.active {
  opacity: 1;
}

.pdf-development-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-development-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  pointer-events: none;
}

.pdf-development-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdf-development-content h2 {
  margin: 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 300;
  line-height: 88px;
}

.pdf-development-button {
  width: min(326px, 72vw);
  height: 42px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.pdf-development-button:hover,
.pdf-development-button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.pdf-development-dots {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pdf-development-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.pdf-development-dots button.active,
.pdf-development-dots button:hover,
.pdf-development-dots button:focus-visible {
  background: var(--white);
  transform: scale(1.08);
}

.pdf-development-cards {
  padding: 86px 0 98px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pdf-dev-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.pdf-dev-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pdf-dev-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08));
}

.pdf-dev-card:hover img {
  transform: scale(1.04);
}

.pdf-dev-card-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
}

.pdf-dev-card h3 {
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
}

.pdf-dev-card p {
  margin: 0 0 18px;
  max-width: 92%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.pdf-dev-card span,
.pdf-contact-copy a,
.pdf-events-head a,
.pdf-event-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: inherit;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.pdf-dev-card span {
  width: 100%;
}

.pdf-contact-block,
.pdf-events-head {
  padding: 18px 0 70px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 96px;
  align-items: center;
}

.pdf-contact-block h2,
.pdf-events-head h2 {
  margin: 0;
  color: var(--black);
  font-size: 80px;
  font-weight: 300;
  line-height: 104px;
}

.pdf-contact-copy p,
.pdf-events-head p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.pdf-contact-copy a,
.pdf-events-head a {
  width: 100%;
  margin-top: 70px;
  color: var(--black);
}

.pdf-experience-map {
  padding-bottom: 96px;
}

.pdf-map-frame {
  position: relative;
  width: 100%;
  overflow: visible;
  background: var(--white);
}

.pdf-map-image {
  width: 100%;
  display: block;
}

.pdf-map-pin {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 14px rgba(255, 203, 114, 0.7));
}

.pdf-map-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 16%, rgba(255, 204, 122, 0.62) 17% 38%, rgba(255, 204, 122, 0) 70%);
  transform: translate(-50%, -50%) scale(0.72);
  animation: pdfMapPing 1.8s infinite;
  z-index: -1;
}

.pdf-map-pin::after {
  content: "";
  position: absolute;
  inset: 11px;
  background: radial-gradient(circle, #fff 0 28%, #ffe0a6 48%, #e0a24a 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.48),
    0 0 20px rgba(255, 198, 92, 0.95),
    0 0 46px rgba(255, 198, 92, 0.56);
}

.pdf-map-pin:hover,
.pdf-map-pin:focus-visible {
  z-index: 10;
  transform: translate(-50%, -50%) scale(1.24);
  filter: drop-shadow(0 0 22px rgba(255, 202, 105, 0.96));
}

.pdf-map-pin:hover::before,
.pdf-map-pin:focus-visible::before {
  animation-duration: 0.9s;
  opacity: 1;
}

.pdf-map-pin:focus-visible {
  outline: 1px solid var(--black);
  outline-offset: 8px;
}

.pdf-map-label {
  position: absolute;
  top: -8px;
  left: calc(100% + 14px);
  width: max-content;
  max-width: 150px;
  color: var(--black);
  text-align: left;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  pointer-events: none;
}

.pdf-map-preview {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 230px;
  overflow: hidden;
  border-radius: 20px;
  padding: 8px;
  display: block;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  pointer-events: none;
}

.pdf-map-preview img {
  width: 100%;
  height: 138px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.pdf-map-preview strong {
  display: block;
  padding: 10px 4px 2px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.pdf-map-pin:hover .pdf-map-preview,
.pdf-map-pin:focus-visible .pdf-map-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pdf-map-pin-left .pdf-map-label {
  left: auto;
  right: calc(100% + 14px);
  text-align: right;
}

.pdf-map-pin-left .pdf-map-preview {
  left: auto;
  right: 24px;
}

.pdf-map-pin-up .pdf-map-preview {
  top: auto;
  bottom: 24px;
}

.pdf-map-pin-cafe {
  top: 22%;
  left: 17%;
}

.pdf-map-pin-sales {
  top: 56%;
  left: 13%;
}

.pdf-map-pin-model {
  top: 55%;
  left: 28%;
}

.pdf-map-pin-reception {
  top: 49%;
  left: 51%;
}

.pdf-map-pin-advisory {
  top: 50%;
  left: 86%;
}

.pdf-map-pin-meeting {
  top: 86%;
  left: 89%;
}

@keyframes pdfMapPing {
  0% {
    transform: translate(-50%, -50%) scale(0.62);
    opacity: 0.9;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.75);
    opacity: 0.18;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}

.pdf-vertical-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-bottom: 112px;
}

.pdf-vertical-gallery button {
  height: 620px;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.pdf-vertical-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.pdf-vertical-gallery button:hover img {
  transform: scale(1.04);
}

.pdf-vertical-gallery.pdf-gallery-flex {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow: visible;
}

.pdf-gallery-flex .pdf-gallery-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 680px;
  border-radius: 20px;
  background: var(--black);
  transition: flex 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s ease;
  will-change: flex;
}

.pdf-gallery-flex.has-active .pdf-gallery-panel {
  flex: 0.5 1 0;
}

.pdf-gallery-flex .pdf-gallery-panel.is-active,
.pdf-gallery-flex .pdf-gallery-panel:hover,
.pdf-gallery-flex .pdf-gallery-panel:focus-visible {
  flex: 7.8 1 0;
}

.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel,
.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel {
  flex: 0.5 1 0;
}

.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel:hover,
.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel:focus-visible {
  flex: 7.8 1 0;
}

.pdf-gallery-flex .pdf-gallery-panel:focus-visible {
  outline: 1px solid var(--black);
  outline-offset: 6px;
}

.pdf-gallery-flex .pdf-gallery-panel.is-active img,
.pdf-gallery-flex .pdf-gallery-panel:hover img,
.pdf-gallery-flex .pdf-gallery-panel:focus-visible img {
  transform: scale(1.045);
}

.pdf-gallery-flex .pdf-gallery-panel::after {
  content: attr(data-lightbox-caption);
  position: absolute;
  inset: auto 0 0;
  padding: 92px 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.pdf-gallery-flex .pdf-gallery-panel.is-active::after,
.pdf-gallery-flex .pdf-gallery-panel:hover::after,
.pdf-gallery-flex .pdf-gallery-panel:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel.is-active:not(:hover) img,
.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel.is-active:not(:focus-visible) img {
  transform: none;
}

.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel.is-active:not(:hover)::after,
.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel.is-active:not(:focus-visible)::after {
  opacity: 0;
  transform: translateY(10px);
}

@media (max-width: 767px) {
  .pdf-vertical-gallery.pdf-gallery-flex {
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 21px 56px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pdf-vertical-gallery.pdf-gallery-flex::-webkit-scrollbar {
    display: none;
  }

  .pdf-gallery-flex .pdf-gallery-panel,
  .pdf-gallery-flex.has-active .pdf-gallery-panel,
  .pdf-gallery-flex .pdf-gallery-panel.is-active,
  .pdf-gallery-flex .pdf-gallery-panel:hover,
  .pdf-gallery-flex .pdf-gallery-panel:focus-visible,
  .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel,
  .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel,
  .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel:hover,
  .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel:focus-visible {
    flex: 0 0 74vw;
    height: 460px;
    border-radius: 18px;
    scroll-snap-align: center;
  }
}

.pdf-events-grid {
  padding-bottom: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pdf-event-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--black);
}

.pdf-event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pdf-event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08));
}

.pdf-event-card:hover img {
  transform: scale(1.04);
}

.pdf-event-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: currentColor;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
}

.pdf-event-card p {
  position: relative;
  z-index: 2;
  min-height: 72px;
  margin: 0 0 18px;
  max-width: 92%;
  color: currentColor;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.pdf-event-card a {
  position: relative;
  z-index: 2;
  width: 100%;
  color: currentColor;
}

.pdf-sunset-band {
  width: 100%;
  height: 520px;
  margin: 0;
  overflow: hidden;
}

.pdf-sunset-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-development-page .footer {
  padding: 64px 0 84px;
}

.home-development-page .footer-cta {
  display: none;
}

.home-development-page .footer-grid {
  align-items: center;
}

.home-development-page .pdf-sunset-band {
  display: none;
}

@media (max-width: 1024px) {
  .development-nav {
    gap: 42px;
  }

  .pdf-intro h1 {
    font-size: 68px;
    line-height: 86px;
  }

  .pdf-stat strong {
    font-size: 48px;
    line-height: 58px;
  }

  .pdf-contact-block h2,
  .pdf-events-head h2 {
    font-size: 60px;
    line-height: 76px;
  }

  .pdf-development-cards,
  .pdf-events-grid {
    grid-template-columns: 1fr;
  }

  .pdf-dev-card {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .home-development-page .development-site-header {
    height: 84px;
  }

  .home-development-page .header-wrap {
    height: 84px;
  }

  .home-development-page .brand-logo {
    width: 190px;
    height: 38px;
  }

  .development-nav {
    display: none;
  }

  .home-development-page .menu-toggle {
    display: inline-flex;
  }

  .home-development-page .menu-toggle span {
    background: var(--white);
  }

  .pdf-section {
    width: calc(100% - 42px);
  }

  .pdf-hero {
    width: 100%;
    height: 520px;
    min-height: 520px;
  }

  .pdf-intro {
    padding: 54px 0 48px;
  }

  .pdf-intro-grid,
  .pdf-contact-block,
  .pdf-events-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pdf-intro h1 {
    font-size: 46px;
    line-height: 58px;
  }

  .pdf-intro-copy {
    padding-top: 0;
  }

  .pdf-intro-copy p,
  .pdf-contact-copy p,
  .pdf-events-head p,
  .pdf-event-card p,
  .pdf-dev-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .pdf-stat-grid {
    margin-top: 44px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .pdf-stat strong {
    font-size: 38px;
    line-height: 46px;
  }

  .pdf-stat span {
    font-size: 12px;
    line-height: 18px;
  }

  .pdf-development-banner {
    height: 280px;
  }

  .pdf-development-content h2 {
    font-size: 42px;
    line-height: 52px;
  }

  .pdf-development-cards {
    padding: 42px 0 58px;
    gap: 20px;
  }

  .pdf-dev-card,
  .pdf-event-card {
    min-height: 420px;
  }

  .pdf-dev-card h3,
  .pdf-event-card h3 {
    font-size: 32px;
    line-height: 38px;
  }

  .pdf-contact-block,
  .pdf-events-head {
    padding: 0 0 44px;
  }

  .pdf-contact-block h2,
  .pdf-events-head h2 {
    font-size: 46px;
    line-height: 58px;
  }

  .pdf-contact-copy a,
  .pdf-events-head a {
    margin-top: 28px;
  }

  .pdf-vertical-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 56px;
  }

  .pdf-vertical-gallery button {
    height: 360px;
  }

  .pdf-events-grid {
    gap: 18px;
    padding-bottom: 60px;
  }

  .pdf-event-card img {
    height: 100%;
  }

  .pdf-event-card p {
    min-height: 0;
  }

  .pdf-sunset-band {
    height: 360px;
  }

}

.home-development-page .development-site-header {
  position: fixed;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.home-development-page .development-site-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.home-development-page .brand-logo-dark {
  display: block;
}

.home-development-page .brand-logo-light {
  display: none;
}

.home-development-page .header-actions .btn-pill.desktop-only {
  display: inline-flex;
}

.home-development-page .header-actions .meeting-mobile {
  display: none;
}

.home-development-page .menu-toggle {
  display: block;
}

.home-development-page .menu-toggle span {
  background: var(--black);
}

.development-nav a {
  color: var(--black);
  transition: opacity 0.25s ease;
}

.development-nav a:hover {
  opacity: 0.55;
}

.pdf-section {
  width: var(--container);
}

.pdf-hero {
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 640px;
  margin-top: var(--header-h);
  border-radius: 0;
  background: var(--black);
}

.pdf-hero img {
  filter: brightness(0.86) contrast(1.03);
}

.pdf-hero::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
}

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

.pdf-intro h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 110px;
}

.pdf-intro-copy p,
.pdf-contact-copy p,
.pdf-events-head p,
.pdf-dev-card p,
.pdf-event-card p {
  font-weight: 300;
  line-height: 26px;
}

.pdf-stat-grid {
  margin-top: 74px;
}

.pdf-stat strong {
  font-size: 56px;
  line-height: 66px;
}

.pdf-development-banner {
  height: min(704px, 46vw);
  min-height: 520px;
  border-radius: 20px;
}

.pdf-development-banner::after {
  background: rgba(0, 0, 0, 0.34);
}

.pdf-development-content h2 {
  font-size: 100px;
  line-height: 110px;
}

.pdf-development-cards {
  padding: 100px 0;
  gap: 28px;
}

.pdf-dev-card,
.pdf-event-card,
.pdf-vertical-gallery button {
  border-radius: 20px;
}

.pdf-dev-card {
  min-height: 520px;
}

.pdf-dev-card span,
.pdf-contact-copy a,
.pdf-events-head a,
.pdf-event-card a {
  min-height: 38px;
  border-radius: 100px;
  padding: 10px 20px;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.pdf-dev-card span {
  width: 100%;
  min-width: 0;
}

.pdf-contact-copy a:hover,
.pdf-events-head a:hover,
.pdf-event-card a:hover {
  background: var(--black);
  color: var(--white);
}

.pdf-dev-card:hover span {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.pdf-contact-block,
.pdf-events-head {
  padding: 0 0 100px;
}

.pdf-contact-block h2,
.pdf-events-head h2 {
  font-size: 65px;
  line-height: 90px;
}

.pdf-contact-copy a,
.pdf-events-head a {
  width: auto;
  min-width: 220px;
  margin-top: 34px;
}

.pdf-vertical-gallery {
  gap: 24px;
  padding-bottom: 100px;
}

.pdf-vertical-gallery button {
  height: 620px;
}

.pdf-partner-benchmark {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.pdf-partner-benchmark .partner-inner {
  width: var(--container);
}

.pdf-partner-benchmark .partner-head {
  margin-bottom: 56px;
}

.pdf-partner-benchmark .partner-marquee {
  width: 100vw;
}

.pdf-events-grid {
  gap: 28px;
  padding-bottom: 100px;
}

.pdf-event-card {
  min-height: 520px;
  border: 0;
  padding: 0 28px 24px;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.pdf-event-card:hover {
  transform: translateY(-6px);
}

.pdf-event-card img {
  height: 100%;
}

.pdf-event-card h3,
.pdf-event-card p,
.pdf-event-card a {
  margin-left: 0;
  margin-right: 0;
  color: currentColor;
}

.pdf-event-card h3 {
  font-size: 35px;
  line-height: 42px;
}

.pdf-event-card a {
  width: 100%;
  min-width: 0;
  align-self: stretch;
  margin-bottom: 0;
}

.home-development-page .footer {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .home-development-page .header-actions .btn-pill.desktop-only {
    display: none;
  }

  .home-development-page .header-actions .meeting-mobile {
    display: inline-flex;
  }

  .development-nav {
    display: none;
  }

  .pdf-intro h1 {
    font-size: 58px;
    line-height: 72px;
  }

  .pdf-development-content h2 {
    font-size: 62px;
    line-height: 78px;
  }
}

@media (max-width: 767px) {
  .home-development-page .development-site-header,
  .home-development-page .header-wrap {
    height: var(--header-h);
  }

  .home-development-page .brand-logo {
    width: 200px;
    height: 40px;
  }

  .home-development-page .menu-toggle span {
    background: var(--black);
  }

  .pdf-section {
    width: 100%;
    padding-left: 21px;
    padding-right: 21px;
  }

  .pdf-hero {
    width: 100%;
    height: 398px;
    min-height: 398px;
    padding: 0;
  }

  .pdf-intro {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pdf-intro h1,
  .pdf-contact-block h2,
  .pdf-events-head h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 45px;
  }

  .pdf-stat-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .pdf-stat strong {
    font-size: 35px;
    line-height: 45px;
  }

  .pdf-development-banner {
    width: calc(100% - 42px);
    height: 260px;
    min-height: 260px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border-radius: 10px;
  }

  .pdf-development-content h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .pdf-development-button {
    width: min(230px, 74vw);
    height: 34px;
    margin-top: 8px;
    font-size: 11px;
  }

  .pdf-development-dots {
    margin-top: 10px;
  }

  .pdf-development-cards,
  .pdf-events-grid {
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 20px;
  }

  .pdf-dev-card,
  .pdf-event-card,
  .pdf-vertical-gallery button {
    border-radius: 10px;
  }

  .pdf-dev-card,
  .pdf-event-card {
    min-height: 420px;
  }

  .pdf-dev-card h3,
  .pdf-event-card h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .pdf-dev-card p,
  .pdf-event-card p {
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
  }

  .pdf-contact-block,
  .pdf-events-head {
    padding-bottom: 50px;
  }

  .pdf-vertical-gallery {
    padding-bottom: 50px;
  }

  .pdf-vertical-gallery button {
    height: 320px;
  }

  .pdf-partner-benchmark {
    padding-left: 0;
    padding-right: 0;
  }

  .pdf-partner-benchmark .partner-inner {
    width: 100%;
    padding: 0 21px;
  }

  .pdf-partner-benchmark .partner-marquee {
    width: calc(100% + 42px);
  }

  .pdf-event-card img {
    height: 100%;
  }
}

.home-development-page .development-site-header {
  position: absolute;
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.home-development-page .development-site-header.hide {
  transform: none;
  opacity: 1;
}

.home-development-page .brand-logo-dark {
  display: none;
}

.home-development-page .brand-logo-light {
  display: block;
}

.home-development-page .development-nav a {
  color: var(--white);
}

.home-development-page .development-nav a:hover {
  opacity: 0.7;
}

.home-development-page .header-actions .btn-pill {
  border-color: var(--white);
  color: var(--white);
}

.home-development-page .header-actions .btn-pill:hover {
  background: var(--white);
  color: var(--black);
}

.home-development-page .menu-toggle span {
  background: var(--white);
}

.home-development-page .meeting-mobile {
  border-color: var(--white);
  color: var(--white);
}

.home-development-page .pdf-hero {
  height: 100vh;
  min-height: 690px;
  margin-top: 0;
}

/* Original KPD navigation adaptation */
.brand-logo-dark {
  display: block;
}

.brand-logo-light {
  display: none;
}

.development-nav {
  gap: clamp(34px, 4.5vw, 84px);
}

.development-nav .nav-panel-trigger,
.development-nav button,
.development-nav > a {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.development-nav .nav-panel-trigger::after,
.development-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.development-nav .nav-panel-trigger:hover::after,
.development-nav .nav-panel-trigger.is-active::after,
.development-nav > a:hover::after {
  transform: scaleX(1);
}

.desktop-nav-shell {
  z-index: 3;
}

.desktop-nav-panel {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  width: min(1320px, calc(100vw - 60px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  z-index: 1300;
}

.desktop-nav-shell.is-panel-open .desktop-nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav-panel__inner {
  display: grid;
  grid-template-columns: minmax(230px, 286px) minmax(0, 1fr);
  min-height: clamp(360px, 52vh, 500px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.desktop-nav-panel__links {
  display: grid;
  align-content: start;
  background: var(--black);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.desktop-nav-panel-group {
  display: none;
}

.desktop-nav-panel-group.active {
  display: grid;
}

.desktop-nav-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.desktop-nav-link::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.desktop-nav-link:hover,
.desktop-nav-link:focus-visible,
.desktop-nav-link.is-active {
  color: var(--white);
  outline: 0;
}

.desktop-nav-panel-group.is-hovering .desktop-nav-link {
  color: rgba(255, 255, 255, 0.42);
  opacity: 0.6;
  filter: blur(1.1px);
}

.desktop-nav-panel-group.is-hovering .desktop-nav-link:hover,
.desktop-nav-panel-group.is-hovering .desktop-nav-link:focus-visible,
.desktop-nav-panel-group.is-hovering .desktop-nav-link.is-active {
  color: var(--white);
  opacity: 1;
  filter: none;
}

.desktop-nav-panel__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--black);
}

.desktop-nav-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.desktop-nav-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.desktop-nav-preview-image.active {
  opacity: 1;
  transform: scale(1);
}

.home-development-page .development-nav .nav-panel-trigger,
.home-development-page .development-nav button,
.home-development-page .development-nav > a {
  color: var(--white);
}

@media (max-width: 767px) {
  .home-development-page .menu-toggle span {
    background: var(--white);
  }

  .home-development-page .pdf-hero {
    height: 520px;
    min-height: 520px;
  }

  .pdf-experience-map {
    overflow-x: auto;
    padding-bottom: 60px;
  }

  .pdf-map-frame {
    width: 900px;
    max-width: none;
  }

  .pdf-map-preview {
    width: 190px;
  }

  .pdf-map-preview img {
    height: 112px;
  }

  .pdf-map-label {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Shared left-title / right-description editorial template */
:root {
  --split-template-height: 480px;
  --split-template-gap: clamp(64px, 7vw, 128px);
}

.split-list,
.section-head,
.stacking-head,
.editorial-wrap,
.pdf-intro-grid,
.pdf-contact-block,
.pdf-events-head {
  min-height: var(--split-template-height);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: var(--split-template-gap);
  align-items: center;
}

.split-list,
.section-head,
.pdf-contact-block,
.pdf-events-head {
  padding-top: 0;
  padding-bottom: 0;
}

.pdf-intro {
  padding-top: 0;
}

.section-head {
  align-items: center;
}

.editorial-band {
  padding: 0;
}

.editorial-left,
.editorial-right {
  width: auto;
  margin: 0;
}

.split-copy,
.section-head > p,
.stacking-head > p,
.editorial-right,
.pdf-intro-copy,
.pdf-contact-copy,
.pdf-events-head > div:last-child {
  max-width: 820px;
}

.pdf-contact-copy,
.pdf-events-head > div:last-child {
  justify-self: start;
}

.pdf-contact-copy a,
.pdf-events-head a {
  width: auto;
  min-width: 280px;
  min-height: 52px;
  margin-top: 44px;
  border-radius: 999px;
  padding: 0 42px;
}

@media (max-width: 1024px) {
  :root {
    --split-template-height: 420px;
    --split-template-gap: 56px;
  }
}

@media (max-width: 767px) {
  .section_footer {
    padding: 42px 0 34px;
  }

  .footer_container {
    width: 100%;
    padding: 0 21px;
  }

  .footer_header {
    padding-bottom: 54px;
  }

  .footer_logo {
    width: min(300px, 78vw);
  }

  .footer_links,
  .footer_legal_social.footer_links {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer_links_col_container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer_links_title {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 18px;
  }

  .footer_links_list {
    gap: 8px;
  }

  .footer_link,
  .footer_newsletter_terms,
  .footer_legal_text {
    font-size: 13px;
    line-height: 20px;
  }

  .footer_form {
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 0;
  }

  .input-text {
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  }

  .button_submit {
    justify-self: start;
    min-height: 34px;
  }

  .footer_legal_social {
    margin-top: 54px;
    padding-top: 22px;
  }

  .footer_links_row {
    gap: 10px 24px;
  }

  .footer_links_social {
    gap: 20px;
  }

  :root {
    --split-template-height: 0px;
    --split-template-gap: 28px;
  }

  .split-list,
  .section-head,
  .stacking-head,
  .editorial-wrap,
  .pdf-intro-grid,
  .pdf-contact-block,
  .pdf-events-head {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: var(--split-template-gap);
    align-items: start;
  }

  .split-list,
  .section-head,
  .pdf-contact-block,
  .pdf-events-head {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pdf-intro {
    padding-top: 50px;
  }

  .pdf-contact-copy a,
  .pdf-events-head a {
    min-width: min(280px, 100%);
    margin-top: 28px;
  }
}

/* Match the Experience Center floor plan to the development media band */
.pdf-experience-map {
  overflow: visible;
}

.pdf-map-frame {
  height: min(704px, 46vw);
  min-height: 520px;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-radius: 20px;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.pdf-map-frame.is-dragging {
  cursor: grabbing;
}

.pdf-map-pan {
  --map-pan-x: 0px;
  --map-pan-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138%;
  height: 138%;
  min-width: 138%;
  min-height: 138%;
  transform: translate(calc(-50% + var(--map-pan-x)), calc(-50% + var(--map-pan-y)));
  transition: transform 0.22s ease;
  will-change: transform;
}

.pdf-map-frame.is-dragging .pdf-map-pan {
  transition: none;
}

.pdf-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767px) {
  .pdf-map-frame {
    height: 260px;
    min-height: 260px;
    width: 100%;
    border-radius: 10px;
  }

  .pdf-map-pan {
    width: 170%;
    height: 170%;
    min-width: 170%;
    min-height: 170%;
  }
}

/* About page PDF adaptation */
.about-pdf-page {
  background: var(--white);
  color: var(--black);
}

.about-hero {
  height: 100vh;
  min-height: 690px;
  padding-top: 0;
}

.about-hero::after {
  background: rgba(0, 0, 0, 0.42);
}

.about-hero img {
  inset: 0;
  height: 100%;
  object-position: center;
}

.about-hero .page-hero-content {
  height: 100%;
  justify-content: flex-end;
  padding-top: var(--header-h);
  padding-bottom: 58px;
}

.about-hero h1 {
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 300;
  line-height: 1.02;
}

.about-origin h2 {
  max-width: 720px;
}

.about-dual-block {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 42px);
}

.about-dual-block article {
  min-height: 286px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  padding: 30px 32px;
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.about-dual-block article:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.about-dual-block h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.08;
}

.about-dual-block p,
.about-value-copy p,
.about-chairman-copy p,
.about-expertise-copy p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 27px;
}

.about-value-band {
  position: relative;
  width: var(--container);
  min-height: min(620px, 45vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.38)), url("../images/about/long-horizon.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.about-value-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.about-value-copy {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 42px));
  padding: 34px 38px 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(7px);
}

.about-value-copy h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.08;
}

.about-value-copy p {
  color: var(--white);
  font-size: 15px;
  line-height: 24px;
}

.about-value-copy p + p {
  margin-top: 18px;
}

.about-chairman {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 170px;
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: clamp(68px, 8vw, 126px);
  align-items: stretch;
}

.about-chairman-media {
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft);
}

.about-chairman-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.about-chairman:hover .about-chairman-media img {
  transform: scale(1.035);
}

.about-chairman-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  align-self: stretch;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  padding: 42px 44px;
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.about-chairman-copy:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.about-chairman-copy h2 {
  margin: 0 0 42px;
  color: var(--black);
  font-size: clamp(40px, 3.4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
}

.about-chairman-copy p + p {
  margin-top: 16px;
}

.about-chairman-primary {
  padding: 0 0 130px;
}

.about-chairman-signature {
  margin-top: 48px;
  display: grid;
  gap: 22px;
}

.about-chairman-signature strong {
  color: var(--black);
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 300;
  line-height: 1.15;
}

.about-chairman-signature span {
  color: var(--black);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 300;
  line-height: 1.2;
}

.about-expertise {
  width: 100%;
  margin: 0;
  padding: clamp(92px, 9vw, 150px) var(--page-pad) clamp(84px, 8vw, 126px);
  background: var(--white);
  color: var(--black);
}

.about-expertise-tabs {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.2vw, 88px);
}

.about-expertise-tabs button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
  outline: 0;
  transition: color 0.28s ease;
}

.about-expertise-tabs button:hover,
.about-expertise-tabs button:focus-visible,
.about-expertise-tabs button.active {
  color: var(--black);
}

.about-expertise-tabs span {
  flex: 0 1 150px;
  height: 1px;
  background: rgba(0, 0, 0, 0.28);
}

.about-expertise-panel {
  display: none;
  width: min(900px, 100%);
  margin: clamp(82px, 7vw, 112px) auto 0;
  text-align: center;
}

.about-expertise-panel.active {
  display: block;
  animation: aboutExpertiseIn 0.35s ease both;
}

@keyframes aboutExpertiseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-expertise-panel h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 600;
  line-height: 1.35;
}

.about-expertise-panel i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 36px auto 38px;
  border-radius: 50%;
  background: var(--black);
}

.about-expertise-panel p {
  width: min(750px, 100%);
  margin: 0;
  color: var(--black);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 300;
  line-height: 1.32;
}

.about-expertise-icons {
  width: min(890px, 100%);
  margin: clamp(90px, 8vw, 132px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.about-expertise-icons div {
  display: grid;
  justify-items: center;
  gap: 25px;
  color: var(--black);
}

.about-expertise-icons svg {
  width: 58px;
  height: 58px;
}

.about-expertise-icons strong {
  color: var(--black);
  font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .about-hero {
    height: 620px;
  }

  .about-dual-block,
  .about-chairman {
    grid-template-columns: 1fr;
  }

  .about-chairman {
    padding: 90px 0 120px;
  }

  .about-chairman-primary {
    padding: 0 0 100px;
  }

  .about-chairman-media,
  .about-chairman-media img {
    min-height: 560px;
  }

  .about-chairman-copy {
    min-height: 560px;
  }

  .about-expertise {
    width: 100%;
    padding: clamp(64px, 8vw, 92px) var(--page-pad);
  }

  .about-expertise-tabs {
    width: 100%;
    gap: 22px;
  }

  .about-expertise-tabs button {
    font-size: clamp(31px, 5vw, 44px);
  }

  .about-expertise-tabs span {
    flex-basis: 64px;
  }

  .about-expertise-panel {
    margin-top: 72px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    height: 100svh;
    min-height: 560px;
  }

  .about-hero .page-hero-content {
    padding-bottom: 44px;
  }

  .about-dual-block {
    width: 100%;
    padding: 0 21px 50px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-dual-block h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .about-dual-block article {
    min-height: auto;
    border-radius: 10px;
    padding: 24px 22px;
  }

  .about-dual-block p,
  .about-value-copy p,
  .about-chairman-copy p,
  .about-expertise-panel p {
    font-size: 15px;
    line-height: 24px;
  }

  .about-value-band {
    min-height: 420px;
    width: calc(100% - 42px);
    border-radius: 10px;
    background-attachment: scroll;
  }

  .about-value-copy {
    width: calc(100% - 28px);
    padding: 26px 22px;
    border-radius: 10px;
  }

  .about-chairman {
    width: 100%;
    padding: 60px 21px 90px;
    gap: 34px;
  }

  .about-chairman-primary {
    padding: 20px 21px 70px;
  }

  .about-chairman-media,
  .about-chairman-media img {
    min-height: 480px;
    border-radius: 10px;
  }

  .about-chairman-copy {
    min-height: auto;
    border-radius: 10px;
    padding: 24px 22px;
  }

  .about-chairman-copy h2 {
    margin-bottom: 28px;
    font-size: 35px;
    line-height: 45px;
  }

  .about-chairman-signature {
    margin-top: 34px;
    gap: 12px;
  }

  .about-expertise {
    width: 100%;
    padding: 64px 21px 80px;
  }

  .about-expertise-tabs {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .about-expertise-tabs button {
    font-size: 34px;
    line-height: 40px;
  }

  .about-expertise-tabs span {
    flex: 1 1 42px;
  }

  .about-expertise-panel {
    margin-top: 58px;
  }

  .about-expertise-panel h2 {
    font-size: 19px;
  }

  .about-expertise-panel i {
    width: 11px;
    height: 11px;
    margin: 28px auto 30px;
  }

  .about-expertise-icons {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
    margin-top: 58px;
  }

  .about-expertise-icons svg {
    width: 48px;
    height: 48px;
  }

  .about-expertise-icons strong {
    font-size: 14px;
  }
}

/* Motion enhancement layer: additive only, no content or layout changes. */
.motion-js:not(.motion-reduced) .motion-reveal {
  --motion-delay: 0ms;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 880ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay);
  will-change: opacity, transform;
}

.motion-js:not(.motion-reduced) .motion-reveal:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(4px);
}

.motion-js:not(.motion-reduced) .motion-reveal-left:not(.is-revealed) {
  transform: translate3d(-34px, 0, 0);
}

.motion-js:not(.motion-reduced) .motion-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.motion-js:not(.motion-reduced) .motion-reveal.motion-tilt.is-revealed {
  transform: perspective(1100px) rotateX(var(--motion-rotate-x)) rotateY(var(--motion-rotate-y)) translate3d(0, var(--motion-hover-y), 0);
}

.motion-tilt {
  --motion-rotate-x: 0deg;
  --motion-rotate-y: 0deg;
  --motion-hover-y: 0px;
  --motion-image-x: 0px;
  --motion-image-y: 0px;
  transform: perspective(1100px) rotateX(var(--motion-rotate-x)) rotateY(var(--motion-rotate-y)) translate3d(0, var(--motion-hover-y), 0);
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.motion-tilt:hover,
.motion-tilt:focus-visible {
  --motion-hover-y: -6px;
}

.motion-tilt.is-pressing {
  --motion-hover-y: -2px;
}

.motion-tilt > img,
.motion-tilt .news-card > img,
.motion-tilt .feature-card > img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-tilt:hover > img,
.motion-tilt:focus-visible > img,
.motion-tilt.is-tilting > img {
  transform: scale(1.04) translate3d(var(--motion-image-x), var(--motion-image-y), 0);
}

@media (prefers-reduced-motion: reduce) {
  .projects-collection-opening,
  .motion-reveal,
  .motion-tilt,
  .motion-tilt > img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.home-development-page .pdf-contact-block,
.home-development-page .pdf-events-head {
  min-height: 340px;
  padding-top: clamp(28px, 3vw, 54px);
  padding-bottom: clamp(28px, 3vw, 54px);
}

.home-development-page .pdf-contact-block h2,
.home-development-page .pdf-events-head h2 {
  font-size: clamp(42px, 4.1vw, 65px);
  line-height: 1.16;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .home-development-page .pdf-contact-block,
  .home-development-page .pdf-events-head {
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-development-page .pdf-contact-block h2,
  .home-development-page .pdf-events-head h2 {
    white-space: normal;
  }
}

.home-development-page .development-site-header.is-delayed-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed,
.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed.hide {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}

.home-development-page .brand-logo {
  width: 262px;
  height: 52px;
}

.home-development-page .development-nav .nav-panel-trigger,
.home-development-page .development-nav button,
.home-development-page .development-nav > a {
  font-size: 13px;
  line-height: 16px;
}

.home-development-page .pdf-development-button {
  width: auto;
  min-width: 0;
  min-height: 38px;
  height: auto;
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  gap: 0;
  font-size: 16px;
  line-height: 16px;
  border-color: var(--white);
  color: var(--white);
}

.home-development-page .pdf-development-button:hover,
.home-development-page .pdf-development-button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.home-development-page .pdf-event-card a {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.home-development-page .pdf-event-card:hover a,
.home-development-page .pdf-event-card:focus-within a,
.home-development-page .pdf-event-card a:hover,
.home-development-page .pdf-event-card a:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

@media (max-width: 767px) {
  .home-development-page .brand-logo {
    width: 208px;
    height: 42px;
  }

  .home-development-page .pdf-development-button {
    min-width: 190px;
    min-height: 38px;
    font-size: 11px;
  }
}

.home-development-page .footer_legal_social.footer_links {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  margin-top: 86px;
  padding-top: 34px;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.home-development-page .footer_legal_left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.home-development-page .footer_links_row {
  gap: clamp(22px, 2.4vw, 38px);
}

.home-development-page .footer_legal_social .footer_link,
.home-development-page .footer_legal_social .footer_legal_text {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 400;
  line-height: 42px;
}

.home-development-page .footer_links_social {
  gap: 14px;
}

.home-development-page .icon-social-link-block {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.home-development-page .icon-social-link-block:hover,
.home-development-page .icon-social-link-block:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  transform: none;
}

.home-development-page .footer_legal_text {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .home-development-page .footer_legal_social.footer_links {
    grid-template-columns: 1fr;
  }

  .home-development-page .footer_legal_left {
    flex-wrap: wrap;
  }

  .home-development-page .footer_legal_text {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .home-development-page .footer_legal_social.footer_links {
    margin-top: 54px;
    padding-top: 26px;
    gap: 24px;
  }

  .home-development-page .footer_legal_left {
    align-items: flex-start;
    gap: 22px;
  }

  .home-development-page .footer_legal_social .footer_link,
  .home-development-page .footer_legal_social .footer_legal_text {
    font-size: 13px;
    line-height: 22px;
  }

  .home-development-page .icon-social-link-block {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 768px) {
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel {
    flex: 1 1 0;
    transform: none !important;
    opacity: 1;
    filter: none;
    transition:
      flex-grow 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
      flex-basis 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 300ms ease,
      filter 300ms ease;
    will-change: flex-grow, flex-basis;
  }

  .home-development-page .pdf-gallery-flex.has-active .pdf-gallery-panel,
  .home-development-page .pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel,
  .home-development-page .pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel {
    flex: 0.42 1 0;
    opacity: 0.82;
    filter: saturate(0.86);
  }

  .home-development-page .pdf-gallery-flex .pdf-gallery-panel.is-active,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:hover,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:focus-visible,
  .home-development-page .pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel:hover,
  .home-development-page .pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel:focus-visible {
    flex: 7.8 1 0;
    opacity: 1;
    filter: none;
  }

  .home-development-page .pdf-gallery-flex .pdf-gallery-panel > img {
    transform: none;
    transition: transform 780ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .home-development-page .pdf-gallery-flex .pdf-gallery-panel.is-active > img,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:hover > img,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:focus-visible > img {
    transform: scale(1.035);
  }

  .home-development-page .pdf-gallery-flex .pdf-gallery-panel.motion-tilt,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel.motion-reveal {
    transform: none !important;
  }
}

.home-development-page .header-wrap {
  position: relative;
}

.home-development-page .brand-link {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
}

.home-development-page .development-nav {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  gap: clamp(24px, 3.1vw, 54px);
}

.home-development-page .header-actions {
  margin-left: auto;
}

@media (max-width: 1024px) {
  .home-development-page .development-nav {
    display: none;
  }
}

.home-development-page .development-site-header {
  position: fixed;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  transition:
    background-color 420ms ease,
    box-shadow 420ms ease,
    color 320ms ease,
    opacity 0.65s ease,
    transform 0.65s ease;
}

.home-development-page .development-site-header.is-past-hero {
  background: rgba(255, 255, 255, 0.98);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.home-development-page .development-site-header.is-delayed-nav:not(.is-nav-revealed) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed,
.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed.hide {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-development-page .brand-logo {
  width: 327.5px;
  height: 65px;
}

.home-development-page .development-site-header .brand-logo-dark {
  display: none;
}

.home-development-page .development-site-header .brand-logo-light {
  display: block;
}

.home-development-page .development-site-header.is-past-hero .brand-logo-dark {
  display: block;
}

.home-development-page .development-site-header.is-past-hero .brand-logo-light {
  display: none;
}

.home-development-page .development-site-header.is-past-hero .development-nav .nav-panel-trigger,
.home-development-page .development-site-header.is-past-hero .development-nav button,
.home-development-page .development-site-header.is-past-hero .development-nav > a {
  color: var(--black);
}

.home-development-page .development-site-header.is-past-hero .header-actions .btn-pill {
  border-color: var(--black);
  color: var(--black);
}

.home-development-page .development-site-header.is-past-hero .header-actions .btn-pill:hover {
  background: var(--black);
  color: var(--white);
}

.home-development-page .development-site-header.is-past-hero .menu-toggle span {
  background: var(--black);
}

@media (max-width: 767px) {
  .home-development-page .brand-logo {
    width: 260px;
    height: 52.5px;
  }
}

.home-development-page .development-nav,
.home-development-page .desktop-nav-panel {
  display: none !important;
}

.home-development-page .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 0;
}

.home-development-page .header-actions .btn-pill {
  display: none !important;
}

.home-development-page .menu-toggle {
  display: grid !important;
  position: relative;
  z-index: 5;
}

.menu-panel {
  left: auto;
  right: 0;
  width: min(430px, 100vw);
  min-width: 0;
  height: 100vh;
  max-height: 100vh;
  transform: translateX(100%);
}

.menu-panel.open {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .menu-panel {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    transform: translateX(100%);
  }

  .menu-panel.open {
    transform: translateX(0);
  }

  .menu-close {
    left: auto;
    right: 20px;
  }
}

/* KPD New Design template system */
.kpd-page {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-main);
}

.kpd-main {
  background: var(--white);
}

.kpd-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 132px) 0;
}

.kpd-section--compact {
  padding-top: clamp(48px, 5vw, 86px);
  padding-bottom: clamp(48px, 5vw, 86px);
}

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

.kpd-section--dark > .kpd-section-wrap {
  width: var(--container);
  margin: 0 auto;
}

.kpd-section-head {
  min-height: clamp(220px, 22vw, 340px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 150px);
  align-items: start;
}

.kpd-section-head--center {
  min-height: 0;
  display: block;
  max-width: 820px;
  margin: 0 auto clamp(44px, 6vw, 78px);
  text-align: center;
}

.kpd-title {
  margin: 0;
  color: var(--black);
  font-size: clamp(56px, 5.9vw, 112px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.kpd-section--dark .kpd-title,
.kpd-section--dark .kpd-body,
.kpd-section--dark .kpd-copy {
  color: currentColor;
}

.kpd-body,
.kpd-copy {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.kpd-copy + .kpd-copy {
  margin-top: 24px;
}

.kpd-eyebrow,
.kpd-card-date {
  display: block;
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kpd-card-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

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

.kpd-card,
.kpd-news-card,
.kpd-property-card,
.kpd-press-card,
.kpd-update-card {
  min-height: clamp(480px, 38vw, 620px);
  position: relative;
  overflow: hidden;
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  border: 0;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.35s ease;
}

.kpd-card:hover,
.kpd-news-card:hover,
.kpd-property-card:hover,
.kpd-press-card:hover,
.kpd-update-card:hover {
  --motion-hover-y: -6px;
}

.kpd-card > img,
.kpd-news-card > img,
.kpd-property-card > img,
.kpd-press-card > img,
.kpd-update-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.45s ease;
}

.kpd-card::after,
.kpd-news-card::after,
.kpd-property-card::after,
.kpd-press-card::after,
.kpd-update-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.kpd-card:hover > img,
.kpd-news-card:hover > img,
.kpd-property-card:hover > img,
.kpd-press-card:hover > img,
.kpd-update-card:hover > img {
  transform: scale(1.04) translate3d(var(--motion-image-x, 0px), var(--motion-image-y, 0px), 0);
}

.kpd-card-content {
  position: relative;
  z-index: 2;
}

.kpd-card h3,
.kpd-news-card h3,
.kpd-property-card h3,
.kpd-press-card h3,
.kpd-update-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: currentColor;
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
}

.kpd-card p,
.kpd-news-card p,
.kpd-property-card p,
.kpd-press-card p,
.kpd-update-card p {
  position: relative;
  z-index: 2;
  min-height: 72px;
  max-width: 92%;
  margin: 0 0 18px;
  color: currentColor;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.kpd-card-link,
.kpd-card .btn-pill,
.kpd-news-card .btn-pill,
.kpd-property-card .btn-pill,
.kpd-press-card .btn-pill,
.kpd-update-card .btn-pill {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  align-self: stretch;
  border-color: currentColor;
  color: currentColor;
}

.kpd-card:hover .kpd-card-link,
.kpd-card:focus-within .kpd-card-link,
.kpd-card:hover .btn-pill,
.kpd-card:focus-within .btn-pill,
.kpd-news-card:hover .btn-pill,
.kpd-news-card:focus-within .btn-pill,
.kpd-property-card:hover .btn-pill,
.kpd-property-card:focus-within .btn-pill,
.kpd-press-card:hover .btn-pill,
.kpd-press-card:focus-within .btn-pill,
.kpd-update-card:hover .btn-pill,
.kpd-update-card:focus-within .btn-pill {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.kpd-card--light {
  background: #f4f1ea;
  color: var(--black);
}

.kpd-card--light::after {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.05));
}

.kpd-footer-template {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .kpd-section-head,
  .kpd-card-grid,
  .kpd-card-grid--two {
    grid-template-columns: 1fr;
  }

  .kpd-section-head {
    min-height: 0;
    gap: 26px;
  }

  .kpd-title {
    font-size: clamp(44px, 10vw, 76px);
  }

  .kpd-card,
  .kpd-news-card,
  .kpd-property-card,
  .kpd-press-card,
  .kpd-update-card {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .kpd-section {
    width: 88%;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .kpd-section--dark > .kpd-section-wrap,
  .kpd-card-grid {
    width: 88%;
  }

  .kpd-card,
  .kpd-news-card,
  .kpd-property-card,
  .kpd-press-card,
  .kpd-update-card {
    min-height: 410px;
    padding: 0 22px 22px;
    border-radius: 18px;
  }

  .kpd-card p,
  .kpd-news-card p,
  .kpd-property-card p,
  .kpd-press-card p,
  .kpd-update-card p {
    max-width: none;
  }
}

/* About page - Website-About (2).pdf adaptation */
.about-design-page {
  background: var(--white);
  color: var(--black);
}

.about-design-page .about-main {
  background: var(--white);
  color: var(--black);
}

.about-design-page .about-hero {
  height: 100vh;
  min-height: 720px;
  margin-top: 0;
  background: var(--black);
}

.about-design-page .about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.04) saturate(0.96);
}

.about-design-page .about-hero::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.42));
}

.about-design-page .about-hero .page-hero-content {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0 clamp(48px, 6vw, 86px);
  display: flex;
  align-items: flex-end;
}

.about-design-page .about-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.about-story {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(44px, 5.2vw, 78px) 0 clamp(70px, 8vw, 118px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(52px, 8vw, 132px);
  align-items: center;
}

.about-story-title {
  margin: 0 0 28px;
  color: var(--black);
  font-size: clamp(58px, 5.9vw, 104px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-story-copy {
  max-width: 720px;
}

.about-story-copy p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

.about-story-copy p + p {
  margin-top: 24px;
}

.about-story-media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.about-story-media img {
  width: 100%;
  height: clamp(420px, 38vw, 620px);
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-story-media:hover img {
  transform: scale(1.035);
}

.about-mission-vision {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(72px, 8vw, 126px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 62px);
}

.about-mission-card {
  min-height: 250px;
  padding: 30px 32px 34px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 22px;
  background: var(--white);
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.about-mission-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.about-mission-card h2 {
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.12;
}

.about-mission-card p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

.about-design-page .about-chairman {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(96px, 10vw, 160px);
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: stretch;
}

.about-design-page .about-chairman-media {
  min-height: clamp(540px, 48vw, 720px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.about-design-page .about-chairman-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(540px, 48vw, 720px);
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.about-design-page .about-chairman-copy {
  min-height: clamp(540px, 48vw, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 22px;
  padding: clamp(34px, 4vw, 62px);
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.about-design-page .about-chairman-copy:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.about-design-page .about-chairman-copy p {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 300;
  line-height: 1.3;
}

.about-chairman-signature {
  margin-top: clamp(36px, 5vw, 68px);
  text-align: right;
}

.about-chairman-signature strong,
.about-chairman-signature span {
  display: block;
  color: var(--black);
}

.about-chairman-signature strong {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.about-chairman-signature span {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.about-management {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(96px, 10vw, 160px);
}

.about-management h2 {
  margin: 0 0 clamp(34px, 4vw, 58px);
  color: var(--black);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 300;
  line-height: 1.12;
}

.about-management-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
}

.about-management-card {
  color: var(--black);
  text-decoration: none;
  transition: transform 0.35s ease;
}

.about-management-card:hover {
  --motion-hover-y: -6px;
}

.about-management-card figure {
  margin: 0;
}

.about-management-card .about-management-image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.about-management-card img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.about-management-card:hover img {
  transform: scale(1.04) translate3d(var(--motion-image-x, 0px), var(--motion-image-y, 0px), 0);
}

.about-management-card figcaption {
  margin-top: 20px;
}

.about-management-card strong,
.about-management-card span {
  display: block;
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .about-design-page .about-hero {
    min-height: 620px;
  }

  .about-story-grid,
  .about-mission-vision,
  .about-design-page .about-chairman,
  .about-management-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    gap: 40px;
  }

  .about-design-page .about-chairman {
    padding-bottom: 110px;
  }
}

@media (max-width: 767px) {
  .about-design-page .about-hero {
    min-height: 560px;
    height: 100svh;
  }

  .about-story,
  .about-mission-vision,
  .about-design-page .about-chairman,
  .about-management {
    width: 88%;
  }

  .about-story {
    padding-top: 64px;
  }

  .about-story-title {
    font-size: clamp(44px, 12vw, 66px);
  }

  .about-story-media,
  .about-mission-card,
  .about-design-page .about-chairman-media,
  .about-design-page .about-chairman-copy,
  .about-management-card .about-management-image {
    border-radius: 18px;
  }

  .about-story-media img,
  .about-design-page .about-chairman-media,
  .about-design-page .about-chairman-media img,
  .about-design-page .about-chairman-copy {
    min-height: 440px;
  }

  .about-mission-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .about-chairman-signature {
    text-align: left;
  }
}

/* Our Projects page - Website-About (3).pdf adaptation */
.projects-design-page {
  background: var(--white);
  color: var(--black);
}

.projects-design-page .projects-hero {
  height: min(68vw, 720px);
  min-height: 640px;
  margin-top: 0;
  background: var(--black);
}

.projects-design-page .projects-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.04) saturate(0.96);
}

.projects-design-page .projects-hero::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
}

.projects-design-page .projects-hero .page-hero-content {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0 clamp(48px, 6vw, 86px);
  display: flex;
  align-items: flex-end;
}

.projects-design-page .projects-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.projects-list {
  padding-top: clamp(92px, 10vw, 154px);
  padding-bottom: clamp(112px, 12vw, 190px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.projects-card.kpd-property-card {
  min-height: clamp(390px, 31vw, 540px);
  border-radius: 22px;
  padding: 0 28px 24px;
}

.projects-card.kpd-property-card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
}

.projects-card .kpd-card-content {
  width: 100%;
}

.projects-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: currentColor;
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
}

.projects-card p {
  max-width: 96%;
  min-height: 78px;
}

.projects-card .btn-pill {
  min-height: 42px;
}

@media (max-width: 1024px) {
  .projects-design-page .projects-hero {
    height: 620px;
    min-height: 620px;
  }

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

  .projects-card.kpd-property-card {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .projects-design-page .projects-hero {
    height: 100svh;
    min-height: 560px;
  }

  .projects-list {
    width: 88%;
    padding-top: 64px;
    padding-bottom: 86px;
  }

  .projects-card.kpd-property-card {
    min-height: 410px;
    border-radius: 18px;
    padding: 0 22px 22px;
  }

  .projects-card p {
    max-width: none;
    min-height: 0;
  }
}

/* Developments PDF collection layout */
.projects-design-page {
  background: var(--white);
}

.projects-collection-main {
  background: var(--white);
  color: var(--black);
  padding-top: calc(var(--header-h) + clamp(44px, 5.5vw, 72px));
}

.projects-collection-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(78px, 9vw, 128px);
}

.projects-collection-opening {
  display: grid;
  grid-template-columns: 0.75fr 1.12fr;
  gap: clamp(12px, 1.45vw, 22px);
  height: clamp(430px, 46vw, 640px);
  animation: kpd-collection-card-breathe 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: grid-template-columns;
}

.about-design-page .projects-collection-opening,
.legacy-design-page .projects-collection-opening,
.news-design-page .projects-collection-opening {
  animation: none;
  will-change: auto;
}

@keyframes kpd-collection-card-breathe {
  0%,
  100% {
    grid-template-columns: 0.75fr 1.12fr;
  }

  50% {
    grid-template-columns: 1.12fr 0.75fr;
  }
}

.projects-collection-media,
.projects-featured-card,
.projects-pdf-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 24px);
  background: #111;
}

.projects-hero-page-title {
  position: absolute;
  left: clamp(24px, 3vw, 46px);
  bottom: clamp(22px, 3vw, 42px);
  z-index: 2;
  color: #fff;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
}

.projects-collection-media img,
.projects-featured-card img,
.projects-pdf-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-collection-media-right img {
  object-position: center;
}

.projects-collection-statement {
  padding: clamp(86px, 9vw, 122px) 0 clamp(68px, 7vw, 84px);
}

.projects-collection-statement h1 {
  width: min(100%, 1060px);
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: 0;
}

.projects-h2-template.section-head {
  width: 100%;
  min-height: var(--split-template-height);
  padding-top: 0;
  padding-bottom: clamp(18px, 2.6vw, 36px);
  align-items: center;
}

.projects-featured-card {
  position: relative;
  height: 520px;
}

.projects-featured-link,
.projects-pdf-card a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.projects-featured-card img,
.projects-pdf-card img {
  transition: transform 0.96s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-featured-link:hover img,
.projects-featured-link:focus-visible img,
.projects-pdf-card a:hover img,
.projects-pdf-card a:focus-visible img {
  transform: scale(1.045);
}

.projects-featured-overlay,
.projects-pdf-card-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.04) 54%, rgba(0, 0, 0, 0.18));
}

.projects-pdf-card-shade {
  opacity: 1;
  transition: opacity 0.38s ease;
}

.projects-featured-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2;
  text-align: center;
}

.projects-seven-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.projects-seven-mark > span:first-child {
  font-size: clamp(56px, 8.2vw, 96px);
}

.projects-seven-mark > span:last-child {
  font-size: clamp(42px, 5.2vw, 64px);
}

.projects-seven-mark em {
  font-style: normal;
  font-weight: 300;
}

.projects-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 34px;
  padding: 8px 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.projects-featured-link:hover .projects-outline-button,
.projects-featured-link:focus-visible .projects-outline-button,
.projects-pdf-card a:hover .projects-outline-button,
.projects-pdf-card a:focus-visible .projects-outline-button {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.projects-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(70px, 7vw, 92px);
}

.projects-pdf-card {
  position: relative;
  height: 520px;
  color: var(--white);
  background: var(--black);
}

.projects-pdf-card-content {
  position: absolute;
  inset: auto 28px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

.projects-pdf-card a:hover .projects-pdf-card-shade,
.projects-pdf-card a:focus-visible .projects-pdf-card-shade,
.projects-pdf-card a:hover .projects-pdf-card-content,
.projects-pdf-card a:focus-visible .projects-pdf-card-content {
  opacity: 1;
}

.projects-pdf-card a:hover .projects-pdf-card-content,
.projects-pdf-card a:focus-visible .projects-pdf-card-content {
  transform: translate3d(0, 0, 0);
}

.projects-pdf-card-content strong {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
  letter-spacing: 0;
}

.projects-pdf-card-content > span:not(.projects-outline-button) {
  margin: 0 0 18px;
  max-width: 92%;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.projects-pdf-card .projects-outline-button {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  margin-top: 0;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 1024px) {
  .projects-collection-opening {
    height: auto;
    grid-template-columns: 1fr;
    animation: none;
    will-change: auto;
  }

  .projects-collection-media {
    min-height: 430px;
  }

  .projects-pdf-grid {
    grid-template-columns: 1fr;
  }

  .projects-pdf-card {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .projects-collection-main {
    padding-top: calc(var(--header-h) + 34px);
  }

  .projects-collection-shell {
    padding-bottom: 78px;
  }

  .projects-collection-media {
    min-height: 300px;
    border-radius: 18px;
  }

  .projects-hero-page-title {
    left: 24px;
    bottom: 24px;
    font-size: clamp(34px, 12vw, 52px);
  }

  .projects-collection-statement {
    padding: 58px 0 48px;
  }

  .projects-collection-statement h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.22;
  }

  .projects-featured-card {
    height: 360px;
    border-radius: 18px;
  }

  .projects-pdf-grid {
    margin-top: 46px;
    gap: 20px;
  }

  .projects-pdf-card {
    height: 420px;
    border-radius: 18px;
  }

  .projects-pdf-card-content {
    inset: auto 18px 18px;
    opacity: 1;
    transform: none;
  }

  .projects-pdf-card-content strong {
    font-size: 32px;
    line-height: 38px;
  }

  .projects-pdf-card-shade {
    opacity: 1;
  }
}

/* Developments page - Website-Contact (1).pdf adaptation */
.projects-spec-main {
  background: #fff;
  color: #000;
}

.projects-spec-hero {
  position: relative;
  height: clamp(520px, 55vw, 680px);
  min-height: 520px;
  overflow: hidden;
  background: #050505;
}

.projects-spec-hero > img,
.projects-spec-contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.58) contrast(1.06) saturate(0.96);
}

.projects-spec-hero::after,
.projects-spec-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}

.projects-spec-hero-copy {
  position: absolute;
  left: max(calc((100vw - var(--container)) / 2), 7.5vw);
  bottom: clamp(58px, 7vw, 104px);
  z-index: 2;
  width: min(560px, 48vw);
  color: #fff;
}

.projects-spec-hero-copy span,
.projects-spec-contact-copy span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.projects-spec-hero-copy h1,
.projects-spec-contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.projects-spec-hero-copy p,
.projects-spec-contact-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 400;
  line-height: 1.28;
}

.projects-spec-intro {
  padding: clamp(58px, 6.5vw, 104px) 0 clamp(36px, 4vw, 62px);
}

.projects-spec-intro-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(54px, 10vw, 180px);
  align-items: start;
}

.projects-spec-intro h2 {
  margin: 0;
  color: #000;
  font-size: clamp(54px, 5vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.projects-spec-intro p {
  max-width: 650px;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.34;
}

.projects-spec-list {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(68px, 7vw, 110px);
  display: grid;
  gap: clamp(54px, 5.5vw, 88px);
}

.projects-spec-row {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: center;
}

.projects-spec-row-reverse .projects-spec-media {
  order: 2;
}

.projects-spec-row-reverse .projects-spec-copy {
  order: 1;
}

.projects-spec-media {
  min-height: clamp(330px, 29vw, 470px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 28px);
  background: #f2f2f2;
}

.projects-spec-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.projects-spec-row:hover .projects-spec-media img {
  transform: scale(1.035);
}

.projects-spec-copy h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.projects-spec-copy p {
  max-width: 680px;
  margin: 0 0 clamp(30px, 3vw, 44px);
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.35;
}

.projects-spec-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}

.projects-spec-meta div {
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.72);
}

.projects-spec-meta dt {
  margin: 0 0 10px;
  color: #000;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.1;
}

.projects-spec-meta dd {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 400;
  line-height: 1.2;
}

.projects-spec-actions,
.projects-spec-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.projects-spec-actions a,
.projects-spec-contact-actions a,
.projects-spec-contact-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #000;
  background: transparent;
  font: inherit;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.projects-spec-actions a:hover,
.projects-spec-actions a:focus-visible {
  color: #fff;
  background: #000;
  transform: translateY(-2px);
}

.projects-spec-contact {
  position: relative;
  min-height: clamp(480px, 52vw, 690px);
  overflow: hidden;
  background: #050505;
}

.projects-spec-contact-copy {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(56px, 7vw, 104px) 0;
  color: #fff;
}

.projects-spec-contact-copy h2 {
  font-size: clamp(42px, 4.4vw, 74px);
}

.projects-spec-contact-actions {
  width: min(640px, 100%);
  grid-template-columns: minmax(150px, 0.42fr) minmax(260px, 1fr);
  margin-top: 30px;
}

.projects-spec-contact-actions a,
.projects-spec-contact-actions button {
  min-height: 38px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.08);
}

.projects-spec-contact-actions a:hover,
.projects-spec-contact-actions button:hover,
.projects-spec-contact-actions a:focus-visible,
.projects-spec-contact-actions button:focus-visible {
  color: #000;
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .projects-spec-hero {
    height: 640px;
  }

  .projects-spec-hero-copy {
    width: min(620px, 78vw);
  }

  .projects-spec-intro-inner,
  .projects-spec-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .projects-spec-row-reverse .projects-spec-media,
  .projects-spec-row-reverse .projects-spec-copy {
    order: initial;
  }
}

@media (max-width: 767px) {
  .projects-spec-hero {
    height: 100svh;
    min-height: 560px;
  }

  .projects-spec-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 48px;
    width: auto;
  }

  .projects-spec-intro-inner,
  .projects-spec-list,
  .projects-spec-contact-copy {
    width: calc(100% - 36px);
  }

  .projects-spec-intro {
    padding-top: 56px;
  }

  .projects-spec-meta,
  .projects-spec-actions,
  .projects-spec-contact-actions {
    grid-template-columns: 1fr;
  }

  .projects-spec-media {
    min-height: 320px;
    border-radius: 18px;
  }

  .projects-spec-contact {
    min-height: 600px;
  }
}

/* Shared reference hero - Website-Contact (2).pdf */
.page-reference-main {
  background: #fff;
}

.page-reference-hero {
  position: relative;
  height: min(100svh, 56.25vw);
  min-height: 560px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.page-reference-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.06) saturate(0.96);
}

.page-reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.page-reference-hero-copy {
  position: absolute;
  left: max(calc((100vw - var(--container)) / 2), 7.5vw);
  bottom: clamp(74px, 10vw, 150px);
  z-index: 2;
  width: min(680px, 48vw);
  color: #fff;
}

.page-reference-hero-copy span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-reference-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.55vw, 98px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.page-reference-hero-copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .page-reference-hero {
    height: 70svh;
    min-height: 620px;
  }

  .page-reference-hero-copy {
    width: min(680px, 78vw);
  }
}

@media (max-width: 767px) {
  .page-reference-hero {
    height: 100svh;
    min-height: 560px;
  }

  .page-reference-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 48px;
    width: auto;
  }

  .page-reference-hero-copy span {
    margin-bottom: 14px;
  }

  .page-reference-hero-copy h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .page-reference-hero-copy p {
    margin-top: 20px;
  }
}

/* News page - Website-About (4).pdf adaptation */
.news-design-page {
  background: var(--white);
  color: var(--black);
}

.news-design-page .news-hero {
  height: min(68vw, 720px);
  min-height: 640px;
  margin-top: 0;
  background: var(--black);
}

.news-design-page .news-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.04) saturate(0.96);
}

.news-design-page .news-hero::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
}

.news-design-page .news-hero .page-hero-content {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0 clamp(48px, 6vw, 86px);
  display: flex;
  align-items: flex-end;
}

.news-design-page .news-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.news-feature {
  padding-top: clamp(92px, 10vw, 154px);
  padding-bottom: clamp(94px, 10vw, 160px);
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(52px, 8vw, 132px);
  align-items: center;
}

.news-feature-copy time {
  display: block;
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.38);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 400;
  line-height: 1.2;
}

.news-feature-copy h2 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(44px, 4.2vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.news-feature-copy p {
  margin: 0;
  max-width: 690px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

.news-feature-copy p + p {
  margin-top: 24px;
}

.news-feature-button {
  width: min(360px, 100%);
  margin-top: 42px;
}

.news-feature-media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.news-feature-media img {
  width: 100%;
  height: clamp(360px, 30vw, 520px);
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-feature-media:hover img {
  transform: scale(1.035);
}

.news-updates {
  padding-top: 0;
  padding-bottom: clamp(112px, 12vw, 190px);
}

.media-filter-tabs {
  width: 100%;
  margin: 0 0 clamp(28px, 3.2vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.media-filter-tab {
  min-width: 0;
  height: 38px;
  padding: 0 21px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.media-filter-tab:hover,
.media-filter-tab:focus-visible,
.media-filter-tab.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 700;
}

.media-feed-stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.media-filter-section[data-media-filter-current="news"] [data-media-filter-panel="blog"],
.media-filter-section[data-media-filter-current="blog"] [data-media-filter-panel="news"] {
  display: none;
}

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

.news-card-item.kpd-news-card {
  min-height: clamp(390px, 31vw, 540px);
  border-radius: 22px;
  padding: 0 28px 24px;
}

.news-card-item.kpd-news-card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08));
}

.news-card-item .kpd-card-content {
  width: 100%;
}

.news-card-item h3 {
  font-size: clamp(28px, 2.35vw, 36px);
}

.news-card-item p {
  max-width: 96%;
  min-height: 78px;
}

.news-card-item .btn-pill {
  min-height: 42px;
}

@media (max-width: 1024px) {
  .news-design-page .news-hero {
    height: 620px;
    min-height: 620px;
  }

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

  .news-feature-grid {
    gap: 40px;
  }

  .news-card-item.kpd-news-card {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .news-design-page .news-hero {
    height: 100svh;
    min-height: 560px;
  }

  .news-feature,
  .news-updates {
    width: 88%;
  }

  .media-filter-tabs {
    gap: 8px;
  }

  .media-filter-tab {
    height: 36px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .news-feature {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .news-feature-media,
  .news-card-item.kpd-news-card {
    border-radius: 18px;
  }

  .news-feature-media img {
    height: 340px;
  }

  .news-card-item.kpd-news-card {
    min-height: 410px;
    padding: 0 22px 22px;
  }

  .news-card-item p {
    max-width: none;
    min-height: 0;
  }
}

/* Single project page */
.single-project-page {
  background: #fff;
}

.single-project-main {
  background: #fff;
}

.single-project-hero {
  position: relative;
  width: 100%;
  height: clamp(460px, 52vw, 690px);
  overflow: hidden;
  background: #111;
}

.home-development-page .single-project-hero.pdf-hero {
  height: clamp(460px, 52vw, 690px);
  min-height: 460px;
}

.single-project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.single-project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-project-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.single-project-play::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #fff;
}

.single-project-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0, 0, 0, 0.35);
  border-color: #fff;
}

.single-project-intro-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.single-project-intro-copy h1,
.single-project-section-head h2,
.single-project-contact-grid h2,
.single-project-value-copy h2 {
  margin: 0;
  color: #000;
  font-size: clamp(52px, 6.6vw, 118px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.single-project-intro-copy p,
.single-project-section-copy p,
.single-project-value-copy p {
  max-width: 880px;
  margin: 26px 0 0;
  color: #1e252c;
  font-size: clamp(18px, 1.34vw, 26px);
  line-height: 1.55;
  font-weight: 300;
}

.single-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.single-project-actions .btn-pill,
.single-project-section-copy .btn-pill,
.single-project-form .btn-pill {
  min-width: 190px;
}

.single-project-sketch {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-project-sketch img {
  width: min(100%, 420px);
  max-height: 580px;
  object-fit: contain;
}

.single-project-showcase {
  padding-top: 0;
}

.single-project-visual {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f3f3f0;
}

.single-project-slide {
  display: none;
  margin: 0;
}

.single-project-slide.active {
  display: block;
}

.single-project-slide img {
  width: 100%;
  height: clamp(470px, 48vw, 790px);
  object-fit: cover;
}

.single-project-section-head,
.single-project-contact-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 128px);
  align-items: start;
}

.single-project-section-copy {
  padding-top: 18px;
}

.single-project-section-copy .btn-pill {
  margin-top: 38px;
}

.single-project-amenities-board {
  width: 100%;
  margin: clamp(52px, 7vw, 96px) 0 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fbfbf8;
}

.single-project-amenities-board img {
  width: 100%;
  height: auto;
}

.single-project-form {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 3.8vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  background: #fff;
}

.single-project-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
}

.single-project-radio-row label,
.single-project-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.single-project-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.single-project-form input:not([type="radio"]):not([type="checkbox"]),
.single-project-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.4;
  outline: none;
}

.single-project-form textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.single-project-form input:focus,
.single-project-form textarea:focus {
  border-bottom-color: #000;
}

.single-project-check {
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.single-project-form .btn-pill {
  justify-self: start;
  margin-top: 8px;
}

.single-project-gallery {
  padding-top: 0;
}

.single-project-gallery img {
  width: 100%;
  margin: 0;
  border-radius: 20px;
}

.single-project-value {
  position: relative;
  min-height: clamp(520px, 52vw, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #101010;
}

.single-project-value::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.single-project-value > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.single-project-value-copy {
  position: relative;
  z-index: 2;
  width: min(78%, 980px);
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(1px);
}

.single-project-value-copy h2,
.single-project-value-copy p {
  color: #fff;
}

.single-project-value-copy p {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.16vw, 22px);
}

.single-project-location img {
  width: 100%;
  margin: 0;
  border-radius: 20px;
  background: #f4f4f2;
}

@media (max-width: 980px) {
  .home-development-page .single-project-hero.pdf-hero {
    height: clamp(420px, 72vw, 620px);
    min-height: 420px;
  }

  .single-project-intro-grid,
  .single-project-section-head,
  .single-project-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-project-intro-copy h1,
  .single-project-section-head h2,
  .single-project-contact-grid h2,
  .single-project-value-copy h2 {
    font-size: clamp(48px, 11vw, 82px);
  }

  .single-project-sketch {
    justify-content: flex-start;
  }

  .single-project-slide img {
    height: clamp(360px, 68vw, 560px);
  }

  .single-project-form-grid {
    grid-template-columns: 1fr;
  }

  .single-project-value-copy {
    width: var(--container);
  }
}

@media (max-width: 640px) {
  .home-development-page .single-project-hero.pdf-hero {
    min-height: 390px;
  }

  .single-project-play {
    width: 64px;
    height: 64px;
  }

  .single-project-play::before {
    left: 26px;
    top: 21px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .single-project-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .single-project-actions .btn-pill,
  .single-project-section-copy .btn-pill,
  .single-project-form .btn-pill {
    width: 100%;
  }

  .single-project-form {
    padding: 24px;
  }

  .single-project-value {
    min-height: 640px;
  }
}

/* Full-screen benchmark menu */
.menu-panel {
  inset: 0;
  left: 0;
  right: auto;
  width: 100vw;
  min-width: 0;
  height: 100svh;
  max-height: none;
  display: grid;
  grid-template-columns: minmax(430px, 50vw) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 0;
  background: #172536;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

body.menu-open .menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel::before,
.menu-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}

.menu-panel::before {
  left: 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(18, 32, 46, 0.78), rgba(11, 21, 29, 0.88)),
    url("../images/facade%20right%201.png");
  filter: blur(10px);
  transform: scale(1.05);
}

.menu-panel::after {
  right: 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(14, 24, 36, 0.12), rgba(14, 24, 36, 0.08)),
    url("../images/facade%20right%201.png");
}

.menu-close {
  left: clamp(34px, 4vw, 78px);
  right: auto;
  top: clamp(28px, 4vh, 50px);
  z-index: 3;
  width: 30px;
  height: 30px;
}

.menu-close::before,
.menu-close::after {
  left: 14px;
  top: 0;
  width: 2px;
  height: 31px;
  background: rgba(255, 255, 255, 0.95);
}

.menu-inner {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: 100%;
  height: 100%;
  padding: clamp(92px, 11vh, 150px) clamp(42px, 5vw, 96px) clamp(42px, 7vh, 92px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background: rgba(28, 40, 56, 0.66);
  box-shadow: inset -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.menu-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  margin: 0 0 clamp(16px, 2vh, 30px);
}

.menu-list li:nth-child(7) {
  margin-bottom: clamp(28px, 4vh, 50px);
}

.menu-list li:nth-child(n + 8) {
  margin-bottom: clamp(9px, 1.2vh, 16px);
}

.menu-list a {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.28s ease, transform 0.28s ease;
}

.menu-list li:nth-child(n + 8) a {
  font-family: var(--font-main);
  font-size: clamp(15px, 1.1vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.menu-list li:first-child a,
.menu-list a:hover,
.menu-list a:focus-visible {
  color: #fff;
  transform: translateX(8px);
}

.menu-list a::after {
  display: none;
}

.menu-panel .social-list,
.menu-panel .menu-email {
  display: none;
}

@media (max-width: 980px) {
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .menu-panel::before {
    width: 100%;
  }

  .menu-panel::after {
    display: none;
  }

  .menu-inner {
    grid-column: 1;
    padding: 96px 34px 42px;
    background: rgba(20, 32, 45, 0.72);
    overflow-y: auto;
  }

  .menu-list a {
    font-size: clamp(31px, 9vw, 54px);
  }

  .menu-list li:nth-child(n + 8) a {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .menu-close {
    left: 28px;
    top: 28px;
  }

  .menu-inner {
    padding: 88px 28px 36px;
  }

  .menu-list li {
    margin-bottom: 16px;
  }

  .menu-list li:nth-child(7) {
    margin-bottom: 26px;
  }
}

/* Full-page page hero template */
.home-development-page .page-hero.pdf-hero,
.home-development-page .single-project-hero.pdf-hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  margin-top: 0;
  overflow: hidden;
  background: #000;
}

.home-development-page .page-hero.pdf-hero > img,
.home-development-page .single-project-hero.pdf-hero > img,
.home-development-page .page-hero.pdf-hero > video,
.home-development-page .single-project-hero.pdf-hero > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.04) saturate(0.96);
}

.home-development-page .page-hero.pdf-hero::after,
.home-development-page .single-project-hero.pdf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.28) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.home-development-page .page-hero .page-hero-content,
.home-development-page .single-project-hero .page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0 clamp(54px, 7vh, 96px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}

.home-development-page .page-hero h1,
.home-development-page .single-project-hero h1 {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  color: #fff;
  font-size: clamp(34px, 2.6vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-development-page .page-hero h1::after,
.home-development-page .single-project-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 210px);
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.single-project-play {
  z-index: 3;
}

@media (max-width: 767px) {
  .home-development-page .page-hero.pdf-hero,
  .home-development-page .single-project-hero.pdf-hero {
    height: 100svh;
    min-height: 560px;
  }

  .home-development-page .page-hero .page-hero-content,
  .home-development-page .single-project-hero .page-hero-content {
    width: 88%;
    padding-bottom: 46px;
  }

  .home-development-page .page-hero h1,
  .home-development-page .single-project-hero h1 {
    font-size: clamp(30px, 8vw, 44px);
    padding-bottom: 16px;
  }
}

/* Fixed white header band from the first frame */
.home-development-page .development-site-header,
.home-development-page .development-site-header.is-past-hero {
  position: fixed;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.home-development-page .development-site-header.is-delayed-nav:not(.is-nav-revealed),
.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed,
.home-development-page .development-site-header.is-delayed-nav.is-nav-revealed.hide {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reference inline navigation header */
.home-development-page .development-site-header .header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.2vw, 58px);
}

.home-development-page .development-site-header .brand-link {
  position: fixed;
  left: 50vw;
  top: calc(var(--header-h) / 2);
  z-index: 3;
  transform: translate(-50%, -50%);
}

.home-development-page .development-site-header .brand-logo {
  width: 220px;
  height: 44px;
  object-fit: contain;
}

.home-development-page .development-site-header .header-nav,
.home-development-page .development-site-header .header-right-cluster {
  display: flex;
  align-items: center;
}

.home-development-page .development-site-header .header-nav {
  gap: clamp(42px, 5.5vw, 96px);
}

.home-development-page .development-site-header .header-nav-left {
  margin-left: 0;
}

.home-development-page .development-site-header .header-right-cluster {
  margin-left: auto;
  gap: clamp(42px, 5vw, 86px);
}

.home-development-page .development-site-header .header-nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.home-development-page .development-site-header .header-nav a:hover,
.home-development-page .development-site-header .header-nav a:focus-visible {
  opacity: 0.56;
}

.home-development-page .development-site-header .brand-logo-dark,
.home-development-page .development-site-header.is-past-hero .brand-logo-dark {
  display: block;
}

.home-development-page .development-site-header .brand-logo-light,
.home-development-page .development-site-header.is-past-hero .brand-logo-light {
  display: none;
}

.home-development-page .development-site-header .menu-toggle span,
.home-development-page .development-site-header.is-past-hero .menu-toggle span {
  background: var(--black);
}

.home-development-page .development-site-header .menu-toggle {
  display: none !important;
}

.home-development-page .development-site-header .header-book-call,
.home-development-page .development-site-header.is-past-hero .header-book-call {
  display: inline-flex !important;
  margin: 0;
  min-width: 172px;
  min-height: 38px;
  padding: 9px 18px;
  border-color: var(--black);
  color: var(--black);
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-development-page .development-site-header .header-book-call:hover,
.home-development-page .development-site-header.is-past-hero .header-book-call:hover {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 767px) {
  .home-development-page .development-site-header .header-nav {
    display: none;
  }

  .home-development-page .development-site-header .header-wrap {
    justify-content: center;
  }

  .home-development-page .development-site-header .menu-toggle {
    position: absolute;
    left: 0;
    display: inline-flex !important;
  }

  .home-development-page .development-site-header .header-right-cluster {
    position: absolute;
    right: 0;
    gap: 0;
  }

  .home-development-page .development-site-header .header-book-call {
    min-width: 136px;
    min-height: 36px;
    padding: 8px 13px;
    font-size: 11px;
    line-height: 12px;
  }

  .home-development-page .development-site-header .brand-logo {
    width: 178px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .home-development-page .development-site-header .header-book-call {
    min-width: 104px;
    max-width: 104px;
    white-space: normal;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
  }

  .home-development-page .development-site-header .brand-logo {
    width: 118px;
    height: 30px;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .header-book-call {
    min-width: 94px;
    max-width: 94px;
    font-size: 9px;
  }

  .home-development-page .development-site-header .brand-logo {
    width: 104px;
    height: 27px;
  }
}

/* Global header sizing contract */
.home-development-page .development-site-header,
.home-development-page .development-site-header.is-past-hero {
  height: var(--header-h);
}

.home-development-page .development-site-header .header-wrap {
  width: var(--container);
  height: var(--header-h);
  padding-top: 0;
  padding-bottom: 0;
}

.home-development-page .development-site-header .menu-toggle {
  width: 40px;
  height: 24px;
}

.home-development-page .development-site-header .menu-toggle span {
  width: 40px;
  height: 2px;
}

.home-development-page .development-site-header .header-book-call {
  min-width: 172px;
  min-height: 38px;
  padding: 9px 18px;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 767px) {
  .home-development-page .development-site-header .brand-logo {
    width: 178px;
    height: 38px;
  }

  .home-development-page .development-site-header .header-book-call {
    min-width: 136px;
    min-height: 36px;
    padding: 8px 13px;
    font-size: 11px;
    line-height: 12px;
  }
}

@media (max-width: 520px) {
  .home-development-page .development-site-header .brand-logo {
    width: 118px;
    height: 30px;
  }

  .home-development-page .development-site-header .header-book-call {
    min-width: 104px;
    max-width: 104px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .brand-logo {
    width: 104px;
    height: 27px;
  }

  .home-development-page .development-site-header .header-book-call {
    min-width: 94px;
    max-width: 94px;
    font-size: 9px;
  }
}

/* Extended site pages */
.kpd-page-intro {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 9vw, 148px) 0;
}

.kpd-detail-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.kpd-info-card {
  min-height: 250px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 22px;
  background: #fff;
  color: #000;
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.kpd-info-card:hover {
  border-color: #000;
  transform: translateY(-4px);
}

.kpd-info-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.kpd-info-card h3 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 300;
  line-height: 1.14;
}

.kpd-info-card p,
.kpd-legal-block p,
.kpd-legal-block li {
  margin: 0;
  color: #1f252b;
  font-size: 16px;
  line-height: 1.66;
}

.kpd-info-card p + p {
  margin-top: 16px;
}

.kpd-spec-row {
  width: var(--container);
  margin: clamp(42px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 40px);
}

.kpd-spec {
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.kpd-spec strong {
  display: block;
  color: #000;
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.kpd-spec span {
  display: block;
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.kpd-media-band {
  width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #eee;
}

.kpd-media-band img {
  width: 100%;
  height: clamp(420px, 45vw, 760px);
  object-fit: cover;
  transition: transform 0.8s ease;
}

.kpd-media-band:hover img {
  transform: scale(1.035);
}

.kpd-contact-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.kpd-form-card {
  padding: clamp(28px, 3.6vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 22px;
  background: #fff;
}

.kpd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.kpd-form-card input,
.kpd-form-card textarea,
.kpd-form-card select {
  width: 100%;
  min-height: 54px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: var(--font-main);
  font-size: 17px;
  outline: none;
}

.kpd-form-card textarea {
  grid-column: 1 / -1;
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.kpd-form-card .btn-pill {
  margin-top: 30px;
  min-width: 210px;
}

.kpd-route-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.kpd-route-list a,
.kpd-route-list span {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 18px;
}

.kpd-legal-block {
  width: min(860px, var(--container));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 146px) 0;
}

.kpd-legal-block h2 {
  margin: 46px 0 14px;
  color: #000;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  line-height: 1.16;
}

.kpd-legal-block ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.kpd-legal-block p + p {
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .kpd-detail-grid,
  .kpd-contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .kpd-page-intro,
  .kpd-detail-grid,
  .kpd-media-band,
  .kpd-contact-grid,
  .kpd-spec-row {
    width: 88%;
  }

  .kpd-form-grid,
  .kpd-spec-row {
    grid-template-columns: 1fr;
  }

  .kpd-info-card,
  .kpd-form-card,
  .kpd-media-band {
    border-radius: 18px;
  }

  .kpd-media-band img {
    height: 360px;
  }
}

/* Editable single-project replacements */
.single-project-sketch-card {
  width: min(100%, 430px);
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfbf8, #f4f2ee);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.single-project-sketch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.35);
}

.single-project-tower-sketch {
  width: min(100%, 320px);
  height: auto;
  overflow: visible;
}

.single-project-tower-sketch path {
  fill: none;
  stroke: #27282c;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.single-project-sketch-card span {
  margin-top: 24px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.single-project-render-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #171b20;
}

.single-project-render-track {
  position: relative;
  min-height: clamp(500px, 52vw, 840px);
}

.single-project-render-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.55s ease, transform 0.8s ease, visibility 0.55s ease;
}

.single-project-render-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.single-project-render-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 18, 0.56), rgba(9, 13, 18, 0.08) 42%, rgba(9, 13, 18, 0.48));
  pointer-events: none;
}

.single-project-render-slide img {
  width: 100%;
  height: clamp(500px, 52vw, 840px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
}

.single-project-render-slide figcaption {
  position: absolute;
  left: clamp(28px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 2;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.25;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.48);
}

.single-project-render-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.single-project-render-nav:hover {
  background: rgba(0, 0, 0, 0.42);
  transform: translateY(-50%) scale(1.06);
}

.single-project-render-nav.prev {
  left: clamp(20px, 3.4vw, 56px);
}

.single-project-render-nav.next {
  right: clamp(20px, 3.4vw, 56px);
}

.single-project-render-nav::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.single-project-render-nav.prev::before {
  transform: translateX(4px) rotate(-135deg);
}

.single-project-render-nav.next::before {
  transform: translateX(-4px) rotate(45deg);
}

.single-project-render-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 2.5vw, 38px);
  z-index: 5;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.single-project-render-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.single-project-render-dots button.is-active,
.single-project-render-dots button:hover {
  background: #fff;
  transform: scale(1.18);
}

.single-project-amenities-board {
  background: transparent;
}

.single-project-page .single-project-amenities.kpd-section {
  padding-bottom: clamp(28px, 3vw, 56px);
}

.single-project-amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.single-project-amenity-card {
  min-height: clamp(210px, 17vw, 292px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #f6f6f5;
  color: #202020;
  text-align: center;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.single-project-amenity-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.42);
  background: #fff;
}

.amenity-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #111;
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-project-amenity-card h3 {
  margin: 0;
  color: #202020;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-project-flex-gallery {
  width: 100%;
  padding: 0;
}

.single-project-flex-gallery .pdf-gallery-panel {
  min-height: clamp(560px, 45vw, 760px);
}

.single-project-flex-gallery .pdf-gallery-panel span {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.single-project-intuitive.kpd-section {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: clamp(26px, 3vw, 52px) 0 0;
  overflow: hidden;
}

.single-project-intuitive-cta {
  position: relative;
  width: var(--container);
  min-height: clamp(250px, 24vw, 340px);
  margin: 0 auto clamp(52px, 6vw, 92px);
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 28px);
  background: #050505;
  color: #fff;
}

.single-project-intuitive-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.single-project-intuitive-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-project-intuitive-cta-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 62%);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px) 0;
  color: #fff;
  text-align: center;
}

.single-project-intuitive-cta-copy h2,
.single-project-intuitive-rail h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 3.3vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.single-project-intuitive-cta-copy p,
.single-project-intuitive-rail p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.single-project-intuitive-button,
.single-project-intuitive-controls a,
.single-project-intuitive-control {
  min-width: 222px;
  min-height: 46px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.single-project-intuitive-button:hover,
.single-project-intuitive-controls a:hover,
.single-project-intuitive-control:hover,
.single-project-intuitive-control:focus-visible {
  color: #050505;
  background: #fff;
  transform: translateY(-2px);
}

.single-project-intuitive-stage {
  width: 100%;
  margin-left: 0;
  min-height: 0;
  background: #050505;
  color: #fff;
}

.single-project-intuitive-image {
  width: 100%;
  height: clamp(340px, 32vw, 520px);
  margin: 0;
  overflow: hidden;
}

.single-project-intuitive-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease, transform 360ms ease;
}

.single-project-intuitive-rail {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(360px, 1.35fr) auto;
  gap: clamp(28px, 4vw, 74px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(30px, 3.6vw, 56px) 0;
  background: transparent;
}

.single-project-intuitive-rail h2 {
  font-size: clamp(26px, 2.5vw, 42px);
  transition: opacity 220ms ease, transform 260ms ease;
}

.single-project-intuitive-rail p {
  max-width: 760px;
  margin-top: 0;
  transition: opacity 220ms ease, transform 260ms ease;
}

.single-project-intuitive-controls {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.single-project-intuitive-controls a,
.single-project-intuitive-control {
  min-width: 118px;
  min-height: 34px;
  margin-top: 0;
  font-size: 11px;
}

.single-project-intuitive-data {
  display: none;
}

.single-project-intuitive-stage.is-switching .single-project-intuitive-image img,
.single-project-intuitive-stage.is-switching .single-project-intuitive-rail h2,
.single-project-intuitive-stage.is-switching .single-project-intuitive-rail p {
  opacity: 0.24;
  transform: translateY(4px);
}

.single-project-intuitive-stage.is-switching .single-project-intuitive-image img {
  transform: scale(1.015);
}

.single-project-gallery-intro.kpd-section {
  padding-top: clamp(72px, 7vw, 118px);
  padding-bottom: clamp(28px, 3vw, 52px);
}

@media (max-width: 900px) {
  .single-project-intuitive-cta-copy {
    width: min(86%, 560px);
  }

  .single-project-intuitive-rail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0;
  }

  .single-project-intuitive-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .single-project-intuitive.kpd-section {
    padding-top: 56px;
  }

  .single-project-intuitive-cta {
    width: calc(100% - (var(--gutter) * 2));
    min-height: 320px;
    margin-bottom: 46px;
  }

  .single-project-intuitive-cta-copy {
    width: 84%;
  }

  .single-project-intuitive-cta-copy h2,
  .single-project-intuitive-rail h2 {
    font-size: 31px;
  }

  .single-project-intuitive-image {
    height: 420px;
  }

  .single-project-intuitive-controls {
    width: 100%;
  }

  .single-project-intuitive-controls a {
    flex: 1 1 0;
  }
}

.single-project-travel {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #f6f6f4;
}

.single-project-travel-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 170px;
  padding: 34px clamp(32px, 6vw, 86px) 36px;
  background: #fff;
}

.single-project-travel-rail::before {
  content: "";
  position: absolute;
  left: clamp(72px, 10vw, 160px);
  right: clamp(72px, 10vw, 160px);
  top: 112px;
  height: 1px;
  background: rgba(0, 0, 0, 0.45);
}

.travel-stop {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 22px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.travel-stop::after {
  content: "";
  position: absolute;
  top: 67px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 9px #000;
}

.travel-stop.origin::after {
  width: 42px;
  height: 42px;
  top: 60px;
}

.travel-car {
  position: relative;
  width: 82px;
  height: 32px;
  border-radius: 42% 42% 28% 28%;
  background: linear-gradient(90deg, #202020 0 18%, #f5f5f5 18% 82%, #202020 82% 100%);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.13);
}

.travel-car::before,
.travel-car::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111;
}

.travel-car::before {
  left: 13px;
}

.travel-car::after {
  right: 13px;
}

.single-project-map {
  position: relative;
  min-height: clamp(520px, 43vw, 760px);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    repeating-linear-gradient(18deg, transparent 0 72px, rgba(0,0,0,0.045) 73px 75px),
    #e9e9e7;
}

.map-water {
  position: absolute;
  border-radius: 50%;
  background: rgba(180, 181, 181, 0.42);
}

.map-water-a {
  left: 36%;
  top: -18%;
  width: 52%;
  height: 42%;
  transform: rotate(-13deg);
}

.map-water-b {
  right: -12%;
  top: 6%;
  width: 30%;
  height: 34%;
  transform: rotate(22deg);
}

.map-road {
  position: absolute;
  height: 34px;
  border-top: 5px solid #9c9c9b;
  border-bottom: 5px solid #9c9c9b;
  background: rgba(255, 255, 255, 0.75);
}

.map-road-main {
  left: -6%;
  right: -6%;
  top: 49%;
  transform: rotate(-4deg);
}

.map-road-cross {
  left: 22%;
  top: 20%;
  width: 18%;
  height: 760px;
  transform: rotate(-23deg);
}

.map-road-loop {
  left: 25%;
  top: 54%;
  width: 210px;
  height: 160px;
  border: 12px solid #aaa;
  border-radius: 50%;
  background: transparent;
}

.map-road-local {
  height: 12px;
  border-width: 2px;
  opacity: 0.65;
}

.map-road-one {
  left: 48%;
  top: 61%;
  width: 38%;
  transform: rotate(26deg);
}

.map-road-two {
  left: 62%;
  top: 38%;
  width: 40%;
  transform: rotate(0deg);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(0, 0, 0, 0.52);
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.15;
}

.label-one { left: 20%; top: 64%; }
.label-two { left: 42%; top: 43%; }
.label-three { right: 7%; top: 34%; }
.label-four { right: 26%; top: 24%; }

.map-pin {
  position: absolute;
  z-index: 5;
  width: 26px;
  height: 26px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #7a7a7a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transform: rotate(-45deg);
}

.map-pin span {
  position: absolute;
  left: 20px;
  bottom: 22px;
  width: max-content;
  max-width: 180px;
  transform: rotate(45deg);
  color: rgba(0, 0, 0, 0.64);
  font-size: 14px;
  line-height: 1.15;
}

.map-pin.primary {
  left: 52%;
  top: 47%;
  width: 34px;
  height: 34px;
  background: #343434;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.08), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.pin-a { left: 38%; top: 45%; }
.pin-b { left: 60%; top: 41%; }
.pin-c { left: 67%; top: 48%; }
.pin-d { left: 79%; top: 61%; }

@media (max-width: 1180px) {
  .single-project-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .single-project-sketch-card {
    min-height: 420px;
  }

  .single-project-render-track,
  .single-project-render-slide img {
    min-height: 430px;
    height: 430px;
  }

  .single-project-render-nav {
    width: 42px;
    height: 42px;
  }

  .single-project-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .single-project-amenity-card {
    min-height: 188px;
    padding: 20px 12px;
  }

  .amenity-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }

  .single-project-flex-gallery {
    overflow-x: auto;
  }

  .single-project-travel-rail {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 24px;
  }

  .single-project-travel-rail::before,
  .travel-stop::after {
    display: none;
  }

  .travel-stop {
    justify-items: start;
  }

  .single-project-map {
    min-height: 520px;
  }

  .map-pin span {
    display: none;
  }
}

/* Sitewide homepage typography sync */
:root {
  --kpd-type-display: clamp(52px, 5.2vw, 80px);
  --kpd-type-display-line: 1.375;
  --kpd-type-section: clamp(42px, 4.1vw, 65px);
  --kpd-type-section-line: 1.38;
  --kpd-type-card-title: clamp(30px, 2.5vw, 38px);
  --kpd-type-card-line: 1.16;
  --kpd-type-copy: 16px;
  --kpd-type-copy-line: 26px;
  --kpd-type-button: 14px;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-main);
  letter-spacing: 0;
}

.home-development-page .page-hero h1,
.home-development-page .single-project-hero h1 {
  font-size: clamp(34px, 2.6vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pdf-intro h1,
.kpd-title,
.about-story-title,
.single-project-intro-copy h1,
.single-project-section-head h2,
.single-project-contact-grid h2,
.single-project-value-copy h2 {
  font-size: var(--kpd-type-display);
  font-weight: 400;
  line-height: var(--kpd-type-display-line);
  letter-spacing: 0;
}

.pdf-contact-block h2,
.pdf-events-head h2,
.split-list h2,
.section-head h2,
.about-dual-block h2,
.about-value-copy h2,
.about-mission-card h2,
.about-chairman-copy h2,
.about-management h2,
.news-feature-copy h2,
.kpd-legal-block h2 {
  font-size: var(--kpd-type-section);
  font-weight: 300;
  line-height: var(--kpd-type-section-line);
  letter-spacing: 0;
}

.pdf-dev-card h3,
.pdf-event-card h3,
.kpd-card h3,
.kpd-news-card h3,
.kpd-property-card h3,
.kpd-press-card h3,
.kpd-update-card h3,
.projects-card h2,
.news-card-item h3,
.feature-card h3,
.news-card h3,
.leader-card h3,
.timeline-card h3,
.investor-card h3,
.doc-card h3,
.faq-card h3,
.route-card h3,
.kpd-info-card h3 {
  font-size: var(--kpd-type-card-title);
  font-weight: 300;
  line-height: var(--kpd-type-card-line);
  letter-spacing: 0;
}

.pdf-intro-copy p,
.pdf-contact-copy p,
.pdf-events-head p,
.pdf-dev-card p,
.pdf-event-card p,
.kpd-body,
.kpd-copy,
.kpd-card p,
.kpd-news-card p,
.kpd-property-card p,
.kpd-press-card p,
.kpd-update-card p,
.projects-card p,
.news-card-item p,
.news-feature-copy p,
.feature-card p,
.news-card p,
.leader-card p,
.timeline-card p,
.investor-card p,
.doc-card p,
.faq-card p,
.leader-card span,
.route-card p,
.route-card a,
.about-story-copy p,
.about-dual-block p,
.about-value-copy p,
.about-mission-card p,
.about-expertise-copy p,
.about-expertise-panel p,
.single-project-intro-copy p,
.single-project-section-copy p,
.single-project-value-copy p,
.kpd-info-card p,
.kpd-legal-block p,
.kpd-legal-block li,
.stat span,
.kpd-spec span {
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.about-design-page .about-chairman-copy p {
  font-weight: 300;
  letter-spacing: 0;
}

.btn-pill,
.pdf-dev-card span,
.pdf-contact-copy a,
.pdf-events-head a,
.pdf-event-card a,
.button_submit,
.kpd-card-link {
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-eyebrow,
.kpd-eyebrow,
.kpd-card-date,
.kpd-info-card span,
.single-project-radio-row {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kpd-form-card input,
.kpd-form-card textarea,
.kpd-form-card select,
.single-project-form input:not([type="radio"]):not([type="checkbox"]),
.single-project-form textarea,
.input-text {
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.footer_links_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer_link,
.footer_newsletter_terms,
.footer_legal_text,
.text-size-footer {
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 0;
}

.footer_form .input-text,
.footer_form .button_submit {
  font-size: 15px;
  line-height: 23px;
}

@media (max-width: 767px) {
  :root {
    --kpd-type-display: clamp(44px, 10vw, 76px);
    --kpd-type-display-line: 1.2;
    --kpd-type-section: 35px;
    --kpd-type-section-line: 45px;
  }

  .home-development-page .page-hero h1,
  .home-development-page .single-project-hero h1 {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.08;
  }

  .footer_link,
  .footer_newsletter_terms,
  .footer_legal_text,
  .text-size-footer {
    font-size: 13px;
    line-height: 22px;
  }
}

/* Reference-style full-screen menu */
.menu-panel {
  --menu-bg-image: url("../images/KPD%20Experience%20Center/hq/1.jpg");
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  min-width: 0;
  max-height: none;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)),
    var(--menu-bg-image) center / cover no-repeat;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.04);
  filter: none;
  transform: none;
}

.menu-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: min(50vw, 684px);
  background: rgba(0, 0, 0, 0.68);
  border-radius: 0 26px 26px 0;
  box-shadow: 18px 0 80px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(1.5px);
  transform: none;
  filter: none;
}

.menu-inner {
  position: relative;
  z-index: 2;
  width: min(50vw, 684px);
  height: 100%;
  padding: clamp(88px, 11vh, 128px) clamp(42px, 6.4vw, 102px) clamp(54px, 8vh, 92px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-list,
.menu-sublist {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-list li,
.menu-list li:nth-child(7),
.menu-list li:nth-child(n + 8) {
  margin: 0;
}

.menu-list > .menu-item {
  margin-bottom: clamp(18px, 2.15vh, 28px);
}

.menu-list > .menu-item.has-sub {
  margin-bottom: clamp(17px, 2vh, 25px);
}

.menu-list a {
  display: inline-block;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-main);
  font-size: clamp(27px, 2.05vw, 32px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.menu-sublist {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  padding-left: 29px;
}

.menu-sublist a,
.menu-list li:nth-child(n + 8) a {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-main);
  font-size: clamp(19px, 1.4vw, 22px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.menu-list a:hover,
.menu-list a:focus-visible,
.menu-sublist a:hover,
.menu-sublist a:focus-visible {
  color: #fff;
  transform: translateX(5px);
}

.menu-list a::after {
  display: none;
}

.menu-panel .social-list,
.menu-panel .menu-email {
  display: none;
}

.menu-close {
  left: clamp(34px, 4vw, 54px);
  right: auto;
  top: clamp(28px, 4vh, 44px);
  z-index: 4;
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.menu-close:hover,
.menu-close:focus-visible {
  opacity: 1;
  transform: scale(1.04);
}

.menu-close::before,
.menu-close::after {
  left: 13px;
  top: 0;
  width: 2px;
  height: 29px;
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 980px) {
  .menu-panel {
    background-position: center;
  }

  .menu-panel::after {
    width: min(82vw, 684px);
  }

  .menu-inner {
    width: min(82vw, 684px);
    padding-left: clamp(34px, 8vw, 72px);
    padding-right: clamp(28px, 6vw, 48px);
    overflow-y: auto;
  }

  .menu-list a {
    font-size: clamp(27px, 7vw, 32px);
  }

  .menu-sublist a,
  .menu-list li:nth-child(n + 8) a {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .menu-panel::after,
  .menu-inner {
    width: 100%;
  }

  .menu-panel::after {
    border-radius: 0;
  }

  .menu-close {
    left: 28px;
    top: 28px;
  }

  .menu-inner {
    padding: 88px 28px 42px;
  }

  .menu-list > .menu-item,
  .menu-list > .menu-item.has-sub {
    margin-bottom: 17px;
  }

  .menu-sublist {
    padding-top: 8px;
    padding-left: 28px;
    gap: 5px;
  }
}

body.menu-open .menu-panel.open,
.menu-panel.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Organized menu hierarchy */
.menu-panel .menu-inner {
  align-items: center;
  justify-content: flex-start;
  padding: clamp(92px, 12vh, 132px) clamp(44px, 7.2vw, 118px) clamp(56px, 8vh, 92px);
}

.menu-panel .menu-list {
  width: min(100%, 480px);
  margin: auto 0;
  gap: 0;
}

.menu-panel .menu-list > .menu-item {
  margin: 0 0 clamp(18px, 2.2vh, 28px);
}

.menu-panel .menu-list > .menu-item.has-sub {
  margin-bottom: clamp(20px, 2.5vh, 32px);
}

.menu-panel .menu-list > .menu-item > a {
  display: block;
  width: max-content;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.98;
}

.menu-panel .menu-sublist {
  width: max-content;
  padding: clamp(12px, 1.4vh, 16px) 0 0 clamp(32px, 3.2vw, 46px);
  gap: clamp(7px, 0.85vh, 11px);
}

.menu-panel .menu-sublist a {
  display: block;
  width: max-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.1;
}

.menu-panel .menu-list a:not(:hover):not(:focus-visible),
.menu-panel .menu-list li:first-child a:not(:hover):not(:focus-visible),
.menu-panel .menu-sublist li:first-child a:not(:hover):not(:focus-visible) {
  transform: none;
}

.menu-panel .menu-list a:hover,
.menu-panel .menu-list a:focus-visible,
.menu-panel .menu-sublist a:hover,
.menu-panel .menu-sublist a:focus-visible {
  color: #fff;
  transform: translateX(7px);
}

.menu-panel:has(a[href*="index"]:is(:hover, :focus, :focus-visible)),
.menu-panel:has(a[href*="#top"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/KPD%20Experience%20Center/hq/1.jpg");
}

.menu-panel:has(a[href*="our-projects"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/new images/futuristic-facade-of-apartment-houses-in-the-distr-2026-03-25-22-44-43-utc.jpg");
}

.menu-panel:has(a[href*="single-project"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/Properties/sxs/facade%20front%202.png");
}

.menu-panel:has(a[href*="emerald-villa"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/Properties/Emerald%20Villa/V24.png");
}

.menu-panel:has(a[href*="dubai-hills-mansion"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/new%20images/modern-luxury-house-with-landscaped-garden-under-a-2026-03-09-02-55-27-utc.jpg");
}

.menu-panel:has(a[href*="about-us"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/about/pdf/about-pdf-1-1.jpg");
}

.menu-panel:has(a[href*="news"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/news/pdf/news-pdf-1-1.jpg");
}

.menu-panel:has(a[href*="journal"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/blog/blog-1.jpg");
}

.menu-panel:has(a[href*="contact"]:is(:hover, :focus, :focus-visible)) {
  --menu-bg-image: url("../images/KPD%20Experience%20Center/hq/9.jpg");
}

@media (max-width: 980px) {
  .menu-panel .menu-inner {
    align-items: flex-start;
    padding: clamp(92px, 13vh, 124px) clamp(38px, 10vw, 78px) clamp(44px, 7vh, 72px);
  }

  .menu-panel .menu-list {
    width: min(100%, 390px);
  }

  .menu-panel .menu-list > .menu-item > a {
    font-size: clamp(34px, 8vw, 44px);
  }

  .menu-panel .menu-sublist {
    padding-left: clamp(28px, 7vw, 40px);
  }

  .menu-panel .menu-sublist a {
    font-size: clamp(22px, 5.2vw, 28px);
  }
}

@media (max-width: 520px) {
  .menu-panel .menu-inner {
    padding: 86px 34px 42px;
  }

  .menu-panel .menu-list {
    width: 100%;
  }

  .menu-panel .menu-list > .menu-item,
  .menu-panel .menu-list > .menu-item.has-sub {
    margin-bottom: 20px;
  }

  .menu-panel .menu-list > .menu-item > a {
    font-size: clamp(32px, 10vw, 40px);
  }

  .menu-panel .menu-sublist {
    padding-top: 10px;
    padding-left: 30px;
    gap: 8px;
  }

  .menu-panel .menu-sublist a {
    font-size: clamp(21px, 6.2vw, 26px);
  }
}

/* About page refinements */
@media (min-width: 1025px) {
  .about-design-page .about-story-grid {
    grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
    gap: clamp(30px, 3.8vw, 64px);
    align-items: stretch;
  }

  .about-design-page .about-story-copy {
    max-width: 430px;
    align-self: center;
  }

  .about-design-page .about-story-title {
    font-size: clamp(38px, 3.45vw, 58px);
    line-height: 1.14;
  }

  .about-design-page .about-story-media {
    position: relative;
    min-height: 0;
    height: 100%;
  }

  .about-design-page .about-story-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-design-page .about-chairman {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 76px);
  }

  .about-design-page .about-chairman-media,
  .about-design-page .about-chairman-media img,
  .about-design-page .about-chairman-copy {
    min-height: clamp(540px, 44vw, 720px);
  }

  .about-design-page .about-chairman-copy {
    max-width: none;
  }
}

.about-management-card {
  cursor: pointer;
  outline: 0;
}

.about-management-card:focus-visible .about-management-image {
  outline: 1px solid var(--black);
  outline-offset: 7px;
}

.about-design-page .about-mission-card {
  border-color: #000;
  background: #000;
}

.about-design-page .about-mission-card h2,
.about-design-page .about-mission-card p {
  color: #fff;
}

.about-design-page .about-mission-card:hover {
  border-color: #000;
}

.about-design-page .about-ceo {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(96px, 10vw, 160px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.about-design-page .about-ceo-copy {
  max-width: 820px;
}

.about-design-page .about-ceo-copy p {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 300;
  line-height: 1.3;
}

.about-design-page .about-ceo-media {
  min-height: clamp(360px, 36vw, 560px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.about-design-page .about-ceo-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 560px);
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.about-design-page .about-ceo-media:hover img {
  transform: scale(1.035);
}

@media (max-width: 980px) {
  .about-design-page .about-ceo {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-design-page .about-ceo-media,
  .about-design-page .about-ceo-media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .about-design-page .about-ceo {
    padding-bottom: 72px;
  }

  .about-design-page .about-ceo-copy p {
    font-size: 22px;
  }

.about-design-page .about-ceo-media,
  .about-design-page .about-ceo-media img {
    min-height: 360px;
  }
}

/* About PDF sizing refinements */
.about-design-page .about-chairman {
  margin: 0 auto clamp(74px, 8vw, 124px);
  padding: 0;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(56px, 7.4vw, 112px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.28s ease;
}

.about-design-page .about-chairman-media,
.about-design-page .about-chairman-media img {
  min-height: 0;
  height: clamp(320px, 30vw, 430px);
}

.about-design-page .about-chairman-media {
  align-self: stretch;
  border-radius: 15px;
}

.about-design-page .about-chairman:hover {
  border-color: var(--black);
}

.about-design-page .about-chairman:hover .about-chairman-media img {
  transform: scale(1.035);
}

.about-design-page .about-chairman-copy {
  min-height: 0;
  max-width: none;
  padding: clamp(28px, 4vw, 58px) clamp(30px, 4vw, 62px);
  border: 0;
  border-radius: 0;
  background: transparent;
  align-self: center;
}

.about-design-page .about-chairman-copy:hover {
  border-color: transparent;
  transform: none;
}

.about-design-page .about-chairman-copy p,
.about-design-page .about-ceo-copy p {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.32;
}

.about-chairman-signature {
  margin-top: clamp(24px, 3.3vw, 44px);
}

.about-chairman-signature strong {
  font-size: 16px;
}

.about-chairman-signature span {
  font-size: 14px;
}

.about-design-page .about-ceo {
  margin: 0 auto clamp(74px, 8vw, 124px);
  padding: 0;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: clamp(56px, 7.4vw, 112px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.28s ease;
}

.about-design-page .about-ceo-copy {
  max-width: none;
  align-self: center;
  padding: clamp(28px, 4vw, 58px) clamp(30px, 4vw, 62px);
}

.about-design-page .about-ceo-media,
.about-design-page .about-ceo-media img {
  min-height: 0;
  height: clamp(320px, 30vw, 430px);
}

.about-design-page .about-ceo-media {
  align-self: stretch;
  border-radius: 15px;
}

.about-design-page .about-ceo:hover {
  border-color: var(--black);
}

.about-design-page .about-ceo:hover .about-ceo-media img {
  transform: scale(1.035);
}

.about-management {
  padding-bottom: clamp(92px, 9vw, 142px);
}

.about-management h2 {
  margin-bottom: clamp(32px, 4vw, 54px);
  font-size: clamp(34px, 2.9vw, 48px);
}

.about-management-grid {
  gap: clamp(38px, 4vw, 58px);
}

.about-management-card .about-management-image {
  border-radius: 16px;
}

.about-management-card img {
  aspect-ratio: 0.68;
}

.about-management-card figcaption {
  margin-top: 16px;
}

.about-management-card strong,
.about-management-card span {
  font-size: 14px;
  line-height: 1.28;
}

.about-management-grid {
  gap: clamp(32px, 3.4vw, 44px);
}

.about-management-card .about-management-image {
  aspect-ratio: 363 / 511;
}

.about-management-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.about-management-card strong {
  font-size: 16px;
}

.about-management-card span {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .about-design-page .about-chairman,
  .about-design-page .about-ceo,
  .about-management-grid {
    grid-template-columns: 1fr;
  }

  .about-design-page .about-chairman,
  .about-design-page .about-ceo {
    margin-bottom: 72px;
  }

  .about-design-page .about-chairman-media,
  .about-design-page .about-chairman-media img,
  .about-design-page .about-ceo-media,
  .about-design-page .about-ceo-media img {
    height: clamp(360px, 78vw, 540px);
  }

  .about-design-page .about-chairman-copy,
  .about-design-page .about-ceo-copy {
    padding: 28px;
  }
}

.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 30px;
}

.bio-modal.open {
  display: grid;
}

.bio-card {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 40px));
  max-height: min(760px, calc(100svh - 60px));
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.bio-card-media {
  min-height: 460px;
  overflow: hidden;
  background: var(--soft);
}

.bio-card-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.bio-card-copy {
  padding: clamp(34px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-card-role {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio-card h2 {
  margin: 0 0 26px;
  color: var(--black);
  font-size: clamp(38px, 4.1vw, 65px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.bio-card p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
}

@media (max-width: 767px) {
  .bio-modal {
    padding: 18px;
  }

  .bio-card {
    width: 100%;
    max-height: calc(100svh - 36px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 18px;
  }

  .bio-card-media,
  .bio-card-media img {
    min-height: 320px;
  }

  .bio-card-copy {
    padding: 30px 24px 34px;
  }
}

/* Single project final refinements */
.single-project-page .single-project-render-banner {
  width: var(--container);
  height: min(704px, 46vw);
  min-height: 520px;
  margin: clamp(52px, 6vw, 92px) auto clamp(58px, 7vw, 108px);
  padding: 0;
  border-radius: 20px;
}

.single-project-page .single-project-render-banner::after {
  background: rgba(0, 0, 0, 0.34);
}

.single-project-page .single-project-render-banner .pdf-development-content h2 {
  color: var(--white);
  font-size: clamp(58px, 6vw, 100px);
  font-weight: 300;
  line-height: 1.1;
}

.single-project-page .single-project-render-banner .pdf-development-button {
  margin-top: 10px;
}

.single-project-page .single-project-value.motion-reveal,
.single-project-page .single-project-value.motion-reveal.is-revealed {
  transform: none !important;
}

.single-project-page .single-project-value > img {
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

.single-project-page .section-villa23-travel-timeline {
  --travel-section-pad-y: clamp(28px, 3.5svh, 46px);
  --travel-head-space: clamp(58px, 7svh, 86px);
  --travel-map-height: clamp(360px, 48svh, 530px);
  width: 100%;
  margin: 0;
  min-height: auto;
  padding: var(--travel-section-pad-y) 0;
  background: var(--white);
  color: var(--black);
}

.single-project-location-container {
  width: 100%;
}

.single-project-page .villa23-travel-head {
  width: var(--container);
  margin: 0 auto clamp(14px, 1.8vw, 24px);
}

.single-project-page .villa23-travel-head h2 {
  margin: 0;
  color: var(--black);
  font-size: var(--kpd-type-display);
  font-weight: 400;
  line-height: var(--kpd-type-display-line);
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-project-page .villa23-travel-shell {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #000;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.single-project-page .villa23-travel-timeline-wrap {
  position: relative;
  z-index: 5;
  width: min(82%, 1040px);
  margin: 0 auto;
  padding: clamp(72px, 6vw, 94px) 0 clamp(18px, 2vw, 28px);
}

.villa23-travel-timeline {
  position: relative;
  display: flex;
  align-items: center;
}

.villa23-travel-step {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.villa23-travel-label {
  position: absolute;
  z-index: 12;
  bottom: clamp(62px, 5vw, 78px);
  left: 50%;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.villa23-travel-dot {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.villa23-travel-step:hover .villa23-travel-dot,
.villa23-travel-step:focus-visible .villa23-travel-dot,
.villa23-travel-step.is-active .villa23-travel-dot {
  border-color: #000;
  background: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 1px #000, 0 18px 34px rgba(0, 0, 0, 0.18);
}

.villa23-travel-step.is-active .villa23-travel-label {
  transform: translateX(-50%) translateY(-4px);
}

.villa23-travel-line {
  flex: 1 1 auto;
  height: 1px;
  background: #000;
  transform: translateY(-1px);
}

.single-project-page .single-project-location .villa23-travel-car {
  position: absolute;
  top: clamp(28px, 3vw, 40px);
  left: 0;
  z-index: 8;
  width: clamp(66px, 6vw, 94px) !important;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  transform: translateX(0) translateZ(0);
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.22));
}

.single-project-page .villa23-travel-map-area {
  position: relative;
  width: 100%;
  min-height: var(--travel-map-height);
  margin-top: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.single-project-page .villa23-travel-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) saturate(0) contrast(1.08) brightness(0.98);
  opacity: 1;
}

@media (max-width: 767px) {
  .single-project-page .single-project-render-banner {
    width: calc(100% - 42px);
    height: 260px;
    min-height: 260px;
    margin-top: 50px;
    margin-bottom: 58px;
    border-radius: 10px;
  }

  .single-project-page .single-project-render-banner .pdf-development-content h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .single-project-page .villa23-travel-head {
    width: 88%;
  }

  .single-project-page .villa23-travel-timeline-wrap {
    width: 88%;
    padding-top: 96px;
  }

  .villa23-travel-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .single-project-page .single-project-location .villa23-travel-car {
    top: 50px;
    width: 74px !important;
  }

  .single-project-page .villa23-travel-map-area {
    min-height: 520px;
  }
}

/* Bright hero and Seven X Seven PDF reference refinements */
.home-development-page .page-hero.pdf-hero > img,
.home-development-page .single-project-hero.pdf-hero > img,
.about-design-page .about-hero img,
.projects-design-page .projects-hero img,
.news-design-page .news-hero img {
  filter: none !important;
}

.home-development-page .page-hero.pdf-hero::after,
.home-development-page .single-project-hero.pdf-hero::after,
.about-design-page .about-hero::after,
.projects-design-page .projects-hero::after,
.news-design-page .news-hero::after {
  background: transparent !important;
}

.home-development-page .page-hero h1,
.home-development-page .single-project-hero h1,
.about-design-page .about-hero h1,
.projects-design-page .projects-hero h1,
.news-design-page .news-hero h1 {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78), 0 0 2px rgba(0, 0, 0, 0.92);
}

.single-project-page .single-project-hero.pdf-hero {
  height: 100vh;
  min-height: 720px;
  background: #0d2634;
}

.single-project-page .single-project-hero.pdf-hero > img,
.single-project-page .single-project-hero.pdf-hero > video {
  object-position: center center;
}

.single-project-page .single-project-hero.pdf-hero.is-video-playing::after {
  opacity: 0;
}

.single-project-page .single-project-hero.pdf-hero.is-video-playing > video {
  filter: none;
}

.single-project-page .single-project-hero .page-hero-content {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0 clamp(54px, 7vh, 96px);
  display: flex;
  align-items: flex-end;
}

.single-project-page .single-project-hero h1 {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  color: var(--white);
  font-size: clamp(34px, 2.6vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.single-project-page .single-project-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: min(100%, 210px);
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.single-project-page .single-project-play {
  width: clamp(70px, 6vw, 96px);
  height: clamp(70px, 6vw, 96px);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.28s ease;
}

.single-project-page .single-project-hero.is-video-complete .single-project-play {
  opacity: 1;
  pointer-events: auto;
}

.single-project-page .single-project-play::before {
  left: 50%;
  top: 50%;
  border-top-width: clamp(18px, 1.7vw, 28px);
  border-bottom-width: clamp(18px, 1.7vw, 28px);
  border-left-width: clamp(28px, 2.5vw, 42px);
  transform: translate(-38%, -50%);
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.34));
}

.single-project-page .single-project-play:hover {
  background: transparent;
  transform: translate(-50%, -50%) scale(1.08);
}

.single-project-page .single-project-intro.kpd-section {
  padding-top: clamp(48px, 5.2vw, 78px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.single-project-page .single-project-intro-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.96fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.single-project-page .single-project-intro-copy h1 {
  font-size: clamp(48px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.single-project-page .single-project-intro-copy p {
  max-width: 650px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.single-project-page .single-project-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px;
  max-width: 540px;
  margin-top: clamp(24px, 3vw, 40px);
}

.single-project-page .single-project-actions .btn-pill {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  font-size: 11px;
}

.single-project-page .single-project-intro-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #f4f1ec;
}

.single-project-page .single-project-intro-media img {
  width: 100%;
  height: clamp(240px, 22vw, 330px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.single-project-page .single-project-intro-media:hover img {
  transform: scale(1.035);
}

.single-project-page .single-project-render-banner {
  width: var(--container);
  height: min(704px, 46vw);
  min-height: 520px;
  margin: clamp(52px, 6vw, 92px) auto clamp(92px, 8vw, 126px);
  border-radius: 20px;
}

.single-project-page .single-project-render-banner::after {
  background: rgba(0, 0, 0, 0.34);
}

.single-project-page .single-project-render-banner .pdf-development-content h2 {
  font-size: clamp(72px, 7vw, 110px);
  line-height: 1.1;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.52);
}

.single-project-page .section-villa23-travel-timeline {
  padding: clamp(58px, 6.5vw, 104px) 0 clamp(76px, 7.6vw, 124px);
  background: #fff;
}

.single-project-page .villa23-travel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(38px, 7vw, 128px);
  align-items: start;
  margin-bottom: clamp(32px, 3.5vw, 52px);
}

.single-project-page .villa23-travel-head h2 {
  text-transform: none;
  font-size: clamp(48px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.single-project-page .villa23-travel-head p {
  max-width: 650px;
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.single-project-page .villa23-travel-shell {
  width: var(--container);
  margin: 0 auto;
  overflow: visible;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.single-project-page .villa23-travel-timeline-wrap {
  width: min(72%, 1080px);
  margin: 0 auto;
  padding: clamp(44px, 4vw, 64px) 0 clamp(18px, 2vw, 28px);
}

.single-project-page .villa23-travel-label {
  bottom: clamp(44px, 3.5vw, 58px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.single-project-page .villa23-travel-dot {
  width: 24px;
  height: 24px;
  border-width: 5px;
}

.single-project-page .single-project-location .villa23-travel-car {
  top: clamp(12px, 1.6vw, 22px);
  width: clamp(56px, 5vw, 86px) !important;
}

.single-project-page .villa23-travel-map-area {
  min-height: clamp(430px, 46vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  background: #f3f3f0;
}

.single-project-page .villa23-travel-map {
  filter: grayscale(1) saturate(0) contrast(1.06) brightness(1.03);
  transition: opacity 280ms ease;
}

.single-project-page .villa23-travel-map.is-changing {
  opacity: 0.45;
}

@media (max-width: 980px) {
  .single-project-page .single-project-intro-grid,
  .single-project-page .villa23-travel-head {
    grid-template-columns: 1fr;
  }

  .single-project-page .single-project-intro-media img {
    height: clamp(300px, 52vw, 460px);
  }
}

@media (max-width: 767px) {
  .single-project-page .single-project-hero.pdf-hero {
    height: 100svh;
    min-height: 560px;
  }

  .single-project-page .single-project-intro-copy h1,
  .single-project-page .villa23-travel-head h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .single-project-page .single-project-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .single-project-page .single-project-render-banner {
    width: calc(100% - 42px);
    height: 260px;
    min-height: 260px;
    margin-top: 50px;
    margin-bottom: 58px;
    border-radius: 10px;
  }

  .single-project-page .villa23-travel-shell,
  .single-project-page .villa23-travel-head {
    width: 88%;
  }

  .single-project-page .villa23-travel-timeline-wrap {
    width: 100%;
  }

  .single-project-page .villa23-travel-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

/* Contact PDF page */
.contact-page {
  background: #fff;
}

.contact-main {
  background: #fff;
  color: #000;
}

.contact-page .floating-contact {
  display: none;
}

.contact-inquiry {
  min-height: auto;
  padding: clamp(96px, 7vw, 128px) 0 clamp(58px, 6vw, 92px);
  background: #fff;
  color: #000;
}

.contact-inquiry-shell {
  width: min(1510px, calc(100% - clamp(110px, 15vw, 260px)));
  margin: 0 auto;
}

.contact-inquiry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 0;
}

.contact-inquiry-tabs button {
  appearance: none;
  min-width: 0;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.contact-inquiry-tabs button:hover,
.contact-inquiry-tabs button:focus-visible,
.contact-inquiry-tabs button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 700;
}

.contact-inquiry-intro {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(42px, 4.5vw, 66px);
  text-align: center;
}

.contact-inquiry-intro span {
  width: 7px;
  height: 7px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #000;
}

.contact-inquiry-intro p {
  max-width: 760px;
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 400;
  line-height: 1.35;
}

.contact-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1fr);
  gap: clamp(32px, 4.6vw, 72px);
  align-items: start;
}

.contact-map-column {
  display: grid;
  gap: clamp(18px, 1.6vw, 26px);
}

.contact-map-card {
  position: relative;
  min-height: clamp(364px, 29vw, 434px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: clamp(24px, 2vw, 36px);
  background: #e8e8e8;
}

.contact-map-card img {
  position: absolute;
  inset: -120px 0 auto;
  width: 100%;
  height: calc(100% + 120px);
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: 50% 100%;
  filter: grayscale(1) contrast(1.02) brightness(1.05);
}

.contact-inquiry-panel {
  padding-top: 4px;
}

.contact-address {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #000;
  font-style: normal;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
}

.contact-address strong {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-address a {
  color: inherit;
  font-weight: 300;
  line-height: 1.55;
  text-decoration: none;
}

.contact-address a:first-of-type {
  margin-top: clamp(12px, 1.4vw, 20px);
}

.contact-address a:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-dark-form {
  color: rgba(0, 0, 0, 0.82);
}

.contact-adaptive-form {
  display: grid;
  gap: 14px;
}

.contact-form-subtitle {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: #000;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-form-subtitle span {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.46);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-adaptive-row {
  display: grid;
  gap: 14px;
}

.contact-adaptive-row-three {
  grid-template-columns: 0.55fr 1fr 1fr;
}

.contact-adaptive-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-adaptive-field {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: #000;
}

.contact-adaptive-field > span:first-child,
.contact-file-label {
  color: rgba(0, 0, 0, 0.52);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-adaptive-field input,
.contact-adaptive-field select,
.contact-adaptive-field textarea {
  width: 100%;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  outline: none;
  border-radius: 0;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
  transition: border-color 0.24s ease;
}

.contact-adaptive-field input:focus,
.contact-adaptive-field select:focus,
.contact-adaptive-field textarea:focus {
  border-bottom-color: #000;
}

.contact-adaptive-field input::placeholder,
.contact-adaptive-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.44);
  opacity: 1;
}

.contact-adaptive-field textarea {
  min-height: 70px;
  padding-top: 7px;
  resize: vertical;
}

.contact-phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-phone-input input {
  flex: 1;
}

.contact-pane {
  display: grid;
  gap: 14px;
}

.contact-pane[hidden] {
  display: none;
}

.contact-segment {
  width: fit-content;
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 999px;
  background: #fff;
}

.contact-segment button {
  min-width: 116px;
  min-height: 32px;
  padding: 7px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.58);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-segment button.is-active,
.contact-segment button:hover {
  background: #000;
  color: #fff;
}

.sales-broker.is-hidden {
  display: none;
}

.contact-filebox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 16px;
  align-items: end;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.contact-filebox .contact-file-label {
  grid-column: 1 / -1;
}

.contact-filebox b {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-filebox input {
  display: none;
}

.contact-radio-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.78);
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
}

.contact-radio-row label,
.contact-consents label {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-radio-row input,
.contact-consents input {
  appearance: none;
  flex: 0 0 auto;
  margin: 0;
  border: 2px solid #000;
  background: transparent;
}

.contact-radio-row input {
  width: 17px;
  height: 17px;
  border-radius: 999px;
}

.contact-radio-row input:checked {
  box-shadow: inset 0 0 0 4px #fff;
  background: #000;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.48fr repeat(5, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: end;
}

.contact-field {
  min-width: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.contact-field select {
  color: rgba(0, 0, 0, 0.72);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.52);
  opacity: 1;
}

.contact-field-title {
  grid-column: 1;
}

.contact-field-first {
  grid-column: 2 / 4;
}

.contact-field-last {
  grid-column: 4 / 7;
}

.contact-field-email {
  grid-column: 1 / 4;
}

.contact-field-phone {
  display: flex;
  gap: 8px;
  align-items: center;
  grid-column: 4 / 6;
}

.contact-phone-prefix {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
  color: #000;
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  white-space: nowrap;
}

.contact-flag {
  position: relative;
  width: 20px;
  height: 12px;
  display: inline-block;
  overflow: hidden;
  border-radius: 1px;
  background: linear-gradient(to bottom, #009a44 0 33.33%, #fff 33.33% 66.66%, #000 66.66% 100%);
}

.contact-flag::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #f00;
}

.contact-verify {
  grid-column: 6;
  min-height: 24px;
  padding: 0 22px;
  border: 1px solid rgba(0, 0, 0, 0.52);
  border-radius: 999px;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-verify:hover {
  background: #000;
  color: #fff;
}

.contact-field-message {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.contact-field-message textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-consents {
  display: grid;
  gap: 12px;
  margin: 12px 0 clamp(18px, 2vw, 28px);
  max-width: 780px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
}

.contact-consents input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border-width: 1px;
  border-radius: 0;
}

.contact-consents input:checked {
  background: #000;
}

.contact-consents a {
  color: #000;
  font-weight: 600;
}

.contact-submit {
  width: min(310px, 100%);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.contact-submit:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .contact-inquiry-tabs {
    gap: 10px;
  }

  .contact-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    min-height: 294px;
  }
}

@media (max-width: 720px) {
  .contact-inquiry {
    padding-top: 108px;
  }

  .contact-inquiry-shell {
    width: calc(100% - 36px);
  }

  .contact-inquiry-tabs {
    gap: 8px;
  }

  .contact-inquiry-tabs button {
    height: 36px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-adaptive-row-three,
  .contact-adaptive-row-two {
    grid-template-columns: 1fr;
  }

  .contact-segment {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-segment button {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-filebox {
    grid-template-columns: 1fr;
  }

  .contact-field-wide,
  .contact-field-first,
  .contact-field-last,
  .contact-field-email,
  .contact-field-phone,
  .contact-field-message {
    grid-column: auto;
  }

  .contact-field-phone {
    align-items: flex-end;
  }

  .contact-map-card {
    min-height: 266px;
  }

  .contact-submit {
    width: 100%;
  }
}

/* Reference footer template */
.home-development-page .section_footer,
.section_footer {
  background: #000;
  color: #fff;
  padding: clamp(128px, 14vw, 178px) 0 clamp(48px, 4.8vw, 66px);
}

.home-development-page .footer_container,
.footer_container {
  width: var(--container);
  margin: 0 auto;
}

.home-development-page .footer_header,
.footer_header {
  min-height: clamp(208px, 16vw, 288px);
  padding: 0 0 clamp(86px, 8vw, 116px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-development-page .footer_logo_link,
.footer_logo_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-development-page .footer_logo,
.footer_logo {
  width: min(334px, 48vw);
  height: auto;
  opacity: 0.78;
}

.home-development-page .footer_links,
.footer_links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.36fr);
  gap: clamp(70px, 8.5vw, 146px);
}

.home-development-page .footer_container > .footer_links,
.footer_container > .footer_links {
  padding: clamp(74px, 7vw, 104px) 0 clamp(78px, 7vw, 108px);
}

.home-development-page .footer_links_col_container,
.footer_links_col_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 132px);
}

.home-development-page .footer_links_col,
.home-development-page .footer_links_newsletter,
.footer_links_col,
.footer_links_newsletter {
  min-width: 0;
}

.home-development-page .footer_links_title,
.footer_links_title {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-development-page .footer_links_list,
.home-development-page .footer_links_row,
.footer_links_list,
.footer_links_row {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-development-page .footer_links_list,
.footer_links_list {
  display: grid;
  gap: 18px;
}

.home-development-page .footer_link,
.home-development-page .footer_newsletter_terms,
.home-development-page .footer_legal_text,
.footer_link,
.footer_newsletter_terms,
.footer_legal_text {
  color: rgba(180, 189, 194, 0.78);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.35;
}

.home-development-page .footer_link,
.footer_link {
  display: inline-flex;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.home-development-page .footer_link:hover,
.home-development-page .footer_newsletter_terms a:hover,
.footer_link:hover,
.footer_newsletter_terms a:hover {
  color: #fff;
}

.home-development-page .footer_form_block,
.footer_form_block {
  margin-top: 8px;
}

.home-development-page .footer_form,
.footer_form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.home-development-page .input-text,
.input-text {
  width: 100%;
  min-height: 48px;
  padding: 0 16px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(15px, 1vw, 18px);
  outline: 0;
}

.home-development-page .input-text::placeholder,
.input-text::placeholder {
  color: rgba(180, 189, 194, 0.34);
  opacity: 1;
}

.home-development-page .button_submit,
.button_submit {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.24s ease;
}

.home-development-page .button_submit:hover,
.button_submit:hover {
  opacity: 0.62;
}

.home-development-page .footer_newsletter_terms,
.footer_newsletter_terms {
  max-width: 530px;
  margin-top: 24px;
  color: rgba(180, 189, 194, 0.72);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.55;
}

.home-development-page .footer_newsletter_terms a,
.footer_newsletter_terms a {
  color: rgba(220, 227, 230, 0.9);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-development-page .footer_legal_social.footer_links,
.footer_legal_social.footer_links {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  margin-top: 0;
  padding-top: clamp(40px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
}

.home-development-page .footer_legal_left,
.footer_legal_left {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 74px);
  min-width: 0;
}

.home-development-page .footer_links_row,
.footer_links_row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 2.6vw, 42px);
}

.home-development-page .footer_links_social,
.footer_links_social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-development-page .icon-social-link-block,
.icon-social-link-block {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.home-development-page .icon-social-link-block:hover,
.home-development-page .icon-social-link-block:focus-visible,
.icon-social-link-block:hover,
.icon-social-link-block:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  color: #000;
  background: #fff;
  transform: none;
}

.home-development-page .icon-socials,
.icon-socials {
  display: grid;
  place-items: center;
}

.home-development-page .icon-socials svg,
.icon-socials svg {
  display: block;
}

.home-development-page .footer_legal_social .footer_link,
.home-development-page .footer_legal_social .footer_legal_text,
.footer_legal_social .footer_link,
.footer_legal_social .footer_legal_text {
  color: rgba(180, 189, 194, 0.78);
  font-size: clamp(15px, 0.95vw, 17px);
  font-weight: 400;
  line-height: 46px;
}

.home-development-page .footer_legal_text,
.footer_legal_text {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .home-development-page .footer_links,
  .footer_links {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-development-page .footer_legal_social.footer_links,
  .footer_legal_social.footer_links {
    grid-template-columns: 1fr;
  }

  .home-development-page .footer_legal_text,
  .footer_legal_text {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .home-development-page .section_footer,
  .section_footer {
    padding-top: 82px;
  }

  .home-development-page .footer_header,
  .footer_header {
    min-height: 150px;
    padding-bottom: 54px;
  }

  .home-development-page .footer_logo,
  .footer_logo {
    width: min(272px, 76vw);
  }

  .home-development-page .footer_container > .footer_links,
  .footer_container > .footer_links {
    padding: 52px 0 58px;
  }

  .home-development-page .footer_links_col_container,
  .footer_links_col_container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-development-page .footer_legal_left,
  .footer_legal_left {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .home-development-page .footer_legal_social .footer_link,
  .home-development-page .footer_legal_social .footer_legal_text,
  .footer_legal_social .footer_link,
  .footer_legal_social .footer_legal_text {
    line-height: 1.4;
  }
}

/* Cross-page alignment cleanup */
.news-design-page .news-updates .news-grid {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-page .contact-inquiry-shell {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
}

.contact-page .contact-inquiry-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  margin-top: clamp(22px, 2vw, 32px);
}

@media (max-width: 1100px) {
  .contact-page .contact-inquiry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-inquiry-shell {
    width: calc(100% - 36px);
    max-width: none;
  }
}

/* Compact global footer */
.home-development-page .section_footer,
.section_footer {
  padding: clamp(28px, 3vw, 44px) 0 0;
}

.home-development-page .footer_header,
.footer_header {
  min-height: clamp(82px, 6vw, 104px);
  padding-bottom: clamp(18px, 2vw, 28px);
}

.home-development-page .footer_logo,
.footer_logo {
  width: min(270px, 42vw);
}

.home-development-page .footer_links,
.footer_links {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(36px, 5vw, 78px);
}

.home-development-page .footer_container > .footer_links,
.footer_container > .footer_links {
  padding: clamp(34px, 3.8vw, 52px) 0 clamp(30px, 3.4vw, 46px);
}

.home-development-page .footer_links_col_container,
.footer_links_col_container {
  gap: clamp(30px, 4vw, 72px);
}

.home-development-page .footer_links_title,
.footer_links_title {
  margin-bottom: 14px;
  font-size: clamp(13px, 0.85vw, 15px);
  letter-spacing: 0.1em;
}

.home-development-page .footer_links_list,
.footer_links_list {
  gap: 8px;
}

.home-development-page .footer_link,
.home-development-page .footer_newsletter_terms,
.home-development-page .footer_legal_text,
.footer_link,
.footer_newsletter_terms,
.footer_legal_text {
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.28;
}

.home-development-page .input-text,
.input-text,
.home-development-page .button_submit,
.button_submit {
  min-height: 38px;
  font-size: 13px;
}

.home-development-page .footer_newsletter_terms,
.footer_newsletter_terms {
  max-width: 460px;
  margin-top: 14px;
  font-size: clamp(11px, 0.75vw, 13px);
  line-height: 1.45;
}

.home-development-page .footer_legal_social.footer_links,
.footer_legal_social.footer_links {
  gap: 22px;
  padding-top: clamp(18px, 2vw, 28px);
  padding-bottom: 0;
}

.home-development-page .footer_legal_social.motion-reveal,
.footer_legal_social.motion-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.home-development-page .footer_legal_left,
.footer_legal_left {
  gap: clamp(24px, 3vw, 42px);
}

.home-development-page .footer_links_row,
.footer_links_row {
  gap: 14px clamp(18px, 2vw, 28px);
}

.home-development-page .footer_links_social,
.footer_links_social {
  gap: 10px;
}

.home-development-page .icon-social-link-block,
.icon-social-link-block {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.home-development-page .footer_legal_social .footer_link,
.home-development-page .footer_legal_social .footer_legal_text,
.footer_legal_social .footer_link,
.footer_legal_social .footer_legal_text {
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 34px;
}

@media (max-width: 1080px) {
  .home-development-page .footer_links,
  .footer_links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-development-page .footer_legal_social.footer_links,
  .footer_legal_social.footer_links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .home-development-page .section_footer,
  .section_footer {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .home-development-page .footer_header,
  .footer_header {
    min-height: 82px;
    padding-bottom: 18px;
  }

  .home-development-page .footer_logo,
  .footer_logo {
    width: min(230px, 72vw);
  }

  .home-development-page .footer_container > .footer_links,
  .footer_container > .footer_links {
    padding: 30px 0 28px;
  }

  .home-development-page .footer_legal_social.footer_links,
  .footer_legal_social.footer_links {
    padding-bottom: 0;
  }

  .home-development-page .footer_links_col_container,
  .footer_links_col_container {
    gap: 26px;
  }

  .home-development-page .footer_links_newsletter,
  .footer_links_newsletter,
  .home-development-page .footer_form_block,
  .footer_form_block,
  .home-development-page .footer_form,
  .footer_form,
  .home-development-page .footer_newsletter_terms,
  .footer_newsletter_terms {
    width: 100%;
    max-width: 100%;
  }

  .home-development-page .footer_legal_left,
  .footer_legal_left {
    gap: 18px;
  }

  .home-development-page .footer_legal_social .footer_link,
  .home-development-page .footer_legal_social .footer_legal_text,
  .footer_legal_social .footer_link,
  .footer_legal_social .footer_legal_text {
    line-height: 1.35;
  }
}

@media (max-width: 767px) {
  .home-development-page .pdf-vertical-gallery.pdf-gallery-flex,
  .single-project-page .single-project-amenities-gallery {
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .home-development-page .pdf-gallery-flex .pdf-gallery-panel,
  .home-development-page .pdf-gallery-flex.has-active .pdf-gallery-panel,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel.is-active,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:hover,
  .home-development-page .pdf-gallery-flex .pdf-gallery-panel:focus-visible,
  .home-development-page .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel,
  .home-development-page .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel,
  .home-development-page .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:hover) .pdf-gallery-panel:hover,
  .home-development-page .pdf-vertical-gallery.pdf-gallery-flex:has(.pdf-gallery-panel:focus-visible) .pdf-gallery-panel:focus-visible {
    flex: 0 0 min(74vw, 300px);
    max-width: min(74vw, 300px);
  }

  .villa23-travel-step:first-of-type .villa23-travel-label {
    left: 0;
    transform: none;
  }

  .villa23-travel-step:first-of-type.is-active .villa23-travel-label {
    transform: translateY(-4px);
  }

  .villa23-travel-step:last-of-type .villa23-travel-label {
    right: 0;
    left: auto;
    transform: none;
  }

  .villa23-travel-step:last-of-type.is-active .villa23-travel-label {
    transform: translateY(-4px);
  }
}

/* Legacy page */
.legacy-design-page .legacy-hero > img {
  filter: none !important;
  object-position: center;
}

.legacy-design-page .legacy-hero::after {
  background: transparent !important;
}

.legacy-design-page .legacy-hero h1 {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78), 0 0 2px rgba(0, 0, 0, 0.92);
}

.legacy-main {
  background: var(--white);
  color: var(--black);
}

.legacy-intro-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: stretch;
}

.legacy-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: clamp(480px, 42vw, 690px);
}

.legacy-intro-copy h2,
.legacy-timeline-head h2 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 94px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.legacy-intro-copy p,
.legacy-timeline-head p,
.legacy-timeline-body p,
.legacy-summary-copy span {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.legacy-intro-media {
  min-height: clamp(480px, 42vw, 690px);
  overflow: hidden;
  border-radius: 20px;
  background: #f1f1f1;
}

.legacy-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.legacy-intro-media:hover img {
  transform: scale(1.035);
}

.legacy-timeline-section {
  padding-top: clamp(34px, 4vw, 68px);
}

.legacy-timeline-head {
  width: var(--container);
  margin: 0 auto clamp(46px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: end;
}

.legacy-timeline-head p {
  max-width: 720px;
  justify-self: end;
}

.legacy-timeline {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
}

.legacy-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}

.legacy-timeline-item {
  position: relative;
  width: calc(50% - clamp(18px, 3vw, 52px));
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.legacy-timeline-item::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--white);
}

.legacy-timeline-item.is-left {
  justify-self: start;
}

.legacy-timeline-item.is-left::before {
  right: calc(clamp(18px, 3vw, 52px) * -1 - 7px);
}

.legacy-timeline-item.is-right {
  justify-self: end;
}

.legacy-timeline-item.is-right::before {
  left: calc(clamp(18px, 3vw, 52px) * -1 - 7px);
}

.legacy-timeline-item:hover,
.legacy-timeline-item:focus-within,
.legacy-timeline-item.is-expanded {
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.motion-js:not(.motion-reduced) .legacy-timeline-item.motion-reveal.is-revealed:hover,
.motion-js:not(.motion-reduced) .legacy-timeline-item.motion-reveal.is-revealed:focus-within,
.motion-js:not(.motion-reduced) .legacy-timeline-item.motion-reveal.is-revealed.is-expanded {
  transform: translateY(-3px);
}

.legacy-timeline-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 0.22fr) minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 38px);
  align-items: start;
  padding: clamp(24px, 3vw, 44px);
  cursor: pointer;
  list-style: none;
}

.legacy-timeline-item summary::-webkit-details-marker {
  display: none;
}

.legacy-year {
  color: var(--black);
  font-size: clamp(21px, 2.2vw, 42px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
}

.legacy-summary-copy {
  display: grid;
  gap: 12px;
}

.legacy-summary-copy strong {
  color: var(--black);
  font-size: clamp(21px, 2vw, 34px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.legacy-timeline-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(18px, 2.3vw, 34px);
  padding: 0 clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px);
}

.legacy-timeline-body img {
  width: 100%;
  aspect-ratio: 1.22;
  border-radius: 16px;
  object-fit: cover;
  background: #f4f4f4;
}

.legacy-timeline-body p {
  align-self: center;
}

.legacy-timeline-item:not([open]) .legacy-timeline-body {
  display: none;
}

.legacy-timeline-item.legacy-smooth-ready .legacy-timeline-body {
  display: grid;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition:
    height 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    padding-bottom 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.legacy-timeline-item.legacy-smooth-ready.is-expanded .legacy-timeline-body {
  opacity: 1;
  padding-bottom: clamp(24px, 3vw, 44px);
}

.home-development-page .development-site-header .header-nav {
  gap: clamp(30px, 4.2vw, 72px);
}

.home-development-page .development-site-header .header-right-cluster {
  gap: clamp(30px, 4vw, 62px);
}

/* Final shared header sizing contract */
.home-development-page .development-site-header,
.home-development-page .development-site-header.is-past-hero {
  height: var(--header-h);
  min-height: var(--header-h);
  max-height: var(--header-h);
}

.home-development-page .development-site-header .header-wrap {
  height: var(--header-h);
  min-height: var(--header-h);
  max-height: var(--header-h);
  padding-top: 0;
  padding-bottom: 0;
}

.home-development-page .development-site-header .brand-link {
  top: calc(var(--header-h) / 2);
}

.home-development-page .development-site-header .brand-logo {
  width: 220px;
  height: 44px;
}

.home-development-page .development-site-header .header-nav a {
  font-size: 14px;
  line-height: 1;
}

.home-development-page .development-site-header .header-book-call {
  min-width: 172px;
  min-height: 38px;
  padding: 9px 18px;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 767px) {
  .home-development-page .development-site-header .brand-logo {
    width: 178px;
    height: 38px;
  }

  .home-development-page .development-site-header .header-book-call {
    min-width: 136px;
    min-height: 36px;
    padding: 8px 13px;
    font-size: 11px;
    line-height: 12px;
  }
}

@media (max-width: 520px) {
  .home-development-page .development-site-header .brand-logo {
    width: 88px;
    height: 26px;
  }

  .home-development-page .development-site-header .header-book-call {
    width: 128px;
    min-width: 128px;
    max-width: 128px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .brand-logo {
    width: 78px;
    height: 24px;
  }

  .home-development-page .development-site-header .header-book-call {
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    font-size: 8.5px;
  }
}

/* Clean white benchmark menu */
.menu-panel {
  position: fixed !important;
  inset: 0 0 0 auto !important;
  width: min(100vw, 430px) !important;
  min-width: 0 !important;
  height: 100svh !important;
  max-height: none !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: #fff !important;
  color: #111 !important;
  border-radius: 0 !important;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: -18px 0 58px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%) !important;
  transition: transform 0.42s cubic-bezier(0.2, 0.72, 0.22, 1), opacity 0.28s ease, visibility 0.28s ease !important;
}

.menu-panel.open,
body.menu-open .menu-panel.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.menu-panel::before,
.menu-panel::after {
  display: none !important;
}

.menu-panel .menu-inner,
.menu-inner {
  width: 100% !important;
  min-height: 100%;
  padding: clamp(78px, 11vh, 110px) clamp(30px, 5vw, 44px) 48px !important;
  display: block !important;
  text-align: left !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.menu-panel .menu-list,
.menu-list {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  list-style: none !important;
}

.menu-panel .menu-list > .menu-item,
.menu-panel .menu-list > .menu-item.has-sub {
  margin: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-panel .menu-list > .menu-item > a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-family: var(--font-main) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transform: none !important;
  transition: color 0.2s ease, opacity 0.2s ease !important;
}

.menu-panel .menu-list > .menu-item.has-sub > a::after {
  content: "" !important;
  display: block !important;
  width: 9px !important;
  height: 9px !important;
  margin-left: 24px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: transparent !important;
  opacity: 1 !important;
  transform: translateY(-2px) rotate(45deg) !important;
  transform-origin: center !important;
  transition: transform 0.22s ease !important;
}

.menu-panel .menu-list > .menu-item.has-sub.is-open > a::after {
  transform: translateY(2px) rotate(-135deg) !important;
}

.menu-panel .menu-list a:hover,
.menu-panel .menu-list a:focus-visible,
.menu-panel .menu-sublist a:hover,
.menu-panel .menu-sublist a:focus-visible {
  color: #000 !important;
  opacity: 0.62 !important;
  transform: none !important;
}

.menu-panel .menu-sublist {
  display: grid !important;
  grid-template-rows: 0fr;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  transition: grid-template-rows 0.28s ease, padding-bottom 0.28s ease !important;
}

.menu-panel .menu-item.has-sub.is-open > .menu-sublist {
  grid-template-rows: 1fr;
  padding-bottom: 16px !important;
}

.menu-panel .menu-sublist > li {
  min-height: 0;
  overflow: hidden;
}

.menu-panel .menu-sublist a,
.menu-panel .menu-list li:nth-child(n + 8) a {
  display: block !important;
  width: 100% !important;
  min-height: 32px !important;
  padding: 2px 0 2px 18px !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font-family: var(--font-main) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transform: none !important;
}

.menu-panel .social-list,
.menu-panel .menu-email {
  display: none !important;
}

.menu-close {
  left: auto !important;
  right: 28px !important;
  top: 26px !important;
  z-index: 4 !important;
  width: 34px !important;
  height: 34px !important;
  opacity: 1 !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
}

.menu-close::before,
.menu-close::after {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  top: 5px !important;
  width: 1.5px !important;
  height: 24px !important;
  background: #111 !important;
  border-radius: 999px;
}

.menu-close::before {
  transform: rotate(45deg) !important;
}

.menu-close::after {
  transform: rotate(-45deg) !important;
}

@media (max-width: 520px) {
  .menu-panel {
    width: 100vw !important;
    box-shadow: none;
  }

  .menu-panel .menu-inner,
  .menu-inner {
    padding: 74px 42px 42px !important;
  }

  .menu-panel .menu-list > .menu-item > a {
    min-height: 52px !important;
    font-size: 12px !important;
    letter-spacing: 0.15em !important;
  }
}

@media (max-width: 767px) {
  .home-development-page .development-site-header .header-book-call,
  .home-development-page .development-site-header.is-past-hero .header-book-call {
    box-sizing: border-box !important;
    width: 128px !important;
    min-width: 128px !important;
    max-width: 128px !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 8px !important;
    font-size: 9px !important;
    line-height: 12px !important;
    white-space: nowrap !important;
  }

  .booking-widget-launcher {
    right: 16px !important;
    bottom: 134px !important;
    min-width: 86px !important;
    min-height: 38px !important;
  }

  .go-top {
    right: 16px !important;
    bottom: 78px !important;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .header-book-call,
  .home-development-page .development-site-header.is-past-hero .header-book-call {
    width: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    font-size: 8.5px !important;
  }
}

.menu-panel .menu-list > .menu-item.has-sub > a::after {
  position: static !important;
  inset: auto !important;
  flex: 0 0 9px !important;
}

.menu-panel .menu-sublist {
  display: block !important;
  max-height: 0 !important;
  opacity: 0;
  padding-bottom: 0 !important;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding-bottom 0.28s ease !important;
}

.menu-panel .menu-item.has-sub.is-open > .menu-sublist {
  max-height: 180px !important;
  opacity: 1;
  padding-bottom: 16px !important;
}

@media (max-width: 767px) {
  .home-development-page .development-site-header .header-book-call,
  .home-development-page .development-site-header.is-past-hero .header-book-call {
    box-sizing: border-box !important;
    width: 128px !important;
    min-width: 128px !important;
    max-width: 128px !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 8px !important;
    font-size: 9px !important;
    line-height: 12px !important;
    white-space: nowrap !important;
  }

  .booking-widget-launcher {
    right: 16px !important;
    bottom: 134px !important;
    min-width: 86px !important;
    min-height: 38px !important;
  }

  .go-top {
    right: 16px !important;
    bottom: 78px !important;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .header-book-call,
  .home-development-page .development-site-header.is-past-hero .header-book-call {
    width: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    font-size: 8.5px !important;
  }
}

.home-development-page .development-pdf-home > .pdf-hero {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
}

@media (max-width: 1024px) {
  .legacy-intro-grid,
  .legacy-timeline-head {
    grid-template-columns: 1fr;
  }

  .legacy-intro-copy,
  .legacy-intro-media {
    min-height: auto;
  }

  .legacy-intro-media {
    aspect-ratio: 16 / 10;
  }

  .legacy-timeline-head p {
    justify-self: start;
  }

  .legacy-timeline::before {
    left: 8px;
  }

  .legacy-timeline-item {
    width: calc(100% - 32px);
    justify-self: end !important;
  }

  .legacy-timeline-item.is-left::before,
  .legacy-timeline-item.is-right::before {
    left: -31px;
    right: auto;
  }
}

@media (max-width: 767px) {
  .legacy-intro-grid,
  .legacy-timeline-head,
  .legacy-timeline {
    width: calc(100% - 42px);
  }

  .legacy-intro-copy h2,
  .legacy-timeline-head h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .legacy-timeline-body,
  .legacy-timeline-item summary {
    grid-template-columns: 1fr;
  }

  .legacy-timeline-body img {
    aspect-ratio: 16 / 10;
  }
}

/* Standalone two-image hero spacing mirrors the Developments page */
.about-main.projects-collection-main > .projects-collection-shell:first-child,
.legacy-main.projects-collection-main > .projects-collection-shell:first-child,
.news-main.projects-collection-main > .projects-collection-shell:first-child {
  padding-bottom: 0;
}

.about-main.projects-collection-main > .projects-collection-shell:first-child + .about-story,
.legacy-main.projects-collection-main > .projects-collection-shell:first-child + .legacy-timeline-section,
.news-main.projects-collection-main > .projects-collection-shell:first-child + .news-feature {
  padding-top: clamp(86px, 9vw, 122px);
}

@media (max-width: 767px) {
  .about-main.projects-collection-main > .projects-collection-shell:first-child + .about-story,
  .legacy-main.projects-collection-main > .projects-collection-shell:first-child + .legacy-timeline-section,
  .news-main.projects-collection-main > .projects-collection-shell:first-child + .news-feature {
    padding-top: 58px;
  }
}

/* Live internet news feed */
.live-news-section {
  background: var(--white);
  color: var(--black);
}

.news-live-head {
  width: var(--container);
  margin: 0 auto clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: end;
}

.news-live-head h2 {
  max-width: 960px;
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 5vw, 86px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0;
}

.news-live-controls {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.news-live-head--compact {
  grid-template-columns: 1fr;
  margin-bottom: clamp(18px, 2.4vw, 34px);
}

.news-live-head--compact .news-live-controls {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  align-items: center;
}

.news-live-controls span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.news-live-refresh {
  width: 100%;
}

.news-keyword-strip {
  width: var(--container);
  margin: 0 auto clamp(26px, 3.2vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-keyword-strip span {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 9px 15px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
  line-height: 1;
}

.live-news-grid {
  align-items: stretch;
}

.live-news-card {
  min-height: clamp(500px, 40vw, 650px);
}

.live-news-card--no-image {
  background: #0f0f0f;
  color: var(--white);
}

.news-card.live-news-card--no-image,
.feature-card.live-news-card--no-image {
  display: flex;
  min-height: 360px;
  align-items: flex-end;
}

.news-card.live-news-card--no-image .news-card-body,
.feature-card.live-news-card--no-image .feature-card-body {
  color: var(--white);
}

.live-news-card .kpd-card-date {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.live-news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-item h3,
.news-card h3,
.feature-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.live-news-card p {
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card-item p,
.news-card p,
.feature-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.live-news-card .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-card-link {
  text-decoration: none;
}

.live-news-empty {
  width: var(--container);
  margin: 32px auto 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  padding: 28px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 16px;
}

.live-news-card--loading {
  background: #eeeeee;
  color: transparent;
  pointer-events: none;
}

.live-news-card--loading::after {
  background: linear-gradient(100deg, #ececec 0%, #f7f7f7 44%, #ececec 88%);
  animation: kpd-live-news-loading 1.4s ease-in-out infinite;
}

.live-news-card--loading .kpd-card-content > * {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.live-news-card--loading .kpd-card-content span {
  width: 40%;
  height: 12px;
  margin-bottom: 18px;
}

.live-news-card--loading .kpd-card-content h3 {
  width: 76%;
  height: 42px;
  margin-bottom: 18px;
}

.live-news-card--loading .kpd-card-content p {
  width: 92%;
  height: 78px;
  margin-bottom: 18px;
}

.live-news-card--loading .kpd-card-content i {
  width: 100%;
  height: 46px;
}

@keyframes kpd-live-news-loading {
  0%,
  100% {
    opacity: 0.74;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .news-live-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-live-head--compact .news-live-controls {
    grid-template-columns: 1fr;
  }

  .news-live-controls {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .news-live-head,
  .news-keyword-strip,
  .live-news-empty {
    width: 88%;
  }

  .news-live-head h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .live-news-card {
    min-height: 420px;
  }
}

/* Editorial article detail pages */
.article-page {
  background: var(--white);
  color: var(--black);
}

.article-main {
  background: var(--white);
  color: var(--black);
  padding-top: calc(var(--header-h) + clamp(44px, 5.5vw, 72px));
}

.article-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(90px, 10vw, 150px);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(38px, 7vw, 118px);
  align-items: end;
  padding-bottom: clamp(42px, 5vw, 76px);
}

.article-meta {
  display: flex;
  gap: 14px;
  align-self: start;
  color: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-hero h1 {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--black);
  font-size: clamp(48px, 5.6vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.article-hero p {
  grid-column: 2 / 3;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.55;
}

.article-media {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 24px);
  aspect-ratio: 16 / 8;
  background: #111;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  width: min(820px, 100%);
  margin: clamp(62px, 7vw, 110px) auto 0;
}

.article-body p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.68;
}

.article-body p + p {
  margin-top: 30px;
}

.article-actions {
  width: min(820px, 100%);
  margin: clamp(44px, 5vw, 72px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.article-actions .btn-pill {
  width: min(280px, 100%);
}

.news-card-link,
.feature-card-link {
  color: inherit;
  text-decoration: none;
}

.news-card-link:focus-visible,
.feature-card-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 1024px) {
  .article-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-hero h1,
  .article-hero p {
    grid-column: auto;
  }

  .article-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .article-main {
    padding-top: calc(var(--header-h) + 34px);
  }

  .article-shell {
    width: 88%;
    padding-bottom: 72px;
  }

  .article-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .article-actions .btn-pill {
    width: 100%;
  }
}

/* Unified inner-page hero contract */
.page-reference-hero,
.projects-spec-hero,
.home-development-page .page-hero.pdf-hero,
.single-project-page .single-project-hero.pdf-hero {
  position: relative;
  height: min(100svh, 56.25vw);
  min-height: 620px;
  margin-top: 0;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.page-reference-hero > img,
.projects-spec-hero > img,
.home-development-page .page-hero.pdf-hero > img,
.single-project-page .single-project-hero.pdf-hero > img,
.single-project-page .single-project-hero.pdf-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none !important;
}

.page-reference-hero::after,
.projects-spec-hero::after,
.home-development-page .page-hero.pdf-hero::after,
.single-project-page .single-project-hero.pdf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.45) 100%) !important;
  pointer-events: none;
}

.single-project-page .single-project-hero.pdf-hero.is-video-playing::after {
  opacity: 0;
}

.page-reference-hero-copy,
.projects-spec-hero-copy,
.home-development-page .page-hero .page-hero-content,
.single-project-page .single-project-hero .page-hero-content {
  position: absolute;
  left: calc((100% - var(--container)) / 2);
  right: auto;
  bottom: clamp(54px, 7vh, 96px);
  z-index: 2;
  width: min(680px, 52vw);
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  color: #fff;
  pointer-events: none;
  transform: none;
}

.page-reference-hero-copy span,
.projects-spec-hero-copy span {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-reference-hero-copy h1,
.projects-spec-hero-copy h1,
.home-development-page .page-hero h1,
.single-project-page .single-project-hero h1 {
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: clamp(48px, 5.35vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.72), 0 0 2px rgba(0, 0, 0, 0.9);
}

.home-development-page .page-hero h1::after,
.single-project-page .single-project-hero h1::after {
  display: none;
}

.page-reference-hero-copy p,
.projects-spec-hero-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.62);
}

.page-reference-hero + .news-updates,
.page-reference-hero + .contact-inquiry,
.page-reference-hero + .about-story,
.page-reference-hero + .legacy-timeline-section,
.projects-spec-hero + .projects-spec-intro {
  padding-top: clamp(72px, 8vw, 118px);
}

.contact-page .page-reference-hero + .contact-inquiry {
  padding-top: clamp(58px, 6vw, 88px);
}

@media (max-width: 1024px) {
  .page-reference-hero,
  .projects-spec-hero,
  .home-development-page .page-hero.pdf-hero,
  .single-project-page .single-project-hero.pdf-hero {
    height: 70svh;
    min-height: 620px;
  }

  .page-reference-hero-copy,
  .projects-spec-hero-copy,
  .home-development-page .page-hero .page-hero-content,
  .single-project-page .single-project-hero .page-hero-content {
    width: min(680px, 78vw);
  }
}

@media (max-width: 767px) {
  .page-reference-hero,
  .projects-spec-hero,
  .home-development-page .page-hero.pdf-hero,
  .single-project-page .single-project-hero.pdf-hero {
    height: 100svh;
    min-height: 560px;
  }

  .page-reference-hero-copy,
  .projects-spec-hero-copy,
  .home-development-page .page-hero .page-hero-content,
  .single-project-page .single-project-hero .page-hero-content {
    left: 24px;
    right: 24px;
    bottom: max(150px, calc(env(safe-area-inset-bottom) + 136px));
    width: auto;
  }

  .page-reference-hero-copy h1,
  .projects-spec-hero-copy h1,
  .home-development-page .page-hero h1,
  .single-project-page .single-project-hero h1 {
    font-size: clamp(42px, 13vw, 66px);
    line-height: 1.04;
  }

  .page-reference-hero-copy p,
  .projects-spec-hero-copy p {
    margin-top: 18px;
  }

  .page-reference-hero + .news-updates,
  .page-reference-hero + .contact-inquiry,
  .page-reference-hero + .about-story,
  .page-reference-hero + .legacy-timeline-section,
  .projects-spec-hero + .projects-spec-intro {
    padding-top: 58px;
  }
}

/* Homepage hero video spawn */
.home-development-page .development-pdf-home > .pdf-hero {
  background: var(--white);
}

.home-development-page .development-pdf-home > .pdf-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  animation: kpd-hero-video-spawn 1650ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
  will-change: transform, opacity, filter, clip-path;
}

@keyframes kpd-hero-video-spawn {
  0% {
    opacity: 0;
    transform: scale(0.36);
    clip-path: inset(34% 39% 34% 39% round 20px);
    filter: blur(12px) brightness(0.74);
  }

  42% {
    opacity: 1;
    transform: scale(0.78);
    clip-path: inset(12% 16% 12% 16% round 12px);
    filter: blur(3px) brightness(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0 round 0);
    filter: blur(0) brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-development-page .development-pdf-home > .pdf-hero > video {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
}

/* V1 design-system reconciliation */
:root {
  --kpd-layout-gap: clamp(28px, 4vw, 72px);
  --kpd-section-compact-y: clamp(54px, 6vw, 94px);
  --kpd-section-standard-y: clamp(72px, 8vw, 124px);
  --kpd-radius-card: clamp(18px, 1.7vw, 26px);
}

.home-development-page main {
  background: var(--white);
  color: var(--black);
}

.home-development-page img,
.home-development-page video {
  max-width: 100%;
}

.home-development-page .kpd-section,
.home-development-page .news-updates,
.home-development-page .contact-inquiry,
.home-development-page .projects-spec-intro,
.home-development-page .projects-spec-list,
.home-development-page .legacy-timeline-section,
.home-development-page .kpd-legal-block {
  color: var(--black);
}

.projects-spec-intro-inner,
.single-project-section-head,
.project-section-head,
.legacy-timeline-head,
.news-live-head,
.contact-inquiry-shell,
.about-story-grid,
.about-mission-vision,
.about-chairman,
.about-ceo,
.about-management,
.kpd-legal-block,
.article-shell {
  width: var(--container);
  max-width: var(--container);
}

.projects-spec-intro h2,
.projects-spec-copy h2,
.single-project-page .single-project-meydan-copy h2,
.single-project-page .single-project-section-head h2,
.single-project-page .single-project-calm-copy h2,
.about-story-title,
.about-mission-card h2,
.about-management h2,
.legacy-summary-copy strong,
.contact-form-subtitle,
.article-hero h1 {
  letter-spacing: 0;
}

.projects-spec-intro p,
.projects-spec-copy p,
.projects-spec-meta dt,
.projects-spec-meta dd,
.projects-spec-contact-copy p,
.single-project-page .single-project-meydan-copy p,
.single-project-page .single-project-section-copy p,
.single-project-page .single-project-calm-copy p,
.about-story-copy p,
.about-mission-card p,
.about-chairman-copy p,
.about-ceo-copy p,
.legacy-timeline-body p,
.contact-address,
.contact-address a,
.contact-address span,
.contact-adaptive-field span,
.contact-adaptive-field input,
.contact-adaptive-field select,
.contact-adaptive-field textarea,
.article-body p {
  font-family: var(--font-main);
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.projects-spec-row,
.projects-spec-contact,
.about-mission-card,
.about-chairman,
.about-ceo,
.legacy-timeline-item,
.contact-map-card,
.contact-inquiry-panel,
.news-card-item,
.kpd-news-card,
.single-project-amenity-card,
.single-project-payment-grid article,
.single-project-floor-card {
  border-radius: var(--kpd-radius-card);
}

.projects-spec-actions a,
.projects-spec-contact-actions a,
.projects-spec-contact-actions button,
.media-filter-tab,
.contact-inquiry-tabs button,
.contact-submit,
.single-project-intuitive-button {
  min-height: 38px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-filter-tab,
.contact-inquiry-tabs button {
  padding: 10px clamp(18px, 2.2vw, 34px);
  border-color: rgba(0, 0, 0, 0.18);
}

.media-filter-tab.is-active,
.contact-inquiry-tabs button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.contact-address {
  display: grid;
  gap: 6px;
  color: var(--black);
}

.contact-address strong {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-address a {
  color: var(--black);
  text-decoration: none;
}

.contact-address a:first-of-type {
  margin-top: 16px;
}

.news-card-item img,
.news-card img,
.feature-card img,
.pdf-event-card img,
.pdf-dev-card img,
.projects-spec-media img,
.single-project-flex-gallery img {
  background: #f3f3f3;
}

.news-card-item h3,
.news-card h3,
.feature-card h3,
.pdf-event-card h3 {
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .projects-spec-intro-inner,
  .single-project-section-head,
  .project-section-head,
  .legacy-timeline-head,
  .news-live-head,
  .contact-inquiry-shell,
  .about-story-grid,
  .about-mission-vision,
  .about-chairman,
  .about-ceo,
  .about-management,
  .kpd-legal-block,
  .article-shell {
    width: 88%;
    max-width: 88%;
  }

  .media-filter-tabs,
  .contact-inquiry-tabs {
    gap: 10px;
  }

  .media-filter-tab,
  .contact-inquiry-tabs button {
    width: auto;
    min-height: 36px;
    padding: 9px 16px;
    font-size: 11px;
  }
}

/* Seven X Seven PDF page update */
.single-project-page {
  --sxs-section-y: clamp(62px, 7vw, 112px);
  --sxs-gap: clamp(36px, 6vw, 92px);
  --sxs-card-radius: clamp(18px, 2vw, 28px);
}

.single-project-page .single-project-intro.kpd-section,
.single-project-page .single-project-meydan.kpd-section,
.single-project-page .single-project-amenities.kpd-section,
.single-project-page .single-project-calm.kpd-section,
.single-project-page .single-project-floor-plans.kpd-section,
.single-project-page .single-project-payment.kpd-section {
  width: var(--container);
  margin: 0 auto;
  padding: var(--sxs-section-y) 0;
}

.single-project-page .single-project-intro.kpd-section {
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(44px, 4.8vw, 72px);
}

.single-project-page .single-project-intro-grid--pdf {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.84fr);
  gap: var(--sxs-gap);
  align-items: center;
}

.single-project-page .single-project-intro-media {
  height: clamp(350px, 34vw, 540px);
  min-height: 0;
  border-radius: var(--sxs-card-radius);
}

.single-project-page .single-project-intro-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
}

.single-project-page .single-project-intro-copy h1,
.single-project-page .single-project-meydan-copy h2,
.single-project-page .single-project-section-head h2,
.single-project-page .single-project-calm-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: var(--kpd-type-display);
  font-weight: 400;
  line-height: var(--kpd-type-display-line);
  letter-spacing: 0;
}

.single-project-page .single-project-intro-copy p,
.single-project-page .single-project-meydan-copy p,
.single-project-page .single-project-section-copy p,
.single-project-page .single-project-calm-copy p {
  max-width: 690px;
  margin: clamp(16px, 2vw, 26px) 0 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.single-project-page .single-project-actions,
.single-project-page .single-project-section-copy .btn-pill,
.single-project-page .single-project-calm-copy .btn-pill {
  margin-top: clamp(24px, 3vw, 40px);
}

.single-project-page .single-project-actions .btn-pill,
.single-project-page .single-project-section-copy .btn-pill,
.single-project-page .single-project-calm-copy .btn-pill {
  min-width: clamp(150px, 12vw, 210px);
  min-height: 38px;
  padding: 9px 24px;
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
}

.single-project-page .single-project-meydan-grid,
.single-project-page .single-project-calm-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: var(--sxs-gap);
  align-items: center;
}

.single-project-page .single-project-meydan-media,
.single-project-page .single-project-calm-media {
  position: relative;
  height: clamp(360px, 34vw, 540px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--sxs-card-radius);
  background: #f2f2f2;
}

.single-project-page .single-project-meydan-media img,
.single-project-page .single-project-calm-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  transition: transform 700ms ease;
}

.single-project-page .single-project-meydan-media:hover img,
.single-project-page .single-project-calm-media:hover img {
  transform: scale(1.035);
}

.single-project-page .single-project-meydan-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 40px);
  margin-top: clamp(32px, 4vw, 56px);
}

.single-project-page .single-project-meydan-stats div {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.78);
}

.single-project-page .single-project-meydan-stats strong {
  color: var(--black);
  font-size: var(--kpd-type-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.single-project-page .single-project-meydan-stats span {
  color: rgba(0, 0, 0, 0.76);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-project-page .section-villa23-travel-timeline {
  padding: clamp(52px, 6vw, 94px) 0 clamp(64px, 7vw, 108px);
}

.single-project-page .single-project-proximity-grid {
  width: var(--container);
  margin: 0 auto clamp(40px, 4.5vw, 68px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
}

.single-project-page .single-project-proximity-grid ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-project-page .single-project-proximity-grid li {
  display: grid;
  grid-template-columns: minmax(72px, 0.22fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.single-project-page .single-project-proximity-grid span {
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-project-page .single-project-proximity-grid strong {
  color: var(--black);
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.single-project-page .villa23-travel-shell {
  width: var(--container);
  border-radius: var(--sxs-card-radius);
}

.single-project-page .villa23-travel-map-area {
  min-height: clamp(300px, 32vw, 504px);
}

.single-project-page .single-project-render-banner {
  margin-top: clamp(12px, 1.8vw, 28px);
  margin-bottom: clamp(62px, 7vw, 112px);
}

.single-project-page .single-project-amenities .single-project-section-head,
.single-project-page .single-project-floor-plans .single-project-section-head,
.single-project-page .single-project-payment .single-project-section-head {
  width: 100%;
  margin: 0 0 clamp(36px, 4.2vw, 64px);
}

.single-project-page .single-project-floor-plans.kpd-section,
.single-project-page .single-project-payment.kpd-section {
  width: min(86%, 1680px);
  padding-top: clamp(42px, 4.2vw, 72px);
  padding-bottom: clamp(42px, 4.2vw, 72px);
}

.single-project-page .single-project-floor-plans .single-project-section-head {
  min-height: 0;
  margin-bottom: clamp(22px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.single-project-page .single-project-floor-plans .single-project-section-copy {
  max-width: 820px;
  padding-top: 0;
}

.single-project-page .single-project-payment .single-project-section-head {
  min-height: 0;
  margin-bottom: clamp(22px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.single-project-page .single-project-amenities-gallery {
  width: 100%;
}

.single-project-page .single-project-amenities-gallery .pdf-gallery-panel {
  height: clamp(480px, 47vw, 680px);
  min-height: 0;
  overflow: hidden;
  border-radius: var(--sxs-card-radius);
}

.single-project-page .single-project-amenities-gallery .pdf-gallery-panel > img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
}

.single-project-page .single-project-amenities-gallery .pdf-gallery-panel::after {
  display: none;
  content: none;
}

.single-project-page .single-project-amenities-gallery .pdf-gallery-panel span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  font-size: var(--kpd-type-copy);
  font-weight: 400;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.single-project-page .single-project-amenities-gallery .pdf-gallery-panel.is-active span,
.single-project-page .single-project-amenities-gallery .pdf-gallery-panel:hover span,
.single-project-page .single-project-amenities-gallery .pdf-gallery-panel:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.single-project-page .single-project-calm-media {
  height: clamp(400px, 38vw, 620px);
  min-height: 0;
}

.single-project-page .single-project-directional-media {
  position: relative;
}

.single-project-page .single-project-directional-media.is-switching img {
  opacity: 0.2;
  transform: scale(1.02);
}

.single-project-page .single-project-directional-media button {
  appearance: none;
  position: absolute;
  bottom: 22px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

.single-project-page .single-project-directional-media button:first-of-type {
  right: 72px;
}

.single-project-page .single-project-directional-media button:last-of-type {
  right: 22px;
}

.single-project-page .single-project-directional-media button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.single-project-page .single-project-directional-media button:first-of-type::before {
  transform: translateX(2px) rotate(-135deg);
}

.single-project-page .single-project-directional-media button:last-of-type::before {
  transform: translateX(-2px) rotate(45deg);
}

.single-project-page .single-project-directional-media button:hover,
.single-project-page .single-project-directional-media button:focus-visible {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.single-project-page .single-project-floor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.single-project-page .single-project-floor-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--sxs-card-radius);
  background: #f6f6f6;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.single-project-page .single-project-floor-card:hover,
.single-project-page .single-project-floor-card:focus-within {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.single-project-page .single-project-floor-card img {
  width: 100%;
  height: clamp(260px, 26vw, 420px);
  object-fit: contain;
  filter: none;
}

.single-project-page .single-project-floor-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 28px);
  background: var(--white);
}

.single-project-page .single-project-floor-card strong {
  color: var(--black);
  font-size: var(--kpd-type-card-title);
  font-weight: 300;
  line-height: var(--kpd-type-card-line);
  letter-spacing: 0;
}

.single-project-page .single-project-floor-card a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.24s ease, color 0.24s ease;
}

.single-project-page .single-project-floor-card a:hover,
.single-project-page .single-project-floor-card a:focus-visible {
  background: var(--black);
  color: var(--white);
}

.single-project-page .single-project-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.single-project-page .single-project-payment-grid article {
  min-height: clamp(210px, 18vw, 310px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--sxs-card-radius);
  background: #f7f7f7;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.single-project-page .single-project-payment-grid article:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
}

.single-project-page .single-project-payment-grid strong {
  margin-bottom: auto;
  color: inherit;
  font-size: var(--kpd-type-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.single-project-page .single-project-payment-grid span {
  margin-top: clamp(42px, 5vw, 86px);
  color: inherit;
  font-size: var(--kpd-type-copy);
  font-weight: 300;
  line-height: var(--kpd-type-copy-line);
  letter-spacing: 0;
}

.single-project-page .single-project-payment-grid p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.68;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.single-project-page .single-project-enquire {
  margin-top: clamp(22px, 3vw, 42px);
}

@media (max-width: 1100px) {
  .single-project-page .single-project-intro-grid--pdf,
  .single-project-page .single-project-meydan-grid,
  .single-project-page .single-project-calm-grid,
  .single-project-page .villa23-travel-head,
  .single-project-page .single-project-section-head {
    grid-template-columns: 1fr;
  }

  .single-project-page .single-project-meydan-media,
  .single-project-page .single-project-calm-media {
    height: clamp(320px, 54vw, 540px);
    min-height: 0;
  }

  .single-project-page .single-project-floor-grid,
  .single-project-page .single-project-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .single-project-page {
    --sxs-section-y: 56px;
    --sxs-gap: 28px;
  }

  .single-project-page .single-project-intro.kpd-section,
  .single-project-page .single-project-meydan.kpd-section,
  .single-project-page .single-project-amenities.kpd-section,
  .single-project-page .single-project-calm.kpd-section,
  .single-project-page .single-project-floor-plans.kpd-section,
  .single-project-page .single-project-payment.kpd-section {
    width: calc(100% - 36px);
  }

  .single-project-page .single-project-intro-copy h1,
  .single-project-page .single-project-meydan-copy h2,
  .single-project-page .single-project-section-head h2,
  .single-project-page .single-project-calm-copy h2 {
    font-size: var(--kpd-type-display);
    line-height: var(--kpd-type-display-line);
  }

  .single-project-page .single-project-actions {
    grid-template-columns: 1fr;
  }

  .single-project-page .single-project-meydan-stats,
  .single-project-page .single-project-proximity-grid,
  .single-project-page .single-project-floor-grid,
  .single-project-page .single-project-payment-grid {
    grid-template-columns: 1fr;
  }

  .single-project-page .single-project-proximity-grid {
    width: calc(100% - 36px);
    gap: 12px;
  }

  .single-project-page .single-project-proximity-grid li {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  .single-project-page .single-project-amenities-gallery {
    width: 100%;
    margin-left: 0;
  }

  .single-project-page .single-project-floor-card img {
    height: 280px;
  }

  .single-project-page .projects-spec-contact-copy {
    width: calc(100% - 36px);
  }
}

/* V1 final global alignment pass */
.home-development-page :is(h1, h2, h3, p, a, button, input, textarea, select, span, strong) {
  letter-spacing: 0;
}

.home-development-page :is(.page-reference-hero-copy h1, .projects-spec-hero-copy h1, .pdf-intro h1, .about-story-title, .single-project-intro-copy h1) {
  font-family: var(--font-main);
}

.home-development-page :is(.pdf-dev-card, .pdf-event-card, .news-card-item, .feature-card, .projects-spec-row, .projects-spec-contact, .about-chairman, .about-ceo, .contact-inquiry-panel, .contact-map-card, .single-project-amenity-card, .single-project-floor-card, .single-project-payment-grid article) {
  border-radius: var(--kpd-radius-card);
}

.home-development-page :is(.btn-pill, .pdf-development-button, .pdf-dev-card span, .pdf-contact-copy a, .pdf-events-head a, .pdf-event-card a, .projects-spec-actions a, .projects-spec-contact-actions a, .projects-spec-contact-actions button, .media-filter-tab, .contact-inquiry-tabs button, .contact-submit, .single-project-intuitive-button) {
  min-height: 38px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: var(--kpd-type-button);
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}

.home-development-page :is(.page-reference-main, .projects-main, .single-project-main, .article-main) {
  background: var(--white);
}

.contact-address :is(span, a),
.contact-adaptive-form :is(input, select, textarea),
.media-filter-tab,
.contact-inquiry-tabs button {
  font-family: var(--font-main);
}

/* V1 image frame lock */
.home-development-page :is(
  .page-reference-hero,
  .pdf-hero,
  .about-hero,
  .projects-hero,
  .news-hero,
  .single-project-hero,
  .pdf-development-slide,
  .pdf-dev-card,
  .pdf-event-card,
  .news-card,
  .news-card-item,
  .feature-card,
  .projects-spec-media,
  .projects-spec-contact,
  .projects-collection-media,
  .projects-featured-card,
  .projects-pdf-card,
  .about-story-media,
  .about-chairman-media,
  .about-ceo-media,
  .about-management-card,
  .single-project-intro-media,
  .single-project-meydan-media,
  .single-project-calm-media,
  .single-project-render-slide,
  .single-project-intuitive-image,
  .single-project-floor-card,
  .article-media,
  .kpd-media-band,
  .contact-map-card
) {
  overflow: hidden;
}

.home-development-page :is(
  .page-reference-hero,
  .pdf-hero,
  .about-hero,
  .projects-hero,
  .news-hero,
  .single-project-hero,
  .pdf-development-slide,
  .pdf-dev-card,
  .pdf-event-card,
  .news-card,
  .news-card-item,
  .feature-card,
  .projects-spec-media,
  .projects-spec-contact,
  .projects-collection-media,
  .projects-featured-card,
  .projects-pdf-card,
  .about-story-media,
  .about-chairman-media,
  .about-ceo-media,
  .about-management-card,
  .single-project-intro-media,
  .single-project-meydan-media,
  .single-project-calm-media,
  .single-project-render-slide,
  .single-project-intuitive-image,
  .single-project-floor-card,
  .article-media,
  .kpd-media-band,
  .contact-map-card
) > img,
.home-development-page :is(.pdf-hero, .single-project-hero) > video {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.home-development-page .projects-spec-media {
  height: clamp(430px, 42vw, 520px);
  min-height: 0;
}

.home-development-page .contact-map-card img {
  inset: 0;
  height: 100%;
  object-position: center;
}

.home-development-page .pdf-gallery-flex .pdf-gallery-panel:is(.is-active, :hover, :focus-visible) > img {
  transform: none;
}

.home-development-page.single-project-page .single-project-floor-card > img {
  width: 100%;
  height: clamp(260px, 26vw, 420px);
  max-width: none;
  min-height: 0;
  padding: clamp(14px, 1.4vw, 22px);
  background: #f6f6f6;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (max-width: 1024px) {
  .home-development-page .projects-spec-media {
    height: clamp(360px, 55vw, 520px);
  }
}

@media (max-width: 767px) {
  .home-development-page .projects-spec-media,
  .home-development-page .contact-map-card {
    height: 320px;
    min-height: 320px;
  }

  .home-development-page.single-project-page .single-project-floor-card > img {
    height: 280px;
    padding: 14px;
  }
}

/* V1 button system lock */
.home-development-page {
  --kpd-button-height: 38px;
  --kpd-button-pad-x: clamp(18px, 1.65vw, 28px);
  --kpd-button-font-size: var(--kpd-type-button);
  --kpd-button-line-height: 18px;
  --kpd-button-radius: 999px;
}

.home-development-page :is(
  .btn-pill,
  .button_submit,
  .pdf-development-button,
  .projects-outline-button,
  .news-feature-button,
  .pdf-dev-card span,
  .pdf-contact-copy a,
  .pdf-events-head a,
  .pdf-event-card a,
  .projects-spec-actions a,
  .projects-spec-contact-actions a,
  .projects-spec-contact-actions button,
  .media-filter-tab,
  .contact-inquiry-tabs button,
  .contact-segment button,
  .contact-submit,
  .single-project-intuitive-control,
  .single-project-intuitive-button,
  .single-project-actions .btn-pill,
  .single-project-section-copy .btn-pill,
  .single-project-calm-copy .btn-pill,
  .single-project-form .btn-pill,
  .live-news-card .btn-pill,
  .article-actions .btn-pill,
  .kpd-card .btn-pill,
  .kpd-news-card .btn-pill,
  .kpd-property-card .btn-pill,
  .kpd-press-card .btn-pill,
  .kpd-update-card .btn-pill,
  .development-site-header .header-book-call
) {
  min-height: var(--kpd-button-height);
  height: var(--kpd-button-height);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--kpd-button-pad-x);
  padding-right: var(--kpd-button-pad-x);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--kpd-button-radius);
  font-family: var(--font-main);
  font-size: var(--kpd-button-font-size);
  font-weight: 400;
  line-height: var(--kpd-button-line-height);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.home-development-page :is(
  .projects-card .btn-pill,
  .news-card-item .btn-pill,
  .single-project-page .single-project-actions .btn-pill,
  .article-actions .btn-pill
) {
  min-height: var(--kpd-button-height);
}

@media (max-width: 767px) {
  .home-development-page {
    --kpd-button-height: 36px;
    --kpd-button-pad-x: 18px;
    --kpd-button-font-size: 11px;
  }
}

/* V1 global motion and modal CTA lock */
.home-development-page {
  --kpd-motion-duration: 720ms;
  --kpd-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --kpd-motion-distance: 28px;
  --kpd-motion-blur: 3px;
}

.motion-js:not(.motion-reduced) .home-development-page .motion-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    opacity var(--kpd-motion-duration) var(--kpd-motion-ease),
    transform var(--kpd-motion-duration) var(--kpd-motion-ease),
    filter var(--kpd-motion-duration) var(--kpd-motion-ease);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-js:not(.motion-reduced) .home-development-page .motion-reveal:not(.is-revealed),
.motion-js:not(.motion-reduced) .home-development-page .motion-reveal-left:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, var(--kpd-motion-distance), 0);
  filter: blur(var(--kpd-motion-blur));
}

.motion-js:not(.motion-reduced) .home-development-page .motion-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.motion-js:not(.motion-reduced) .home-development-page .motion-reveal.motion-tilt.is-revealed {
  transform: perspective(1100px) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 0deg)) translate3d(0, var(--motion-hover-y, 0px), 0);
}

.home-development-page .booking-card .booking-primary-button,
.home-development-page .booking-card .btn-pill {
  min-width: clamp(150px, 12vw, 210px);
  min-height: var(--kpd-button-height);
  height: var(--kpd-button-height);
  padding: 0 var(--kpd-button-pad-x);
  border-radius: var(--kpd-button-radius);
  font-family: var(--font-main);
  font-size: var(--kpd-button-font-size);
  font-weight: 400;
  line-height: var(--kpd-button-line-height);
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-development-page .booking-card .btn-pill .arrow-circle {
  display: none;
}

/* Project detail compact lock: Floor Plans + Payment Plan */
.home-development-page.single-project-page .single-project-floor-plans.kpd-section,
.home-development-page.single-project-page .single-project-payment.kpd-section {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding-top: clamp(34px, 3.4vw, 58px);
  padding-bottom: clamp(34px, 3.4vw, 58px);
}

.home-development-page.single-project-page .single-project-floor-plans .single-project-section-head,
.home-development-page.single-project-page .single-project-payment .single-project-section-head {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0 0 clamp(18px, 1.8vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 58px);
  align-items: start;
}

.home-development-page.single-project-page .single-project-floor-plans .single-project-section-head h2,
.home-development-page.single-project-page .single-project-payment .single-project-section-head h2 {
  margin: 0;
}

.home-development-page.single-project-page .single-project-floor-plans .single-project-section-copy,
.home-development-page.single-project-page .single-project-payment .single-project-section-copy {
  max-width: 760px;
  padding: 0;
}

.home-development-page.single-project-page .single-project-floor-grid {
  gap: clamp(16px, 1.7vw, 26px);
}

.home-development-page.single-project-page .single-project-floor-card > img {
  height: clamp(210px, 21vw, 320px);
  padding: clamp(12px, 1.15vw, 18px);
}

.home-development-page.single-project-page .single-project-floor-card div {
  padding: clamp(14px, 1.45vw, 22px);
}

.home-development-page.single-project-page .single-project-payment {
  padding-top: clamp(34px, 3.4vw, 58px);
}

.home-development-page.single-project-page .single-project-payment-grid {
  gap: clamp(14px, 1.65vw, 24px);
}

.home-development-page.single-project-page .single-project-payment-grid article {
  min-height: clamp(160px, 13vw, 220px);
  padding: clamp(16px, 1.8vw, 26px);
}

.home-development-page.single-project-page .single-project-payment-grid strong {
  font-size: clamp(44px, 4.6vw, 70px);
}

.home-development-page.single-project-page .single-project-payment-grid span {
  margin-top: clamp(22px, 2.6vw, 44px);
}

.home-development-page.single-project-page .single-project-payment-grid p {
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .home-development-page.single-project-page .single-project-floor-plans .single-project-section-head,
  .home-development-page.single-project-page .single-project-payment .single-project-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .home-development-page.single-project-page .single-project-floor-plans.kpd-section,
  .home-development-page.single-project-page .single-project-payment.kpd-section {
    width: calc(100% - 36px);
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-development-page.single-project-page .single-project-floor-card > img {
    height: 230px;
    padding: 12px;
  }

.home-development-page.single-project-page .single-project-payment-grid article {
  min-height: 168px;
  }
}

/* Development detail spacing lock: match About page section rhythm */
.home-development-page.single-project-page {
  --sxs-section-y: clamp(70px, 8vw, 118px);
  --sxs-gap: clamp(52px, 8vw, 132px);
}

.home-development-page.single-project-page .single-project-intro.kpd-section,
.home-development-page.single-project-page .single-project-meydan.kpd-section,
.home-development-page.single-project-page .single-project-amenities.kpd-section,
.home-development-page.single-project-page .single-project-calm.kpd-section,
.home-development-page.single-project-page .single-project-floor-plans.kpd-section,
.home-development-page.single-project-page .single-project-payment.kpd-section {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: var(--sxs-section-y);
}

.home-development-page.single-project-page .single-project-intro.kpd-section {
  padding-top: clamp(44px, 5.2vw, 78px);
}

.home-development-page.single-project-page .single-project-intro-grid--pdf,
.home-development-page.single-project-page .single-project-meydan-grid,
.home-development-page.single-project-page .single-project-calm-grid {
  gap: var(--sxs-gap);
}

.home-development-page.single-project-page .section-villa23-travel-timeline {
  padding-top: 0;
  padding-bottom: var(--sxs-section-y);
}

.home-development-page.single-project-page .single-project-proximity-grid {
  margin-bottom: clamp(28px, 4vw, 58px);
}

.home-development-page.single-project-page .single-project-render-banner {
  margin-top: 0;
  margin-bottom: var(--sxs-section-y);
}

.home-development-page.single-project-page .single-project-amenities .single-project-section-head {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.home-development-page.single-project-page .single-project-floor-plans .single-project-section-head,
.home-development-page.single-project-page .single-project-payment .single-project-section-head {
  margin-bottom: clamp(28px, 3.4vw, 44px);
}

.home-development-page.single-project-page .single-project-enquire {
  margin-top: 0;
}

@media (max-width: 767px) {
  .home-development-page.single-project-page {
    --sxs-section-y: 72px;
    --sxs-gap: 28px;
  }

  .home-development-page.single-project-page .single-project-intro.kpd-section {
    padding-top: 48px;
  }
}

/* About story grid alignment lock */
.about-design-page .about-story {
  width: var(--container);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.about-design-page .about-story-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: stretch;
}

.about-design-page .about-story-copy {
  max-width: none;
  align-self: center;
}

.about-design-page .about-story-media {
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: stretch;
  border-radius: var(--kpd-radius-card);
}

.about-design-page .about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-design-page .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-design-page .about-story-media img {
    height: clamp(340px, 56vw, 520px);
  }
}

@media (max-width: 767px) {
  .about-design-page .about-story {
    width: 88%;
    max-width: 88%;
  }
}

/* Header developments dropdown */
.home-development-page .development-site-header .header-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.home-development-page .development-site-header .header-nav-trigger {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.home-development-page .development-site-header .header-nav-trigger:hover,
.home-development-page .development-site-header .header-nav-trigger:focus-visible {
  opacity: 0.56;
  outline: 0;
}

.home-development-page .development-site-header .header-nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 15;
  display: grid;
  min-width: 230px;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.home-development-page .development-site-header .header-nav-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 20px;
}

.home-development-page .development-site-header .header-nav-dropdown:hover .header-nav-menu,
.home-development-page .development-site-header .header-nav-dropdown:focus-within .header-nav-menu,
.home-development-page .development-site-header .header-nav-dropdown.is-open .header-nav-menu,
.home-development-page .development-site-header .header-nav-trigger:hover + .header-nav-menu,
.home-development-page .development-site-header .header-nav-trigger:focus-visible + .header-nav-menu,
.home-development-page .development-site-header .header-nav-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.home-development-page .development-site-header .header-nav-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--black);
  font-size: 12px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.home-development-page .development-site-header .header-nav-menu a:hover,
.home-development-page .development-site-header .header-nav-menu a:focus-visible {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

/* Global contact popup */
.booking-modal {
  position: fixed;
  right: 24px;
  bottom: 84px;
  left: auto;
  top: auto;
  z-index: 960;
  display: block;
  width: min(430px, calc(100vw - 48px));
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

.booking-backdrop {
  display: none;
}

.booking-card {
  position: relative;
  width: 100%;
  max-height: min(520px, calc(100vh - 130px));
  overflow: auto;
  padding: 18px 18px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking-modal.open .booking-card {
  animation: kpdPopupRise 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking-card h2 {
  margin: 0 34px 8px 0;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.booking-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
}

.booking-lead-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.booking-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.booking-lead-field {
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

select.booking-lead-field {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 16px) 15px, calc(100% - 11px) 15px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 32px;
}

.booking-lead-message {
  grid-column: 1 / -1;
  min-height: 64px;
  padding-top: 10px;
  border-radius: 14px;
  resize: vertical;
}

.booking-lead-field:focus {
  outline: 0;
  border-color: var(--black);
}

.booking-lead-submit {
  width: 100%;
  min-height: 34px;
  min-width: 0;
  margin-top: 0;
  font-size: 10px;
  line-height: 12px;
}

.booking-card .booking-privacy-note {
  max-width: none;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 9px;
  line-height: 13px;
}

.booking-card .modal-close {
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
}

.booking-card .modal-close::before,
.booking-card .modal-close::after {
  left: 11px;
  width: 1px;
  height: 22px;
}

.booking-widget-launcher {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 955;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.booking-widget-launcher.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.booking-widget-launcher:hover,
.booking-widget-launcher:focus-visible {
  background: var(--black);
  color: var(--white);
  outline: 0;
}

.backend-form-status {
  margin: 4px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
}

.contact-adaptive-form .backend-form-status {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 13px;
}

.booking-lead-form button:disabled,
.contact-adaptive-form button:disabled {
  cursor: wait;
  opacity: 0.56;
}

@keyframes kpdPopupRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 767px) {
  .booking-modal {
    right: 14px;
    bottom: 82px;
    width: min(390px, calc(100vw - 28px));
  }

  .booking-card {
    padding: 18px 14px 14px;
    border-radius: 18px;
  }

  .booking-card h2 {
    margin-right: 32px;
    font-size: 16px;
  }

  .booking-lead-grid {
    grid-template-columns: 1fr;
  }

  .booking-widget-launcher {
    right: 14px;
    bottom: 82px;
    min-width: 86px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 11px;
  }
}

/* Developments mega dropdown */
.home-development-page .development-site-header .header-nav-menu.header-mega-menu {
  position: absolute;
  top: calc(100% + 38px);
  left: 0;
  width: min(980px, calc(100vw - 220px));
  min-width: 0;
  min-height: clamp(240px, 28vw, 340px);
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(420px, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateY(8px);
}

.home-development-page .development-site-header .header-nav-menu.header-mega-menu::before {
  top: -22px;
  height: 24px;
}

.home-development-page .development-site-header .header-nav-dropdown:hover .header-mega-menu,
.home-development-page .development-site-header .header-nav-dropdown:focus-within .header-mega-menu,
.home-development-page .development-site-header .header-nav-dropdown.is-open .header-mega-menu,
.home-development-page .development-site-header .header-nav-trigger:hover + .header-mega-menu,
.home-development-page .development-site-header .header-nav-trigger:focus-visible + .header-mega-menu,
.home-development-page .development-site-header .header-mega-menu:hover {
  transform: translateY(0);
}

.header-mega-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px 8px 6px;
}

.header-mega-list {
  display: grid;
  gap: 2px;
}

.home-development-page .development-site-header .header-nav-menu.header-mega-menu .mega-project-link {
  position: relative;
  display: block;
  padding: 13px 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  transition: opacity 0.22s ease, padding-left 0.22s ease;
}

.home-development-page .development-site-header .header-nav-menu.header-mega-menu .mega-project-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.home-development-page .development-site-header .header-nav-menu.header-mega-menu .mega-project-link:hover,
.home-development-page .development-site-header .header-nav-menu.header-mega-menu .mega-project-link:focus-visible {
  padding-left: 10px;
  background: transparent;
  color: var(--black);
  opacity: 1;
  outline: 0;
}

.header-mega-preview {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f4f4;
}

.header-mega-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.mega-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.28s ease, transform 0.45s ease;
}

.mega-preview-image.is-default,
.header-mega-menu:has(.mega-project-sxs:hover) .mega-preview-sxs,
.header-mega-menu:has(.mega-project-sxs:focus) .mega-preview-sxs,
.header-mega-menu:has(.mega-project-emerald:hover) .mega-preview-emerald,
.header-mega-menu:has(.mega-project-emerald:focus) .mega-preview-emerald,
.header-mega-menu:has(.mega-project-hills:hover) .mega-preview-hills,
.header-mega-menu:has(.mega-project-hills:focus) .mega-preview-hills {
  opacity: 1;
  transform: scale(1);
}

.header-mega-menu:has(.mega-project-link:hover) .mega-preview-image,
.header-mega-menu:has(.mega-project-link:focus) .mega-preview-image {
  opacity: 0;
}

.header-mega-menu:has(.mega-project-sxs:hover) .mega-preview-sxs,
.header-mega-menu:has(.mega-project-sxs:focus) .mega-preview-sxs,
.header-mega-menu:has(.mega-project-emerald:hover) .mega-preview-emerald,
.header-mega-menu:has(.mega-project-emerald:focus) .mega-preview-emerald,
.header-mega-menu:has(.mega-project-hills:hover) .mega-preview-hills,
.header-mega-menu:has(.mega-project-hills:focus) .mega-preview-hills {
  opacity: 1;
}

@media (max-width: 1024px) {
  .home-development-page .development-site-header .header-nav-menu.header-mega-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .development-site-header .header-nav a,
  .development-site-header .header-nav-trigger,
  .brand-link,
  .menu-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .menu-toggle {
    width: 44px;
    height: 40px;
    justify-content: center;
    align-content: center;
    gap: 8px;
  }

  .footer_link,
  .footer_newsletter_terms a,
  .kpd-legal-block a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .pdf-development-dots {
    gap: 0;
  }

  .pdf-development-dots button,
  .single-project-render-dots button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    transform: none;
  }

  .pdf-development-dots button::before,
  .single-project-render-dots button::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .single-project-render-dots button::before {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.38);
  }

  .pdf-development-dots button.active,
  .pdf-development-dots button:hover,
  .pdf-development-dots button:focus-visible,
  .single-project-render-dots button.is-active,
  .single-project-render-dots button:hover,
  .single-project-render-dots button:focus-visible {
    background: transparent;
    transform: none;
  }

  .pdf-development-dots button.active::before,
  .pdf-development-dots button:hover::before,
  .pdf-development-dots button:focus-visible::before,
  .single-project-render-dots button.is-active::before,
  .single-project-render-dots button:hover::before,
  .single-project-render-dots button:focus-visible::before {
    background: #fff;
    transform: scale(1.14);
  }

  .villa23-travel-step {
    width: 40px;
    height: 40px;
  }

  .contact-page input[type="checkbox"] {
    width: 32px;
    height: 32px;
  }

  .contact-address a,
  .contact-adaptive-form a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pdf-development-dots {
    gap: 0;
  }

  .pdf-development-dots button,
  .single-project-render-dots button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    transform: none;
  }

  .pdf-development-dots button::before,
  .single-project-render-dots button::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .single-project-render-dots button::before {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.38);
  }

  .pdf-development-dots button.active,
  .pdf-development-dots button:hover,
  .pdf-development-dots button:focus-visible,
  .single-project-render-dots button.is-active,
  .single-project-render-dots button:hover,
  .single-project-render-dots button:focus-visible {
    background: transparent;
    transform: none;
  }

  .pdf-development-dots button.active::before,
  .pdf-development-dots button:hover::before,
  .pdf-development-dots button:focus-visible::before,
  .single-project-render-dots button.is-active::before,
  .single-project-render-dots button:hover::before,
  .single-project-render-dots button:focus-visible::before {
    background: #fff;
    transform: scale(1.14);
  }

  .villa23-travel-step {
    width: 40px;
    height: 40px;
  }

  .contact-page input[type="checkbox"] {
    width: 32px;
    height: 32px;
  }

  .contact-address a,
  .contact-adaptive-form a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }
}

@media (max-width: 520px) {
  .home-development-page .development-site-header .brand-logo {
    width: 88px;
    height: 26px;
  }

  .home-development-page .development-site-header .header-book-call {
    width: 128px;
    min-width: 128px;
    max-width: 128px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .home-development-page .development-site-header .brand-logo {
    width: 78px;
    height: 24px;
  }

  .home-development-page .development-site-header .header-book-call {
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    font-size: 8.5px;
  }
}
