:root {
  color-scheme: dark;
  --page-bg: #071411;
  --header-glass: rgba(223, 236, 230, 0.09);
  --panel-stroke: rgba(255, 255, 255, 0.14);
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.58);
  --hero-image:
    url("../images/hero-image1.png");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(183, 207, 191, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(215, 196, 167, 0.14), transparent 26%),
    var(--page-bg);
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 16rem;
  left: -9rem;
  width: 16rem;
  height: 16rem;
  background: rgba(183, 207, 191, 0.14);
}

.page-shell::after {
  right: -6rem;
  bottom: 12rem;
  width: 18rem;
  height: 18rem;
  background: rgba(215, 196, 167, 0.12);
}

.site-header {
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}


.header-bar {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 220ms ease;
}


.logo-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: white;
}

.logo-mark {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.nav-panel {
  display: none;
  justify-self: center;
}

.nav-link {
  border-radius: 999px;
  padding: 0.5rem 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-link-active {
  background: white;
  color: #071411;
  padding: 0.5rem 1.15rem;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.nav-link-active:hover {
  color: #071411;
  background: white;
}

.header-socials {
  display: none;
  justify-self: end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  color: #071411;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.82);
  color: #071411;
  transform: translateY(-2px);
}

.social-link svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: currentColor;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.34rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  padding: 0 0.85rem;
}

@media (min-width: 1280px) {
  .nav-panel {
    display: flex;
  }

  .header-socials {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}

.mobile-menu-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 28, 24, 0.82);
  backdrop-filter: blur(26px);
}

.mobile-link {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.mobile-link:last-of-type {
  border-bottom: 0;
}

.mobile-link-active {
  color: #b7cfbf;
}

.hero-shell {
  background: #10201d;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(105deg, rgba(15, 47, 42, 0.20), rgba(23, 70, 61, 0.28) 48%, rgba(7, 20, 17, 0.20)),
    var(--hero-image) center center / cover no-repeat;
  transform: scale(1.05);
  transform-origin: center;
  transition: transform 500ms ease-out;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 20, 17, 0.14) 0%, rgba(15, 47, 42, 0.2) 38%, rgba(7, 20, 17, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 20, 17, 0.36) 0%, rgba(23, 70, 61, 0.11) 42%, rgba(7, 20, 17, 0.3) 100%);
}

.hero-content {
  transition: transform 260ms ease-out;
}

.hero-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.3vw, 6.4rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.hero-intro {
  display: flex;
  max-width: 46rem;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-description {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  gap: 0.58rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, rgba(15, 47, 42, 0.94), rgba(23, 70, 61, 0.9));
  box-shadow: 0 14px 34px rgba(7, 20, 17, 0.35);
  padding: 1rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-cta img {
  width: 0.92rem;
  height: 0.92rem;
  filter: invert(97%) sepia(8%) saturate(287%) hue-rotate(77deg) brightness(104%) contrast(96%);
}

.hero-cta:hover {
  background: linear-gradient(135deg, rgba(15, 47, 42, 1), rgba(23, 70, 61, 0.96));
  box-shadow: 0 16px 38px rgba(7, 20, 17, 0.46);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  background: linear-gradient(135deg, rgba(183, 207, 191, 0.95), rgba(162, 189, 171, 0.9));
  color: #0f2f2a;
  box-shadow: 0 14px 30px rgba(7, 20, 17, 0.2);
}

.hero-cta-secondary:hover {
  background: linear-gradient(135deg, rgba(197, 218, 203, 0.98), rgba(173, 199, 181, 0.95));
  box-shadow: 0 16px 34px rgba(7, 20, 17, 0.26);
}

.feature-card,
.detail-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(238, 244, 241, 0.1);
  backdrop-filter: blur(26px);
  box-shadow: 0 30px 70px rgba(7, 20, 17, 0.24);
}

.feature-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 28px;
  padding: 1rem;
}

.feature-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 55%),
    linear-gradient(180deg, rgba(215, 196, 167, 0.95), rgba(183, 207, 191, 0.85));
  color: #17463d;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.feature-card-copy {
  color: white;
}

.feature-card-label {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.feature-card h2 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Sora", sans-serif;
}

.feature-card p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
}

.feature-card a::after {
  content: "↗";
  font-size: 1rem;
}

.detail-card {
  border-radius: 28px;
  padding: 1.7rem;
}

.detail-label,
.section-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b7cfbf;
}

.detail-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 2.1rem;
  letter-spacing: -0.05em;
  color: white;
}

.detail-card p,
.section-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.about-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(183, 207, 191, 0.15), transparent 33%),
    radial-gradient(circle at 84% 78%, rgba(215, 196, 167, 0.1), transparent 31%),
    linear-gradient(162deg, #0b3941 0%, #08343b 55%, #062d33 100%);
}

.about-title {
  margin: 0;
  max-width: 8ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 5.1vw, 5rem);
  line-height: 1.12;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.96);
}

.about-copy-wrap {
  display: flex;
  max-width: 44rem;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.35rem;
}

.about-lead {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.about-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.5rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.about-link::after {
  content: "⌄";
  margin-left: 0.6rem;
  font-size: 0.8rem;
  transform: translateY(-1px);
}

.about-divider {
  margin-top: 4.75rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 3.25rem;
}

.about-stat {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat-label {
  margin: 0 0 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.about-stat h3 {
  margin: 0 0 0.9rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 2.5vw, 2.95rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.96);
}

.about-stat p {
  margin: 0;
  max-width: 18rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.about-gallery-section {
  position: relative;
}

.about-gallery-head {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(183, 207, 191, 0.2);
}

.about-gallery-head h2 {
  margin: 0;
  max-width: 16ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(242, 249, 246, 0.96);
}

.about-gallery-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.about-gallery-filters {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.about-gallery-filter {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.2rem;
  text-align: left;
  font-size: 0.96rem;
  line-height: 1.4;
  color: rgba(211, 225, 217, 0.8);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.about-gallery-filter:hover {
  color: rgba(244, 250, 247, 0.96);
  transform: translateX(2px);
}

.about-gallery-filter.is-active {
  color: #ffffff;
  font-weight: 700;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-project-card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    box-shadow 220ms ease;
}

.about-project-card.is-hidden {
  display: none;
}

.about-project-card.is-hiding,
.about-project-card.is-showing {
  opacity: 0;
  transform: translateY(10px);
}

.about-project-card:hover {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.about-project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-project-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  line-height: 1.3;
  color: rgba(245, 250, 247, 0.98);
}

.about-project-card p {
  margin: 0.55rem 0 0;
  max-width: 40ch;
  font-size: 0.97rem;
  line-height: 1.72;
  color: rgba(212, 226, 218, 0.74);
}

.showcase-section {
  background: #ffffff;
}

.about-showcase {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  min-height: clamp(320px, 40vw, 520px);
  margin: 0 auto;
  border-radius: 0;
  background: #111111;
  box-shadow: 0 30px 70px rgba(7, 20, 17, 0.12);
}

.about-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 40vw, 520px);
  object-fit: cover;
}

.about-showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 20, 17, 0.18), rgba(7, 20, 17, 0.35));
}

.about-showcase-kicker {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.about-showcase-title {
  margin: 0;
  max-width: 14ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.97);
}

.about-showcase-copy {
  margin: 1.4rem 0 0;
  max-width: 50rem;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
}

.about-showcase-faces {
  display: flex;
  margin-top: 2rem;
}

.about-showcase-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-left: -0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.9);
}

.about-showcase-avatar:first-child {
  margin-left: 0;
}

.about-showcase-rating {
  margin-top: 1.6rem;
  text-align: center;
}

.about-showcase-stars {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #facc15;
}

.about-showcase-rating p {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.section-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  color: white;
}

.services-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 207, 191, 0.16), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(215, 196, 167, 0.1), transparent 34%),
    linear-gradient(160deg, #0a3a41 0%, #083238 48%, #062a2f 100%);
}

.services-heading {
  margin: 0;
  max-width: 100%;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.services-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.services-subcopy {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.investment-card {
  border: 1px solid rgba(214, 198, 164, 0.3);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(5, 37, 41, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 38px rgba(5, 18, 16, 0.22);
  padding: 1rem 1rem 0.95rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.investment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 224, 184, 0.55);
  box-shadow:
    0 22px 48px rgba(5, 18, 16, 0.34),
    0 0 0 1px rgba(242, 224, 184, 0.12) inset;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(5, 37, 41, 0.84);
}

.investment-card:hover .investment-location {
  color: rgba(250, 241, 222, 0.98);
}

.investment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.investment-location {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
}

.investment-badge {
  border: 1px solid rgba(214, 198, 164, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 224, 184, 0.94);
  background: rgba(214, 198, 164, 0.1);
}

.investment-note {
  margin: 0.78rem 0 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(226, 236, 230, 0.72);
}

.investment-metrics {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.92rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(214, 198, 164, 0.16);
}

.investment-metrics p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.9rem;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(229, 235, 231, 0.8);
}

.investment-metrics strong {
  font-weight: 700;
  color: rgba(242, 224, 184, 0.96);
}

.investment-metrics span {
  font-weight: 600;
  color: rgba(247, 250, 248, 0.95);
}

.featured-plot-section {
  background: #ffffff;
}

.featured-plot-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: clamp(540px, 58vw, 700px);
  background: #0d2926;
  box-shadow: 0 26px 60px rgba(8, 22, 20, 0.2);
}

.featured-plot-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-plot-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.featured-plot-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  align-items: end;
  gap: 2rem;
  min-height: clamp(540px, 58vw, 700px);
  padding: 2.2rem;
}

.featured-plot-left {
  max-width: 690px;
}

.featured-plot-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 224, 184, 0.96);
}

.featured-plot-title {
  margin: 0.8rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.featured-plot-subtitle {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.94);
}

.featured-plot-copy {
  margin: 1rem 0 0;
  max-width: 56ch;
  font-size: 0.99rem;
  line-height: 1.75;
  color: rgba(231, 239, 233, 0.82);
}

.featured-plot-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
  margin-top: 1.35rem;
}

.featured-plot-specs p,
.featured-plot-stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.featured-plot-specs p {
  margin: 0;
  display: grid;
  gap: 0.22rem;
  padding: 0.72rem 0.8rem;
}

.featured-plot-specs span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.featured-plot-specs strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.featured-plot-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.featured-plot-cta,
.featured-plot-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-plot-cta {
  background: linear-gradient(135deg, #15544b, #1d6a5d);
  color: #ffffff;
}

.featured-plot-phone {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.featured-plot-right {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
  height: 560px;
}

.featured-plot-stat {
  position: absolute;
  margin: 0;
  width: 172px;
  padding: 1.02rem 1.08rem;
}

.featured-plot-stat:nth-child(1) {
  top: 14px;
  left: 14px;
}

.featured-plot-stat:nth-child(2) {
  top: 150px;
  right: 4px;
}

.featured-plot-stat:nth-child(3) {
  top: 308px;
  left: 10px;
}

.featured-plot-stat:nth-child(4) {
  top: 444px;
  right: 0;
}

.featured-plot-stat-label {
  margin: 0.32rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(240, 247, 243, 0.9);
}

.featured-plot-stat h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.why-choose-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(183, 207, 191, 0.14), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(215, 196, 167, 0.11), transparent 32%),
    linear-gradient(162deg, #0c3d45 0%, #09353b 52%, #072d33 100%);
}

.why-choose-top {
  display: block;
}

.why-choose-top > div:first-child {
  padding-right: 0;
}

.why-choose-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.9);
}

.why-choose-title {
  margin: 0.5rem 0 0;
  max-width: 8.6ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.why-choose-feature {
  padding-top: 0.15rem;
}

.why-choose-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.4rem;
}

.why-choose-feature h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.why-choose-feature p {
  margin: 0.75rem 0 0;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(227, 238, 233, 0.68);
}

.why-choose-gallery {
  display: flex;
  overflow: hidden;
  gap: 0.35rem;
  margin-top: 3rem;
  scroll-behavior: smooth;
}

.why-choose-gallery img {
  display: block;
  width: calc((100% - (0.35rem * 3)) / 4);
  min-width: calc((100% - (0.35rem * 3)) / 4);
  flex: 0 0 calc((100% - (0.35rem * 3)) / 4);
  aspect-ratio: 1 / 0.52;
  object-fit: cover;
}

.why-choose-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.why-choose-arrows {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.why-choose-arrows button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-choose-arrows button img {
  width: 0.95rem;
  height: 0.95rem;
  filter: invert(16%) sepia(20%) saturate(1150%) hue-rotate(138deg) brightness(89%) contrast(96%);
}

.why-choose-arrows button:disabled {
  opacity: 0.45;
}

.why-choose-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(236, 244, 241, 0.85);
}

.trust-proof-section {
  background: #f5f7f6;
}

.trust-proof-head {
  max-width: 760px;
}

.trust-proof-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17463d;
}

.trust-proof-head h2 {
  margin: 0.6rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0c2420;
}

.trust-testimonials {
  display: flex;
  overflow: hidden;
  gap: 0.8rem;
  margin-top: 2rem;
  scroll-behavior: smooth;
}

.trust-testimonial {
  position: relative;
  margin: 0;
  width: calc((100% - (0.8rem * 2)) / 3);
  min-width: calc((100% - (0.8rem * 2)) / 3);
  flex: 0 0 calc((100% - (0.8rem * 2)) / 3);
  border: 1px solid rgba(12, 36, 32, 0.12);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.35rem;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  box-shadow: 0 12px 28px rgba(12, 36, 32, 0.06);
}

.trust-testimonial::before {
  content: "“";
  position: absolute;
  top: 0.65rem;
  left: 0.95rem;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(23, 70, 61, 0.16);
}

.trust-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(23, 70, 61, 0.16);
  margin-bottom: 0.85rem;
}

.trust-testimonial p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(12, 36, 32, 0.82);
}

.trust-testimonial h3 {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #17463d;
}

.trust-testimonials-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}

.trust-testimonials-arrows {
  display: flex;
  gap: 0.55rem;
}

.trust-testimonials-arrows button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: #0f2f2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-testimonials-arrows button img {
  width: 0.95rem;
  height: 0.95rem;
  filter: invert(100%) brightness(200%);
}

.trust-testimonials-arrows button:disabled {
  opacity: 0.45;
}

.why-dubai-section {
  background: #ffffff;
}

.why-dubai-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17463d;
}

.why-dubai-head h2 {
  margin: 0.6rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0b2420;
}

.why-dubai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.why-dubai-summary {
  margin-top: 1.1rem;
}

.why-dubai-eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #887148;
}

.why-dubai-summary h3 {
  margin: 0.45rem 0 0;
  max-width: 28ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
  color: #0f2f2a;
}

.why-dubai-summary p {
  margin: 0.7rem 0 0;
  max-width: 54ch;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(12, 36, 32, 0.72);
}

.why-dubai-request-btn {
  display: inline-flex;
  margin-top: 0.85rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #15544b, #1d6a5d);
  padding: 0.68rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.why-dubai-highlights {
  margin-top: 1.2rem;
}

.why-dubai-highlights-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  color: #0b2420;
}

.why-dubai-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.why-dubai-highlight-grid article {
  margin: 0;
  border: 1px solid rgba(12, 36, 32, 0.1);
  border-radius: 10px;
  background: #f8faf9;
  padding: 0.75rem 0.85rem;
}

.why-dubai-highlight-grid h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f2f2a;
}

.why-dubai-highlight-grid p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(12, 36, 32, 0.7);
}

.why-dubai-contact {
  margin-top: 1.2rem;
}

.why-dubai-contact p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: #8f7545;
}

.why-dubai-contact a,
.why-dubai-contact span {
  display: block;
  margin-top: 0.48rem;
  font-size: 0.9rem;
  color: rgba(12, 36, 32, 0.78);
}

.why-dubai-right img {
  width: 100%;
  min-height: 680px;
  height: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.why-dubai-brand-note {
  margin-top: 0.95rem;
  text-align: right;
}

.why-dubai-brand-note h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.45rem;
  color: #17463d;
}

.why-dubai-brand-note p {
  margin: 0.38rem 0 0;
  font-size: 0.88rem;
  color: rgba(23, 70, 61, 0.84);
}

.faq-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 207, 191, 0.15), transparent 33%),
    radial-gradient(circle at 85% 80%, rgba(215, 196, 167, 0.1), transparent 30%),
    linear-gradient(160deg, #0b3941 0%, #08343b 55%, #062d33 100%);
}

.faq-head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.92);
}

.faq-head h2 {
  margin: 0.6rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.05rem 1.25rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  font-weight: 600;
}

.faq-question img {
  width: 1rem;
  height: 1rem;
  filter: invert(100%);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question img {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(227, 238, 233, 0.82);
}

.final-cta-section {
  background: #ffffff;
}

.final-cta-shell {
  border: 1px solid rgba(12, 36, 32, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  padding: 2rem;
}

.final-cta-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17463d;
}

.final-cta-shell h2 {
  margin: 0.75rem 0 0;
  max-width: 20ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #0b2420;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.final-cta-primary {
  background: linear-gradient(135deg, rgba(15, 47, 42, 0.94), rgba(23, 70, 61, 0.9));
  box-shadow: 0 14px 34px rgba(7, 20, 17, 0.35);
  color: #ffffff;
}

.final-cta-primary:hover {
  background: linear-gradient(135deg, rgba(15, 47, 42, 1), rgba(23, 70, 61, 0.96));
  box-shadow: 0 16px 38px rgba(7, 20, 17, 0.46);
  transform: translateY(-2px);
}

.final-cta-secondary {
  border: 0;
  background: linear-gradient(135deg, rgba(183, 207, 191, 0.95), rgba(162, 189, 171, 0.9));
  box-shadow: 0 14px 30px rgba(7, 20, 17, 0.2);
  color: #0f2f2a;
}

.final-cta-secondary:hover {
  background: linear-gradient(135deg, rgba(197, 218, 203, 0.98), rgba(173, 199, 181, 0.95));
  box-shadow: 0 16px 34px rgba(7, 20, 17, 0.26);
  transform: translateY(-2px);
}

.blog-section {
  background: #ffffff;
}

.blog-head {
  max-width: 780px;
}

.blog-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17463d;
}

.blog-head h2 {
  margin: 0.65rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0b2420;
}

.blog-grid {
  display: flex;
  overflow: hidden;
  gap: 0.85rem;
  margin-top: 1.5rem;
  scroll-behavior: smooth;
}

.blog-card {
  width: calc((100% - (0.85rem * 2)) / 3);
  min-width: calc((100% - (0.85rem * 2)) / 3);
  flex: 0 0 calc((100% - (0.85rem * 2)) / 3);
  overflow: hidden;
  border: 1px solid rgba(12, 36, 32, 0.1);
  border-radius: 14px;
  background: #ffffff;
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
}

.blog-card-body {
  padding: 0.9rem 0.95rem 1rem;
}

.blog-meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #17463d;
}

.blog-card-body h3 {
  margin: 0.5rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
  line-height: 1.38;
  color: #0f2f2a;
}

.blog-card-body a {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #17463d;
}

.blog-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.9rem;
}

.blog-arrows {
  display: flex;
  gap: 0.55rem;
}

.blog-arrows button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: #0f2f2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-arrows button img {
  width: 0.95rem;
  height: 0.95rem;
  filter: invert(100%) brightness(200%);
}

.blog-arrows button:disabled {
  opacity: 0.45;
}

.contact-form-section {
  background:
    radial-gradient(circle at top left, rgba(183, 207, 191, 0.22), transparent 32%),
    #f5f7f6;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.contact-form-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17463d;
}

.contact-form-left h2 {
  margin: 0.65rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0b2420;
}

.contact-form-left > p {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(12, 36, 32, 0.72);
}

.contact-form-details {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 36, 32, 0.12);
}

.contact-form-details a,
.contact-form-details span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: rgba(12, 36, 32, 0.86);
}

.contact-form-right {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.contact-form-grid label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 36, 32, 0.66);
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(12, 36, 32, 0.24);
  border-radius: 0;
  padding: 0.55rem 0.05rem 0.6rem;
  font-size: 0.9rem;
  color: #0f2f2a;
  background: transparent;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  outline: none;
  box-shadow: none;
}

.contact-form-grid input:focus {
  border-bottom-color: #1d6a5d;
}

.contact-form-grid textarea {
  resize: vertical;
  min-height: 110px;
  border: 0;
  border-bottom: 1px solid rgba(12, 36, 32, 0.24);
  border-radius: 0;
  padding: 0.55rem 0.05rem 0.6rem;
  background: transparent;
}

.contact-form-grid textarea:focus {
  border-bottom-color: #1d6a5d;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form-right button {
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #15544b, #1d6a5d);
  padding: 0.94rem 1.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-page .contact-form-section {
  background: transparent;
}

.contact-page .contact-form-kicker {
  color: rgba(183, 207, 191, 0.92);
}

.contact-page .contact-form-left h2 {
  color: rgba(245, 250, 247, 0.97);
}

.contact-page .contact-form-left > p {
  color: rgba(216, 230, 223, 0.82);
}

.contact-page .contact-form-details {
  border-top-color: rgba(183, 207, 191, 0.22);
}

.contact-page .contact-form-details a,
.contact-page .contact-form-details span {
  color: rgba(236, 245, 240, 0.9);
}

.contact-page .contact-form-grid label {
  color: rgba(190, 216, 200, 0.82);
}

.contact-page .contact-form-grid input,
.contact-page .contact-form-grid textarea {
  border-bottom-color: rgba(183, 207, 191, 0.3);
  color: rgba(245, 250, 247, 0.96);
}

.contact-page .contact-form-grid input::placeholder,
.contact-page .contact-form-grid textarea::placeholder {
  color: rgba(217, 231, 223, 0.56);
}

.contact-page .contact-form-grid input:focus,
.contact-page .contact-form-grid textarea:focus {
  border-bottom-color: rgba(183, 207, 191, 0.86);
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr);
  gap: 1.35rem;
  margin-top: 2rem;
}

.contact-page-info,
.contact-page-form {
  border: 1px solid rgba(183, 207, 191, 0.2);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(14, 44, 39, 0.82), rgba(8, 24, 21, 0.9));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  padding: 1.35rem;
}

.contact-page-info-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.95);
}

.contact-page-info h2 {
  margin: 0.72rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: rgba(244, 250, 247, 0.97);
}

.contact-page-info > p {
  margin: 0.82rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(218, 231, 224, 0.82);
}

.contact-page-info-list {
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(183, 207, 191, 0.2);
}

.contact-page-info-list a,
.contact-page-info-list span {
  display: block;
  margin-top: 0.52rem;
  font-size: 0.9rem;
  color: rgba(238, 246, 242, 0.9);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-page-grid label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(190, 216, 200, 0.85);
}

.contact-page-grid input,
.contact-page-grid textarea {
  width: 100%;
  border: 1px solid rgba(183, 207, 191, 0.28);
  border-radius: 12px;
  padding: 0.68rem 0.78rem;
  font-size: 0.9rem;
  color: rgba(245, 250, 247, 0.96);
  background: rgba(255, 255, 255, 0.03);
}

.contact-page-grid input::placeholder,
.contact-page-grid textarea::placeholder {
  color: rgba(217, 231, 223, 0.52);
}

.contact-page-grid input:focus,
.contact-page-grid textarea:focus {
  outline: none;
  border-color: rgba(183, 207, 191, 0.78);
  box-shadow: 0 0 0 3px rgba(183, 207, 191, 0.15);
}

.contact-page-grid textarea {
  resize: vertical;
  min-height: 122px;
}

.contact-page-wide {
  grid-column: 1 / -1;
}

.contact-page-form .hero-cta {
  margin-top: 1rem;
}

.guide-hero,
.guide-section,
.guide-cta {
  position: relative;
  background: transparent;
}

.guide-section-alt {
  background: transparent;
}

.guide-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.97);
}

.guide-intro {
  margin: 1rem 0 0;
  max-width: 74ch;
  color: rgba(226, 237, 232, 0.84);
}

.guide-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.guide-metrics article {
  border: 1px solid rgba(183, 207, 191, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 0.9rem;
}

.guide-metrics p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(190, 216, 200, 0.9);
}

.guide-metrics h3 {
  margin: 0.52rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
  color: rgba(245, 250, 247, 0.97);
}

.guide-head h2,
.guide-panel h2,
.guide-cta-shell h2 {
  margin: 0.55rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgba(246, 250, 248, 0.97);
}

.guide-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.guide-panel,
.guide-cta-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.guide-panel-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.92);
}

.guide-panel > p,
.guide-cta-shell > p {
  margin: 0.75rem 0 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(224, 236, 230, 0.82);
}

.guide-list,
.guide-steps {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.46rem;
  color: rgba(214, 228, 221, 0.82);
}

.guide-list li,
.guide-steps li {
  font-size: 0.93rem;
  line-height: 1.72;
}

.guide-steps li strong {
  color: rgba(246, 250, 248, 0.98);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.home-page .site-footer {
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 207, 191, 0.14), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(215, 196, 167, 0.1), transparent 32%),
    linear-gradient(165deg, #0b3941 0%, #08343b 58%, #072f35 100%);
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.35rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.footer-cta-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.92);
}

.footer-cta h2 {
  margin: 0.7rem 0 0;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.97);
}

.footer-cta > p {
  margin: 0.75rem 0 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(218, 231, 224, 0.8);
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-cta-primary,
.footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-cta-primary {
  background: linear-gradient(135deg, rgba(15, 47, 42, 0.94), rgba(23, 70, 61, 0.9));
  color: #ffffff;
}

.footer-cta-secondary {
  border: 1px solid rgba(183, 207, 191, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 244, 241, 0.92);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.98);
}

.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 40ch;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(218, 231, 224, 0.76);
}

.footer-links p,
.footer-contact p,
.footer-social p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(183, 207, 191, 0.9);
}

.footer-links a,
.footer-contact a,
.footer-social a,
.footer-contact span {
  display: block;
  margin-top: 0.62rem;
  font-size: 0.9rem;
  color: rgba(236, 244, 241, 0.88);
}

.footer-social div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.62rem;
}

.footer-social .social-link {
  display: inline-flex;
  margin-top: 0;
}

.site-footer .footer-social .social-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.96);
}

.site-footer .footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.96);
  color: #071411;
  border-color: rgba(255, 255, 255, 0.96);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(206, 220, 213, 0.72);
}

.footer-bottom div {
  display: flex;
  gap: 0.9rem;
}

.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(236, 244, 241, 0.86);
}

@media (max-width: 1023px) {
  .logo-mark {
    font-size: 0.98rem;
  }

  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(3.15rem, 8.6vw, 4.9rem);
  }

  .feature-card {
    grid-template-columns: 88px 1fr;
  }

  .feature-card-thumb {
    min-height: 110px;
  }

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

  .featured-plot-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .featured-plot-right {
    position: static;
    display: grid;
    justify-self: start;
    width: min(420px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
    gap: 0.7rem;
  }

  .featured-plot-stat {
    position: static;
    width: auto;
    padding: 0.8rem 0.7rem;
  }

  .why-choose-top {
    display: block;
  }

  .why-choose-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 5.8vw, 2.7rem);
    line-height: 1.06;
  }

  .why-choose-top > div:first-child {
    padding-right: 0;
  }

  .why-choose-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }

  .trust-testimonial {
    width: calc((100% - 0.8rem) / 2);
    min-width: calc((100% - 0.8rem) / 2);
    flex: 0 0 calc((100% - 0.8rem) / 2);
  }

  .why-choose-gallery {
    gap: 0.4rem;
    margin-top: 2.2rem;
  }

  .why-choose-gallery img {
    width: calc((100% - 0.4rem) / 2);
    min-width: calc((100% - 0.4rem) / 2);
    flex: 0 0 calc((100% - 0.4rem) / 2);
    aspect-ratio: 1 / 0.56;
  }
}

@media (max-width: 767px) {
  .header-bar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-shell {
    min-height: 900px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 10.8vw, 3.8rem);
    line-height: 0.92;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-cta {
    gap: 0.5rem;
    padding: 0.86rem 1.25rem;
    letter-spacing: 0.16em;
  }

  .hero-cta img {
    width: 0.84rem;
    height: 0.84rem;
  }

  .hero-cta-group {
    gap: 0.6rem;
  }

  .about-title {
    max-width: 11ch;
  }

  .services-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .services-heading {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .services-subcopy {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .investment-card {
    padding: 0.9rem 0.9rem 0.85rem;
  }

  .investment-location {
    font-size: 1.15rem;
  }

  .investment-badge {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .investment-note {
    font-size: 0.84rem;
  }

  .investment-metrics p {
    font-size: 0.8rem;
  }

  .featured-plot-shell {
    min-height: 640px;
    border-radius: 14px;
  }

  .featured-plot-content {
    min-height: 640px;
    padding: 1.2rem;
    gap: 1rem;
  }

  .featured-plot-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .featured-plot-subtitle {
    font-size: 0.95rem;
  }

  .featured-plot-copy {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .featured-plot-specs {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .featured-plot-specs p {
    padding: 0.62rem 0.7rem;
  }

  .featured-plot-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  .featured-plot-stat {
    padding: 0.72rem 0.78rem;
  }

  .why-choose-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .why-choose-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .why-choose-feature h3 {
    font-size: 1.02rem;
  }

  .why-choose-feature p {
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .why-choose-gallery {
    gap: 0.4rem;
    margin-top: 1.3rem;
  }

  .why-choose-gallery img {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 1 / 0.62;
  }

  .why-choose-footer {
    gap: 0.8rem;
  }

  .why-choose-arrows button {
    width: 2rem;
    height: 2rem;
  }

  .why-choose-footer p {
    font-size: 0.82rem;
  }

  .trust-proof-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .trust-proof-head h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .trust-testimonial {
    padding: 1.15rem 1rem 1rem;
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }

  .trust-testimonial p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .trust-avatar {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.65rem;
  }

  .trust-testimonials {
    margin-top: 1.3rem;
  }

  .trust-testimonials-arrows button {
    width: 2rem;
    height: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .about-stat:nth-child(2n) {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .showcase-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .about-lead {
    font-size: 1.3rem;
  }

  .about-divider {
    margin-top: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .about-stat {
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-stat:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }

  .about-stat:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-showcase {
    min-height: 320px;
  }

  .about-showcase-image {
    min-height: 320px;
  }

  .about-showcase-overlay {
    padding: 1.5rem;
  }

  .about-showcase-title {
    max-width: 10ch;
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .about-showcase-copy {
    max-width: 24rem;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .about-showcase-avatar {
    width: 2.8rem;
    height: 2.8rem;
  }

  .about-showcase-stars {
    font-size: 1rem;
  }

  .about-showcase-rating p {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-thumb {
    min-height: 82px;
  }

  .detail-card {
    padding: 1.45rem;
  }
}

@media (max-width: 1023px) {
  .why-dubai-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-dubai-highlight-grid {
    grid-template-columns: 1fr;
  }

  .why-dubai-brand-note {
    text-align: left;
  }

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

  .why-dubai-right img {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .why-dubai-section,
  .faq-section,
  .final-cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .why-dubai-head h2,
  .faq-head h2,
  .final-cta-shell h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .why-dubai-summary h3 {
    font-size: 1.2rem;
  }

  .why-dubai-highlight-grid article {
    padding: 0.82rem 0.84rem;
  }

  .why-dubai-highlight-grid p,
  .faq-answer p {
    font-size: 0.86rem;
  }

  .why-dubai-brand-note h3 {
    font-size: 1.2rem;
  }

  .why-dubai-right img {
    min-height: 320px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 0.82rem 0.88rem;
  }

  .final-cta-shell {
    padding: 1.2rem;
  }

  .final-cta-actions {
    gap: 0.55rem;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
    padding: 0.82rem 1rem;
  }

  .site-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .footer-tagline {
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media (max-width: 1023px) {
  .blog-grid {
    gap: 0.8rem;
  }

  .blog-card {
    width: calc((100% - 0.8rem) / 2);
    min-width: calc((100% - 0.8rem) / 2);
    flex: 0 0 calc((100% - 0.8rem) / 2);
  }

  .contact-form-shell {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
  }

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

  .guide-grid-two {
    grid-template-columns: 1fr;
  }

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

  .about-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
  }

  .about-gallery-filter {
    border: 1px solid rgba(183, 207, 191, 0.26);
    border-radius: 999px;
    padding: 0.42rem 0.74rem;
    font-size: 0.84rem;
  }

  .about-gallery-filter:hover {
    transform: none;
  }

  .about-gallery-filter.is-active {
    border-color: rgba(183, 207, 191, 0.8);
    background: rgba(183, 207, 191, 0.18);
  }

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

  .footer-cta h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-section,
  .contact-form-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .blog-grid {
    gap: 0.7rem;
  }

  .blog-card {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }

  .contact-form-shell {
    padding: 0;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .guide-metrics {
    grid-template-columns: 1fr;
  }

  .about-gallery-head h2 {
    max-width: 100%;
  }

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

  .footer-cta {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .footer-cta h2 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .footer-cta-actions {
    gap: 0.55rem;
  }

  .footer-cta-primary,
  .footer-cta-secondary {
    width: 100%;
  }
}
