@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161614;
  --muted: #6b675d;
  --cream: #f7f2e9;
  --paper: #fffaf1;
  --stone: #d7cab6;
  --bronze: #9b6c3f;
  --olive: #46513b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 22, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

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

main > section,
#invest {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
  padding: 4px clamp(52px, 5.2vw, 100px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 0;
  backdrop-filter: blur(2px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.brand img {
  width: 100px;
  height: auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(26px, 2.6vw, 42px);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 190px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-link,
.whatsapp-link {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-link {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
}

.contact-link::before {
  content: none;
}

.whatsapp-link {
  background: #19aa58;
  backdrop-filter: blur(2px);
  color: var(--white);
}

.whatsapp-link::before {
  content: none;
}

.nav-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

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

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.brochure-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 146, 0.9);
  background: linear-gradient(135deg, #f4dfb9, #bda588 48%, #8f6b3f);
  color: #17130e;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brochure-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.brochure-btn:hover::after {
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.2s ease;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 150px clamp(18px, 6vw, 90px) 58px;
  color: var(--white);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.04) 45%, rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  display: flex;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d6a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 94px);
  max-width: 880px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 26px;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}

.section-heading {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto 38px;
}

.gallery-stack {
  padding: 0;
  background: var(--ink);
}

.stacked-scenes {
  width: 100%;
  margin: 0 auto;
}

.scene-card {
  position: sticky;
  top: 0;
  min-height: 100vh;
  margin-bottom: 0;
  overflow: hidden;
  background: #ddd2c1;
}

.scene-card img,
.scene-card picture {
  width: 100%;
  height: 100%;
}

.scene-card img {
  min-height: 100vh;
  object-fit: cover;
}

.scene-card span {
  position: absolute;
  left: clamp(22px, 6vw, 86px);
  top: 125px;
  bottom: auto;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.28s ease, background 0.28s ease, letter-spacing 0.28s ease;
}

.scene-card:hover span {
  background: rgba(0, 0, 0, 0.56);
  transform: translateY(-6px);
  letter-spacing: 1.5px;
}

.scene-card img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.scene-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.split-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8f8f6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-panel {
  min-height: 620px;
  padding: clamp(54px, 6vw, 82px) clamp(20px, 3.5vw, 64px);
  background: #fbfbfa;
  color: #8a8885;
  display: grid;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.info-panel:last-child {
  border-right: 0;
}

.info-panel:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(27, 24, 20, 0.08);
  z-index: 1;
}

.why-kicker {
  margin: 0 0 24px;
  color: #898989;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.info-panel h2 {
  margin: 0 auto 48px;
  color: #bda588;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(137, 137, 137, 0.34);
  border-left: 1px solid rgba(137, 137, 137, 0.34);
}

.benefit-item {
  min-height: 176px;
  padding: 26px 14px 22px;
  border-right: 1px solid rgba(137, 137, 137, 0.34);
  border-bottom: 1px solid rgba(137, 137, 137, 0.34);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.benefit-item:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(33, 28, 22, 0.09);
}

.benefit-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 1;
  filter: sepia(0.24) saturate(0.7);
}

.benefit-item strong {
  color: #bda588;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.benefit-item span {
  color: #8a8885;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.leadership {
  padding: 0;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 560px;
}

.leader-image {
  min-height: 560px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.leadership.is-zoomed .leader-image img,
.leadership:hover .leader-image img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.leader-content {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(48px, 7vw, 96px);
  background: #ffffff;
  box-shadow: inset 20px 0 55px rgba(0, 0, 0, 0.03);
}

.leader-content p {
  margin: 0 0 24px;
  color: #4e4d4d;
  font-size: clamp(13px, 1.28vw, 20px);
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.leader-content h2 {
  margin: 0 0 26px;
  color: #bda588;
  font-size: clamp(32px, 4vw, 51px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.leader-content .btn {
  min-width: 260px;
  background: #555555;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.leader-content .btn:hover {
  background: #2f2f2f;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #fbf7ef;
}

.contact-form-wrap {
  padding: clamp(46px, 7vw, 92px);
  align-self: center;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d9cbb6;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-field select,
.phone-field input {
  min-width: 0;
}

.lead-form textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--bronze);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--olive);
  font-size: 13px;
}

.form-status.is-error {
  color: #a33b2f;
}

.contact-image {
  min-height: 760px;
}

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

.faq-section {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--ink);
  color: var(--white);
}

.faq-section .section-heading {
  color: var(--white);
}

.faq-list {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: 21px;
}

.faq-item button::after {
  content: "+";
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: 18px;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 520px;
  padding-bottom: 28px;
}

.site-footer {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 6vw, 90px) 34px;
  background: #11110f;
  color: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  gap: 44px;
  align-items: start;
}

.site-footer img {
  width: 116px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  font-style: normal;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  font-size: 14px;
}

.footer-columns div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-columns h3 {
  margin-bottom: 6px;
  color: #d8bd92;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-columns a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-columns a:hover {
  color: var(--white);
}

.copyright {
  text-align: right;
  align-self: end;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.floating-form-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 189, 146, 0.75);
  border-radius: 50%;
  background: linear-gradient(135deg, #f4dfb9, #bda588 52%, #8f6b3f);
  color: #17130e;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-form-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.floating-form-btn svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.sticky-brochure {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 44;
  width: 48px;
  min-height: 190px;
  padding: 18px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4dfb9, #bda588 52%, #8f6b3f);
  color: #17130e;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  transform: translate(102%, -50%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
}

.sticky-brochure.is-visible {
  transform: translate(0, -50%);
}

.sticky-brochure span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-brochure:hover {
  transform: translate(-6px, -50%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

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

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

.modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  background: var(--paper);
  padding: 34px;
  box-shadow: var(--shadow);
}

.modal-dialog h2 {
  font-size: 38px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid #d8cbb8;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.success-dialog {
  position: relative;
  width: min(500px, 100%);
  padding: 44px 34px 38px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 239, 0.98)),
    radial-gradient(circle at top, rgba(216, 189, 146, 0.18), transparent 52%);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid rgba(216, 189, 146, 0.8);
  border-radius: 50%;
  background: linear-gradient(135deg, #f4dfb9, #bda588 52%, #8f6b3f);
  color: #17130e;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px rgba(31, 27, 22, 0.18);
}

.success-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.success-dialog h2 {
  margin-bottom: 14px;
  color: #bda588;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.success-dialog p:not(.eyebrow) {
  width: min(330px, 100%);
  margin: 0 auto 26px;
  color: #68645d;
  font-size: 16px;
  line-height: 1.7;
}

.about-page {
  background: #fbfaf7;
}

.about-hero {
  min-height: 72vh;
  padding: 150px clamp(18px, 7vw, 110px) 80px;
  display: flex;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.64)),
    url("../about/strategy-view.jpg") center/cover;
}

.projects-hero {
  min-height: 58vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58)),
    url("../images/wide-view.webp") center/cover;
}

.project-intro,
.floor-section,
.location-points,
.amenities-section,
.interior-gallery,
.map-section {
  padding: clamp(64px, 7vw, 108px) clamp(18px, 6vw, 90px);
  background: #fbfaf7;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.project-intro-copy h2,
.floor-section h2,
.location-points h2,
.amenities-section h2,
.interior-gallery h2,
.map-section h2 {
  color: #bda588;
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.project-intro-copy p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: #68645d;
  font-size: 17px;
  line-height: 1.85;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(157, 139, 112, 0.34);
  border-left: 1px solid rgba(157, 139, 112, 0.34);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(31, 27, 22, 0.08);
}

.project-facts div,
.floor-grid article,
.location-grid div {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid rgba(157, 139, 112, 0.34);
  border-bottom: 1px solid rgba(157, 139, 112, 0.34);
  display: grid;
  align-content: center;
  gap: 9px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.project-facts div:hover,
.floor-grid article:hover,
.location-grid div:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 27, 22, 0.09);
  z-index: 1;
}

.project-facts span,
.floor-grid span,
.location-grid span {
  color: #8a8885;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-facts strong,
.floor-grid strong,
.location-grid strong {
  color: #2f2d29;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.16;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-facts div:nth-child(4) strong {
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.28;
}

.floor-section,
.location-points,
.interior-gallery {
  text-align: center;
}

.floor-grid,
.location-grid {
  width: min(1120px, 100%);
  margin: 38px auto 0;
  display: grid;
  border-top: 1px solid rgba(157, 139, 112, 0.34);
  border-left: 1px solid rgba(157, 139, 112, 0.34);
  background: #ffffff;
}

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

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

.location-points {
  background: #ffffff;
}

.location-grid div {
  min-height: 154px;
}

.location-grid strong {
  color: #bda588;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 300;
}

.amenities-section {
  background: #11110f;
  color: #ffffff;
  text-align: center;
}

.amenities-section h2,
.amenities-section .eyebrow {
  color: #d8bd92;
}

.amenity-gallery {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.amenity-gallery article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #2a2824;
}

.amenity-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.amenity-gallery span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  background: rgba(0, 0, 0, 0.52);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.amenity-gallery article:hover img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.amenities-list {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 189, 146, 0.28);
  text-align: left;
}

.amenities-list summary {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8bd92;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.amenities-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 189, 146, 0.42);
  display: grid;
  place-items: center;
}

.amenities-list[open] summary::after {
  content: "-";
}

.amenities-list ol {
  margin: 0;
  padding: 0 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 22px;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.amenities-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 48px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(216, 189, 146, 0.15);
  line-height: 1.35;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.amenities-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #d8bd92;
  transform: translateY(-50%);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
  opacity: 0.95;
}

.amenities-list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(216, 189, 146, 0.34);
}

.image-carousel {
  position: relative;
  width: min(1180px, 100%);
  margin: 52px auto 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.carousel-panel {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
  padding: 24px clamp(12px, 4vw, 56px);
}

.interior-card-featured {
  position: relative;
  z-index: 2;
  transform: scale(1.045);
}

.interior-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #11110f;
  box-shadow: 0 24px 64px rgba(27, 24, 20, 0.13);
  animation: interiorFloat 7s ease-in-out infinite;
}

.carousel-panel .interior-card:nth-child(2) {
  animation-delay: -1.4s;
}

.carousel-panel .interior-card:nth-child(3) {
  animation-delay: -2.4s;
}

.interior-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.interior-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.interior-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.04);
}

.interior-card:hover {
  box-shadow: 0 30px 84px rgba(27, 24, 20, 0.2);
}

@keyframes interiorFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.38);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.58);
  border-color: rgba(216, 189, 146, 0.85);
  transform: translateY(-50%) scale(1.04);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

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

.carousel-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(31, 27, 22, 0.24);
  cursor: pointer;
  transition: background 0.22s ease, width 0.22s ease;
}

.carousel-dots button.is-active {
  width: 48px;
  background: #bda588;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: #ffffff;
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  box-shadow: 0 24px 70px rgba(24, 22, 18, 0.12);
}

.project-faq {
  background: #11110f;
}

.about-hero > div {
  width: min(820px, 100%);
}

.about-hero h1 {
  font-size: clamp(48px, 7vw, 94px);
}

.about-hero p:last-child {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #ffffff;
}

.about-copy {
  padding: clamp(48px, 7vw, 100px);
  display: grid;
  align-content: center;
}

.about-copy h2,
.team-section h2,
.about-contact h2 {
  color: #bda588;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-copy p:not(.eyebrow) {
  color: #696763;
  font-size: 17px;
  line-height: 1.85;
}

.about-media {
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.about-media:hover img {
  transform: scale(1.04);
  filter: contrast(1.04) saturate(1.06);
}

.about-video-fallback span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 22px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(8px);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-stat {
  padding: clamp(48px, 6vw, 82px) 18px;
  display: grid;
  justify-items: center;
  text-align: center;
  background: #11110f;
  color: #ffffff;
}

.about-stat strong {
  color: #d8bd92;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  font-weight: 300;
}

.about-stat span {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.team-section {
  padding: clamp(64px, 7vw, 100px) clamp(18px, 6vw, 90px);
  text-align: center;
  background: #f8f8f6;
}

.team-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-grid article {
  padding: 30px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.team-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(27, 24, 20, 0.1);
}

.team-grid img {
  width: 122px;
  height: 122px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
}

.team-grid h3 {
  color: #2e2d2b;
  font-size: 20px;
  font-weight: 500;
}

.team-grid p {
  color: #8a8885;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.about-contact {
  padding: clamp(64px, 7vw, 100px) clamp(18px, 6vw, 90px);
  background: #ffffff;
  text-align: center;
}

.about-contact-grid {
  width: min(980px, 100%);
  margin: 34px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-contact-grid p {
  margin: 0;
  padding: 24px;
  background: #fbfaf7;
  color: #68645d;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .about-split,
  .about-contact-grid,
  .team-grid,
  .project-intro,
  .map-section {
    grid-template-columns: 1fr;
  }

  .location-grid,
  .amenities-list ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-split-alt .about-media {
    order: 2;
  }

  .about-split-alt .about-copy {
    order: 1;
  }

  .about-media,
  .about-split {
    min-height: auto;
  }

  .about-media {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px 10px 8px;
    min-height: 57px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 0;
    backdrop-filter: blur(2px);
  }

  .nav-links {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(68vw, 245px);
    height: 100svh;
    display: flex;
    padding: 92px 22px 28px;
    background:
      linear-gradient(160deg, rgba(21, 18, 14, 0.98), rgba(70, 55, 37, 0.94)),
      radial-gradient(circle at top left, rgba(216, 189, 146, 0.22), transparent 44%);
    color: var(--white);
    border-right: 1px solid rgba(216, 189, 146, 0.35);
    box-shadow: 28px 0 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-height: none;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.32s ease;
  }

  .nav-links::before {
    content: "Siyal Developers";
    margin-bottom: 28px;
    color: #d8bd92;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .nav-links > a,
  .nav-links .nav-item > a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(216, 189, 146, 0.18);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    letter-spacing: 2.4px;
  }

  .nav-links > a:hover,
  .nav-links .nav-item > a:hover {
    color: #d8bd92;
    transform: translateX(5px);
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 4px 0 0 14px;
    background: transparent;
    box-shadow: none;
    color: inherit;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .nav-links {
    transform: translateX(0);
  }

  .header-actions {
    display: flex !important;
    position: fixed;
    top: 50%;
    right: 12px;
    margin-left: 0;
    gap: 10px;
    z-index: 60;
    transform: translateY(-50%);
    align-items: center;
  }

  .brand img {
    width: 83px;
  }

  .desktop-label {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 80;
  }

  .site-header.is-open .menu-toggle {
    position: fixed;
    top: 16px;
    left: 14px;
    color: var(--white);
  }

  .contact-link,
  .whatsapp-link {
    width: 34px;
    height: 34px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    letter-spacing: 0;
  }

  .nav-svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-link {
    color: #35c66a;
  }

  .split-info,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 380px;
  }

  .site-footer,
  .copyright {
    text-align: left;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .floating-form-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .sticky-brochure {
    left: auto;
    right: -1px;
    top: 50%;
    bottom: auto;
    width: 42px;
    min-height: 160px;
    max-width: none;
    padding: 14px 0;
    transform: translate(102%, -50%);
  }

  .sticky-brochure.is-visible {
    transform: translate(0, -50%);
  }

  .sticky-brochure:hover {
    transform: translate(-4px, -50%);
  }

  .sticky-brochure span {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .hero {
    min-height: 100svh;
    overflow: visible;
    padding: 112px 18px 42px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-content,
  .hero-copy {
    width: 100%;
    max-width: 354px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .gallery-stack {
    padding-top: 0;
  }

  .project-intro,
  .floor-section,
  .location-points,
  .amenities-section,
  .interior-gallery,
  .map-section {
    padding: 54px 18px;
  }

  .project-intro-copy h2,
  .floor-section h2,
  .location-points h2,
  .amenities-section h2,
  .interior-gallery h2,
  .map-section h2 {
    font-size: 31px;
    letter-spacing: 2.8px;
  }

  .project-intro-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .project-facts,
  .floor-grid,
  .location-grid,
  .amenities-list ol {
    grid-template-columns: 1fr;
  }

  .project-facts div,
  .floor-grid article,
  .location-grid div {
    min-height: 118px;
    padding: 20px;
  }

  .amenity-gallery article,
  .amenity-gallery img {
    min-height: 300px;
  }

  .amenities-list summary {
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .amenities-list ol {
    padding: 0 16px 24px;
    font-size: 13px;
  }

  .amenities-list li {
    min-height: 46px;
    padding: 12px 12px 12px 44px;
  }

  .amenities-list li::before {
    left: 12px;
    width: 20px;
    height: 20px;
  }

  .map-section iframe {
    min-height: 320px;
    height: 320px;
  }

  .carousel-panel {
    display: contents;
  }

  .interior-card {
    flex: 0 0 100%;
    animation: none;
    padding: 12px 40px;
    background: transparent;
    box-shadow: none;
  }

  .interior-card-featured {
    transform: none;
  }

  .interior-card figcaption {
    left: 50px;
    right: 50px;
    bottom: 14px;
    font-size: 11px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .scene-card {
    top: 0;
    min-height: 100vh;
  }

  .scene-card img {
    min-height: 100vh;
  }

  .scene-card span {
    top: 84px;
    left: 18px;
    font-size: 24px;
  }

  .info-panel {
    min-height: auto;
    padding: 54px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

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

  .leadership {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .leader-image {
    min-height: 360px;
  }

  .leader-content {
    padding: 46px 18px;
  }

  .leader-content p {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .leader-content h2 {
    font-size: 27px;
    letter-spacing: 4px;
  }

  .info-panel h2 {
    margin-bottom: 34px;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .why-kicker {
    font-size: 17px;
    letter-spacing: 5px;
  }

  .benefit-item {
    min-height: 148px;
    padding: 20px 10px;
  }

  .benefit-item span {
    font-size: 13px;
    letter-spacing: 1.2px;
  }

  .contact-image {
    display: none;
  }

  .contact-section {
    min-height: auto;
  }

  .contact-form-wrap {
    padding: 58px 18px;
  }

  .faq-item button {
    min-height: 74px;
    font-size: 18px;
  }

  .modal-dialog {
    width: min(416px, calc(100% - 34px));
    max-height: calc(100svh - 34px);
    padding: 22px 16px;
  }

  .modal-dialog h2 {
    font-size: 30px;
  }

  .modal-dialog .lead-form {
    gap: 11px;
    margin-top: 20px;
  }

  .modal-dialog .lead-form input,
  .modal-dialog .lead-form select,
  .modal-dialog .lead-form textarea {
    min-height: 44px;
  }

  .modal-dialog .lead-form textarea {
    min-height: 84px;
  }

  .modal-dialog .btn {
    min-height: 42px;
  }

  .modal-dialog .modal-close {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}
