:root {
  --green-950: #12331b;
  --green-900: #194524;
  --green-800: #24612f;
  --green-700: #2f7636;
  --green-500: #5ba73a;
  --green-100: #e7f2df;
  --green-50: #f2f8ed;
  --coral: #f26b6e;
  --cream: #f7f3e9;
  --cream-dark: #ede5d3;
  --ink: #172019;
  --muted: #667069;
  --white: #ffffff;
  --line: rgba(23, 32, 25, 0.12);
  --shadow-sm: 0 10px 34px rgba(28, 54, 33, 0.09);
  --shadow-lg: 0 30px 70px rgba(17, 49, 26, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

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

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

body {
  margin: 0;
  background: #fbfaf6;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

html.maintenance-active body {
  overflow: hidden;
}

html.maintenance-active .skip-link,
html.maintenance-active .site-header,
html.maintenance-active main,
html.maintenance-active .site-footer,
html.maintenance-active .floating-whatsapp,
html.maintenance-active .lightbox {
  visibility: hidden;
  pointer-events: none;
}

.maintenance-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 28px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 82% 18%, rgba(91, 167, 58, 0.18), transparent 31%),
    radial-gradient(circle at 15% 86%, rgba(242, 107, 110, 0.11), transparent 27%),
    linear-gradient(145deg, #fbfaf6, #edf5e8);
}

.maintenance-gate[hidden] {
  display: none;
}

.maintenance-card {
  width: min(100%, 520px);
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.maintenance-logo {
  width: 154px;
  height: auto;
  margin-bottom: 34px;
}

.maintenance-card .eyebrow {
  margin-bottom: 15px;
}

.maintenance-title {
  color: var(--green-950);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.maintenance-card > p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.maintenance-form {
  display: grid;
  gap: 10px;
}

.maintenance-form > label {
  color: var(--green-950);
  font-size: 12px;
  font-weight: 700;
}

.maintenance-password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 56px;
  border: 1px solid rgba(23, 32, 25, 0.17);
  border-radius: 15px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.maintenance-password-field:focus-within {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(47, 118, 54, 0.1);
}

.maintenance-password-field input {
  min-width: 0;
  height: 54px;
  padding: 0 6px 0 17px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.maintenance-password-field button {
  margin-right: 7px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-800);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.maintenance-submit {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.maintenance-error {
  min-height: 20px;
  margin: 0;
  color: #b4393d;
  font-size: 12px;
}

.maintenance-form.has-error .maintenance-password-field {
  border-color: #d64d52;
  animation: maintenance-shake 0.28s ease;
}

.maintenance-card > small {
  display: block;
  margin-top: 22px;
  color: #8a928c;
  font-size: 10px;
  text-align: center;
}

@keyframes maintenance-shake {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-5px); }
  70% { transform: translateX(5px); }
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 8px 30px rgba(20, 51, 28, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 136px;
  height: 64px;
}

.brand img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: #344138;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--green-900);
  color: var(--white);
}

.header-cta svg,
.button svg,
.text-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 830px;
  padding: 158px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(91, 167, 58, 0.15), transparent 30%),
    linear-gradient(180deg, #f9f7f0 0%, #eef5e9 100%);
}

.hero-pattern {
  position: absolute;
  top: 85px;
  right: -180px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(47, 118, 54, 0.13);
  border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  border: 1px solid rgba(47, 118, 54, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-pattern::before {
  inset: 72px;
}

.hero-pattern::after {
  inset: 144px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
}

.eyebrow-light {
  color: #cde8ca;
}

.hero h1,
.section h2,
.advantages h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 em {
  color: var(--green-700);
  font-family: var(--font-serif);
  font-weight: 600;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 30px;
  color: #536057;
  font-size: 18px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-price span {
  color: var(--muted);
  font-size: 13px;
}

.hero-price strong {
  color: var(--green-900);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 24px;
}

.button-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(47, 118, 54, 0.2);
}

.button-primary:hover {
  background: var(--green-900);
}

.button-ghost {
  border-color: rgba(23, 32, 25, 0.2);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}

.button-light {
  background: var(--white);
  color: var(--green-900);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-note strong {
  color: var(--ink);
  font-size: 13px;
}

.avatar-stack {
  display: flex;
  padding-left: 10px;
}

.avatar-stack i {
  width: 34px;
  height: 34px;
  margin-left: -10px;
  border: 3px solid #f1f6ec;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd5b5, #8d5c44);
}

.avatar-stack i:nth-child(2) {
  background: linear-gradient(145deg, #d7eac9, #3f7045);
}

.avatar-stack i:nth-child(3) {
  background: linear-gradient(145deg, #fac3c5, #a64f50);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}

.hero-image-wrap::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 56%;
  height: 46%;
  z-index: -1;
  border-radius: 28px;
  background: var(--coral);
  content: "";
}

.hero-image-wrap > img {
  width: 100%;
  height: 445px;
  border-radius: 25px;
  object-fit: cover;
}

.hero-status {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(91, 167, 58, 0.15);
}

.hero-specs {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 326px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  background: rgba(20, 50, 28, 0.84);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-specs div {
  padding-inline: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-specs div:last-child {
  border-right: 0;
}

.hero-specs strong,
.hero-specs span {
  display: block;
}

.hero-specs strong {
  font-size: 21px;
  line-height: 1;
}

.hero-specs span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.image-disclaimer {
  margin: 17px 10px 0 0;
  color: #7a837c;
  font-size: 10px;
  text-align: right;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(23, 32, 25, 0.12);
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 30px;
  border-right: 1px solid rgba(23, 32, 25, 0.12);
}

.hero-trust div:first-child {
  padding-left: 0;
}

.hero-trust div:last-child {
  border-right: 0;
}

.hero-trust strong {
  color: var(--green-700);
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
}

.hero-trust span {
  max-width: 170px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: 120px 0;
}

.section h2,
.advantages h2,
.contact-section h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 90px;
}

.section-copy p {
  color: var(--muted);
}

.section-copy h2 {
  margin-bottom: 28px;
}

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

.section-copy strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 18px;
}

.about-media {
  position: relative;
  padding: 0 0 34px 34px;
}

.about-media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 70%;
  border-radius: 24px;
  background: var(--green-100);
  content: "";
}

.about-media > img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 255px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-badge svg {
  width: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.6;
}

.about-badge span,
.about-badge strong {
  display: block;
}

.about-badge span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.about-badge strong {
  color: var(--ink);
  font-size: 12px;
}

.unit-section {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading.centered {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
}

.unit-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.unit-image {
  position: relative;
  min-height: 560px;
}

.unit-image::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(12, 30, 17, 0.66));
  content: "";
}

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

.unit-label {
  position: absolute;
  bottom: 30px;
  left: 32px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 24px;
}

.unit-content {
  padding: 48px;
}

.unit-heading {
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: start;
  gap: 18px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.unit-heading h3,
.floorplan-card h3 {
  margin: 13px 0 0;
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.unit-heading img {
  width: 140px;
  height: 90px;
  object-fit: contain;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-sale {
  background: var(--green-100);
  color: var(--green-800);
}

.pill-soon {
  background: #fff1db;
  color: #9b6500;
}

.pill-sold {
  background: #edf0ed;
  color: #747a75;
}

.unit-features {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.unit-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.unit-feature svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--green-50);
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.unit-feature span,
.unit-feature strong {
  display: block;
}

.unit-feature span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.unit-feature strong {
  color: var(--ink);
  font-size: 13px;
}

.specification-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.specification-list div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specification-list span,
.specification-list strong {
  display: block;
}

.specification-list span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.specification-list strong {
  font-size: 11px;
}

.floorplan-card {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 64px;
  margin-top: 42px;
  padding: 60px 72px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
}

.floorplan-card .eyebrow {
  color: #bde0b7;
}

.floorplan-card h3 {
  max-width: 530px;
  margin-bottom: 20px;
  font-size: 38px;
}

.floorplan-card p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  content: "✓";
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.floorplan-image {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 420px;
  padding: 22px;
  border: 0;
  border-radius: 22px;
  background: var(--white);
  cursor: zoom-in;
}

.floorplan-image img {
  width: 100%;
  height: 375px;
  object-fit: contain;
}

.floorplan-image span {
  color: var(--muted);
  font-size: 10px;
}

.finance-section {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
  color: var(--white);
}

.finance-section::before {
  position: absolute;
  top: -180px;
  left: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.finance-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.finance-copy p {
  max-width: 480px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.68);
}

.finance-price {
  display: inline-flex;
  flex-direction: column;
  padding: 17px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.finance-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  text-transform: uppercase;
}

.finance-price strong {
  margin-top: 2px;
  font-size: 24px;
}

.calculator {
  padding: 42px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 32px 80px rgba(12, 39, 20, 0.28);
}

.calculator-top > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tenor-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: #eff3ed;
}

.tenor-options button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.tenor-options button.active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: 0 4px 12px rgba(24, 57, 31, 0.1);
}

.payment-result {
  margin: 35px 0 20px;
}

.payment-result span,
.payment-result strong,
.payment-result small {
  display: block;
}

.payment-result span {
  color: var(--muted);
  font-size: 12px;
}

.payment-result strong {
  margin: 4px 0;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.payment-result small {
  color: var(--muted);
}

.payment-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  margin: 22px 0;
}

.payment-bars span {
  width: 20%;
  height: var(--bar);
  border-radius: 6px 6px 3px 3px;
  background: var(--green-100);
  transition: height 0.35s ease, background 0.35s ease;
}

.payment-bars span.active {
  background: var(--coral);
}

.calculator-note {
  margin: 0 0 25px;
  color: #7a837c;
  font-size: 10px;
}

.calculator .button-light {
  width: 100%;
  border-color: var(--line);
  background: var(--green-900);
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 70px;
}

.split-heading p {
  margin: 0 0 8px;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cluster-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cluster-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.cluster-house-media {
  position: relative;
  height: 238px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--green-50);
}

.cluster-house-media::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(11, 31, 17, 0.62));
  content: "";
}

.cluster-house-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.photo-cattleya {
  object-position: 54% center;
}

.photo-lavender {
  object-position: 52% center;
}

.photo-lily {
  object-position: center 46%;
}

.photo-azalea {
  object-position: center 56%;
}

.photo-aster {
  object-position: center 48%;
}

.cluster-card:hover .cluster-house-photo {
  transform: scale(1.035);
}

.cluster-house-media > .pill {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 15px rgba(16, 42, 22, 0.1);
}

.cluster-mini-logo,
.cluster-mini-wordmark {
  position: absolute;
  bottom: 13px;
  left: 15px;
  z-index: 2;
  width: 116px;
  height: 62px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  object-fit: contain;
  backdrop-filter: blur(8px);
}

.cluster-mini-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #737b74;
  font-family: var(--font-serif);
  font-size: 11px;
  line-height: 1;
}

.cluster-mini-wordmark strong {
  font-size: 20px;
  font-style: italic;
}

.cluster-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 23px;
}

.cluster-card h3 {
  margin: 0;
  font-size: 22px;
}

.cluster-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.cluster-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 13px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.cluster-card-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  min-height: 430px;
  border-color: rgba(47, 118, 54, 0.18);
  background: var(--white);
}

.cluster-card-featured .cluster-house-media {
  height: 100%;
  min-height: 430px;
}

.cluster-card-featured .cluster-card-body {
  justify-content: center;
  padding: 34px;
  background: var(--green-50);
}

.cluster-card-featured .cluster-mini-logo {
  width: 138px;
  height: 76px;
}

.cluster-card-featured h3 {
  font-family: var(--font-serif);
  font-size: 39px;
}

.cluster-card-sold .cluster-house-photo {
  filter: grayscale(0.92);
  opacity: 0.76;
}

.cluster-card-sold .cluster-mini-logo {
  filter: grayscale(1);
  opacity: 0.88;
}

.advantages {
  padding: 86px 0;
  background: #122e1a;
  color: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.95fr);
}

.advantages-grid > * {
  min-height: 225px;
  padding: 10px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.advantages-grid > *:first-child {
  padding-left: 0;
}

.advantages-grid > *:last-child {
  border-right: 0;
}

.advantage-intro > span {
  color: #acd2a5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advantage-intro h2 {
  margin-top: 26px;
  font-size: 35px;
}

.advantage-number {
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 20px;
}

.advantages article h3 {
  margin: 55px 0 10px;
  font-size: 18px;
}

.advantages article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.gallery-section {
  background: #fbfaf6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-900);
  cursor: zoom-in;
}

.gallery-item.gallery-wide {
  grid-column: span 7;
}

.gallery-item.gallery-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(10, 25, 14, 0.8));
  content: "";
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.93;
}

.gallery-item > span {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  text-align: left;
}

.gallery-item b,
.gallery-item small {
  display: block;
}

.gallery-item b {
  font-size: 15px;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.gallery-disclaimer {
  margin: 18px 0 0;
  color: #7a837c;
  font-size: 10px;
}

.location-section {
  padding-top: 10px;
}

.location-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-800);
  color: var(--white);
}

.location-image {
  min-height: 620px;
}

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

.location-copy {
  align-self: center;
  padding: 60px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.location-address {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--coral);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.location-address strong {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-list {
  display: grid;
  margin: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.location-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.location-list > div > span {
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 18px;
}

.location-list p,
.location-list strong {
  display: block;
  margin: 0;
}

.location-list p {
  font-size: 11px;
}

.location-list strong {
  color: var(--white);
  font-size: 13px;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-layout .section-heading h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  color: var(--green-950);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--green-700);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 46px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.contact-grid h2 {
  max-width: 650px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-phone span,
.contact-phone strong {
  display: block;
}

.contact-phone span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-phone strong {
  font-size: 16px;
}

.site-footer {
  padding: 74px 0 26px;
  background: #102718;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 90px;
}

.footer-brand img {
  width: 165px;
  height: 92px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: #b8d9b3;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.footer-contact address {
  max-width: 290px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-style: normal;
  line-height: 1.6;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 7px 17px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: #25d366;
  color: #0e321b;
  box-shadow: 0 14px 35px rgba(21, 93, 46, 0.24);
  font-size: 11px;
  font-weight: 700;
}

.floating-whatsapp svg {
  width: 37px;
  height: 37px;
  padding: 5px;
  border-radius: 50%;
  background: var(--white);
  fill: #25d366;
}

.lightbox {
  max-width: min(1040px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 12px;
  border: 0;
  border-radius: 20px;
  background: #0e1811;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(8, 14, 9, 0.86);
  backdrop-filter: blur(5px);
}

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

.lightbox p {
  margin: 10px 8px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(10, 24, 14, 0.76);
  color: var(--white);
  cursor: pointer;
  font-size: 25px;
  line-height: 34px;
  place-items: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 130px 1fr auto;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-cta {
    padding-inline: 15px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-image-wrap > img {
    height: 400px;
  }

  .about-grid,
  .finance-grid {
    gap: 55px;
  }

  .unit-content {
    padding: 38px;
  }

  .floorplan-card {
    grid-template-columns: 1fr 340px;
    padding: 50px;
  }

  .location-copy {
    padding: 45px;
  }

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

  .advantage-intro {
    grid-column: 1 / -1;
    min-height: auto;
    margin-bottom: 44px;
    padding: 0;
    border: 0;
  }

  .advantage-intro h2 {
    max-width: 450px;
  }

  .advantages-grid article:first-of-type {
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand {
    width: 122px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 20px;
    background: rgba(251, 250, 246, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid,
  .about-grid,
  .unit-showcase,
  .finance-grid,
  .floorplan-card,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-image-wrap > img {
    height: 480px;
  }

  .hero-trust {
    margin-top: 54px;
  }

  .section {
    padding: 90px 0;
  }

  .about-grid {
    gap: 50px;
  }

  .about-media {
    max-width: 720px;
  }

  .unit-showcase {
    min-height: auto;
  }

  .unit-image {
    min-height: 480px;
  }

  .unit-content {
    padding: 46px;
  }

  .floorplan-card {
    gap: 40px;
  }

  .floorplan-image {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .finance-grid {
    gap: 46px;
  }

  .finance-copy {
    max-width: 680px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-heading p {
    max-width: 620px;
  }

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

  .cluster-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item,
  .gallery-item.gallery-wide {
    grid-column: span 7;
  }

  .gallery-item.gallery-tall {
    grid-column: span 5;
  }

  .location-image {
    min-height: 470px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid {
    gap: 45px;
  }
}

@media (max-width: 620px) {
  .maintenance-gate {
    align-items: center;
    padding: 14px;
  }

  .maintenance-card {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .maintenance-logo {
    width: 132px;
    margin-bottom: 27px;
  }

  .maintenance-title {
    font-size: 36px;
  }

  .maintenance-card > p {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 43px;
  }

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

  .hero-price {
    display: grid;
    gap: 2px;
  }

  .hero-price strong {
    font-size: 25px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-image-wrap {
    padding: 6px;
    border-radius: 23px;
    transform: none;
  }

  .hero-image-wrap > img {
    height: clamp(330px, 92vw, 420px);
    border-radius: 18px;
    object-position: 42% center;
  }

  .photo-cattleya {
    object-position: 42% center;
  }

  .hero-status {
    top: 17px;
    left: 17px;
  }

  .hero-specs {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .hero-specs span {
    font-size: 9px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-trust div,
  .hero-trust div:first-child {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-trust div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .advantages h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .about-media {
    padding: 0 0 25px 17px;
  }

  .about-media > img {
    aspect-ratio: 4 / 3;
  }

  .about-badge {
    right: -5px;
    max-width: 220px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .unit-image {
    min-height: 340px;
  }

  .unit-content {
    padding: 28px 22px 32px;
  }

  .unit-heading {
    grid-template-columns: 1fr 90px;
  }

  .unit-heading h3 {
    font-size: 25px;
  }

  .unit-heading img {
    width: 90px;
    height: 65px;
  }

  .floorplan-card {
    margin-top: 22px;
    padding: 38px 23px;
    border-radius: 25px;
  }

  .floorplan-card h3 {
    font-size: 30px;
  }

  .floorplan-image {
    min-height: 370px;
  }

  .floorplan-image img {
    height: 330px;
  }

  .calculator {
    padding: 25px 20px;
  }

  .tenor-options button {
    min-height: 45px;
    padding-inline: 4px;
    font-size: 10px;
  }

  .payment-result strong {
    font-size: 38px;
  }

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

  .cluster-card-featured {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .cluster-card-featured .cluster-house-media {
    height: 300px;
    min-height: 300px;
  }

  .cluster-card-featured .cluster-card-body {
    padding: 25px 23px 28px;
  }

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

  .advantages-grid > *,
  .advantages-grid > *:first-child,
  .advantages-grid article:first-of-type {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .advantage-intro {
    margin-bottom: 0;
  }

  .advantages article h3 {
    margin-top: 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.gallery-tall {
    min-height: 360px;
  }

  .location-section {
    padding-top: 0;
  }

  .location-card {
    width: 100%;
    border-radius: 0;
  }

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

  .location-copy {
    padding: 46px 22px 55px;
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 15px;
  }

  .faq-list summary::after {
    top: 19px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-phone {
    text-align: center;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    padding: 7px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
