:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #f8f4ec;
  --beige: #e8dfd0;
  --beige-strong: #d4c39f;
  --taupe: #746a55;
  --taupe-dark: #312b22;
  --taupe-deep: #1f1b16;
  --gold: #b99455;
  --gold-dark: #8d6f38;
  --charcoal: #1c1916;
  --graphite: #37322c;
  --muted: #746c60;
  --line: rgba(29, 29, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 55px rgba(20, 20, 20, 0.13);
  --whatsapp: #25d366;
  --display-font: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  --body-font: "Avenir Next", Avenir, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(44, 39, 31, 0.84);
  border-bottom: 1px solid rgba(212, 195, 159, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  width: 108px;
  max-height: 34px;
  object-fit: contain;
}

.header-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px 8px 10px;
  color: var(--charcoal);
  background: #efe7d6;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-cta span {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 88vh;
  min-height: 88svh;
  padding: 112px 0 64px;
  color: var(--white);
  background-image:
    radial-gradient(circle at 50% 40%, rgba(116, 106, 85, 0.22), rgba(31, 27, 22, 0.62) 42%, rgba(31, 27, 22, 0.86) 100%),
    linear-gradient(180deg, rgba(31, 27, 22, 0.72), rgba(31, 27, 22, 0.5) 40%, rgba(31, 27, 22, 0.94)),
    url("assets/building-perspective.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("assets/brand/cover-logo-large.png") center top 88px / 560px auto no-repeat;
  opacity: 0.11;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(31, 27, 22, 0.96), rgba(31, 27, 22, 0));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow {
  color: #e8c878;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--display-font);
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 2.24rem;
  line-height: 1.08;
  font-weight: 600;
}

h2,
h3 {
  font-family: var(--display-font);
  font-weight: 600;
}

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

.hero-logo {
  width: min(330px, 78vw);
  margin-bottom: 26px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
}

.hero-subline {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #f1d58f;
  background: rgba(116, 106, 85, 0.32);
  border: 1px solid rgba(212, 195, 159, 0.46);
  border-radius: 6px;
  font-size: 1.32rem;
  font-weight: 900;
}

.hero .hero-actions {
  justify-content: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-actions,
.section-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  color: var(--charcoal);
  background: linear-gradient(180deg, #f4d891, #c99a42);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline {
  color: var(--charcoal);
  background: var(--white);
  border-color: rgba(185, 147, 74, 0.45);
}

.btn-card {
  width: 100%;
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.hero-note,
.urgency {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.proof-strip {
  background: var(--taupe-deep);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
}

.proof-grid div {
  min-height: 96px;
  padding: 18px 12px;
  background: var(--taupe-deep);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: #e6c676;
  font-size: 1rem;
}

.proof-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.section {
  padding: 70px 0;
  background: var(--paper);
}

.section-tint {
  background:
    linear-gradient(90deg, rgba(243, 238, 229, 0.96), rgba(243, 238, 229, 0.92)),
    url("assets/brand/cover-mark.png") right -180px top -120px / 430px auto no-repeat;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.97), rgba(31, 27, 22, 0.92)),
    url("assets/brand/cover-logo-large.png") left -220px top -160px / 620px auto no-repeat,
    var(--taupe-deep);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.location-copy h2,
.project-intro-copy h2,
.investment-copy h2,
.trust-copy h2,
.final-cta h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 900;
}

.section-heading h2,
.location-copy h2,
.project-intro-copy h2,
.investment-copy h2,
.trust-copy h2,
.final-cta h2 {
  font-weight: 600;
}

.section-heading p,
.location-copy p,
.trust-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1rem;
}

.section-dark .section-heading p,
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.project-intro {
  background:
    linear-gradient(180deg, rgba(248, 244, 236, 0.98), rgba(248, 244, 236, 0.94)),
    url("assets/brand/cover-mark.png") right -170px top -120px / 380px auto no-repeat;
}

.project-intro-layout {
  display: grid;
  gap: 22px;
}

.facade-visual {
  overflow: hidden;
  margin: 0;
  background: var(--taupe-dark);
  border: 1px solid rgba(185, 147, 74, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.facade-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.project-intro-copy h2 {
  margin-bottom: 18px;
}

.compact-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compact-points li {
  position: relative;
  min-height: 38px;
  padding: 9px 12px 9px 34px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(116, 106, 85, 0.14);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
}

.compact-points li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.interest-grid {
  display: grid;
  gap: 14px;
}

.interest-card {
  min-height: 178px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--charcoal);
  background: #ead8b4;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
}

.interest-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.interest-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-cta {
  align-items: center;
  margin-top: 28px;
}

.location-layout,
.investment-layout,
.trust-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.location-copy,
.investment-copy,
.trust-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--graphite);
  font-weight: 800;
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.map-visual,
.trust-visual {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(185, 147, 74, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.map-visual figcaption,
.trust-visual figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.unit-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(26, 26, 26, 0.08);
}

.plan-frame {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 14px;
  background: #f4f0e9;
  border-bottom: 1px solid var(--line);
}

.plan-frame img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.unit-content {
  padding: 20px;
}

.unit-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.unit-content h3 {
  margin-bottom: 14px;
  font-size: 1.52rem;
  line-height: 1.1;
}

.unit-content dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.unit-content dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
}

.unit-content dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.unit-content dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 900;
  text-align: right;
}

.facility-grid {
  display: grid;
  gap: 14px;
}

.facility-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #242424;
}

.facility-item img {
  height: 100%;
  min-height: 230px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 400ms ease;
}

.facility-item:hover img {
  transform: scale(1.035);
}

.facility-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 16px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  font-weight: 900;
}

.investment-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(185, 147, 74, 0.38);
  border: 1px solid rgba(185, 147, 74, 0.45);
  border-radius: 8px;
}

.investment-panel div {
  padding: 20px;
  background: #222;
}

.investment-panel span,
.investment-panel strong {
  display: block;
}

.investment-panel span {
  margin-bottom: 6px;
  color: #d9bd7f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.investment-panel strong {
  color: var(--white);
  font-size: 1rem;
}

#investment {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.95), rgba(251, 250, 247, 0.9)),
    url("assets/aerial-view.webp") center / cover;
}

.trust-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.developer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 96px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(185, 147, 74, 0.22);
  border-radius: 8px;
}

.developer-logo-card img {
  width: 132px;
  height: auto;
}

.trust-facts span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 147, 74, 0.22);
  border-radius: 6px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.final-cta {
  position: relative;
  isolation: isolate;
  padding: 78px 0;
  color: var(--white);
  background-color: var(--taupe-dark);
  background-image:
    linear-gradient(90deg, rgba(31, 27, 22, 0.96), rgba(75, 67, 53, 0.88)),
    url("assets/brand/cover-logo-large.png");
  background-position: center, right -220px center;
  background-size: cover, 640px auto;
  background-repeat: no-repeat;
}

.final-cta-inner {
  max-width: 760px;
  text-align: left;
}

.final-cta-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.final-cta-copy {
  max-width: 620px;
}

.cta-logo {
  width: min(235px, 68vw);
  margin-bottom: 24px;
  opacity: 0.94;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .urgency {
  color: #f0d38b;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 232, 0.98));
  border: 1px solid rgba(212, 195, 159, 0.62);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: #38332e;
  font-size: 0.82rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--charcoal);
  background: #fffdf8;
  border: 1px solid rgba(116, 106, 85, 0.24);
  border-radius: 6px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 147, 74, 0.17);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
}

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  color: #102517;
  background: var(--whatsapp);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  font-weight: 900;
}

.floating-whatsapp span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  font-size: 0.9rem;
}

.mobile-sticky {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(18, 18, 18, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: #0f2718;
  background: var(--whatsapp);
  border-radius: 6px;
  font-weight: 900;
}

.site-footer {
  padding: 34px 0 92px;
  color: rgba(255, 255, 255, 0.72);
  background: #121212;
}

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

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  .hero-actions,
  .section-cta {
    flex-direction: row;
  }

  .hero-actions .btn,
  .section-cta .btn {
    width: auto;
  }

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

@media (min-width: 780px) {
  .container {
    width: min(100% - 56px, 1160px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-wordmark {
    width: 140px;
    max-height: 38px;
  }

  .header-cta span {
    display: inline-block;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .hero {
    min-height: 86vh;
    min-height: 86svh;
    padding-top: 124px;
    background-position: center;
  }

  h1 {
    font-size: 3.42rem;
  }

  .hero-logo {
    width: 390px;
  }

  .hero-subline {
    font-size: 1.72rem;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 92px 0;
  }

  .project-intro-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
  }

  .facade-visual img {
    aspect-ratio: 4 / 5;
  }

  .section-heading h2,
  .location-copy h2,
  .investment-copy h2,
  .trust-copy h2,
  .final-cta h2 {
    font-size: 2.86rem;
  }

  .location-layout,
  .investment-layout,
  .trust-layout {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 56px;
  }

  .investment-layout {
    grid-template-columns: 1fr 0.92fr;
  }

  .trust-layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .mobile-sticky {
    display: none;
  }

  .floating-whatsapp {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .footer-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .final-cta-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
  }

  .form-row-full,
  .form-submit,
  .form-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .interest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .unit-card {
    align-content: start;
  }

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