      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --gold: #c4963a;
        --gold-light: #ddb96a;
        --gold-pale: #f5edd4;
        --dark: #213631;
        --dark2: #315a31;
        --surface: #315a31;
        --surface2: #222019;
        --border: #2e2b24;
        --text: #0e0e0d;
        --text-sub: #9a9080;
        --text-dim: #e5e5e5;
        --green: #2e5c3e;
        --white: #faf7f0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--dark);
        color: var(--text);
        font-family: "DM Sans", sans-serif;
        font-weight: 300;
        line-height: 1.7;
        overflow-x: hidden;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        color: inherit;
        text-decoration: none;
      }

      /* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
      .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
		  .unit-feat{
			  color: var(--text);
		  }
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
		  .unit-size{
			  color: white;
		  }
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }

      /* ═══════════════ STICKY NAV ═══════════════ */
/*       .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 18px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          background 0.4s,
          padding 0.4s,
          border-bottom 0.4s;
      }
      .nav.scrolled {
        background: rgba(14, 13, 11, 0.96);
        backdrop-filter: blur(12px);
        padding: 12px 60px;
        border-bottom: 1px solid var(--border);
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--gold-light);
      }
      .nav-logo span {
        font-style: italic;
      }
      .nav-links {
        display: flex;
        gap: 32px;
      }
      .nav-links a {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-sub);
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--gold-light);
      }
      .nav-cta {
        background: var(--gold);
        color: var(--dark) !important;
        padding: 10px 22px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
        font-weight: 500 !important;
        transition: background 0.2s !important;
        border: none;
        cursor: pointer;
      }
      .nav-cta:hover {
        background: var(--gold-light) !important;
      } */

      /* ═══════════════ HERO ═══════════════ */
      .hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    	background: linear-gradient(270deg, rgba(49, 90, 49, 0.2) 0%, rgba(49, 90, 49, 0.6) 50%, rgba(49, 90, 49, 0.2) 100%);
      }
      .hero-bg {
        position: absolute;
        inset: 0;
		  background:
		  linear-gradient(
			160deg,
			rgba(56, 79, 37, 0.5) 0%,
			rgba(56, 79, 37, 0.4) 50%,
			rgba(56, 79, 37, 0.8) 100%
		  ),
		  linear-gradient(
			to bottom,
			rgba(56, 79, 37, 0) 60%,
			rgba(56, 79, 37, 1) 100%
		  );
        z-index: 1;
      }
      /* Textured atmospheric bg */
      .hero-visual {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      /* Decorative grid lines */
      .hero-grid {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.04;
        background-image:
          linear-gradient(var(--gold) 1px, transparent 1px),
          linear-gradient(90deg, var(--gold) 1px, transparent 1px);
        background-size: 80px 80px;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 24px;
        max-width: 900px;
		  @media (max-width: 1024px) {
			 margin-top: 36px;
		  }
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(196, 150, 58, 0.4);
        padding: 8px 20px;
        margin-bottom: 28px;
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold-light);
        animation: fadeDown 0.8s ease 0.2s both;
      }
      .hero-badge::before,
      .hero-badge::after {
        content: "◆";
        font-size: 6px;
        color: var(--gold);
      }
      @keyframes fadeDown {
        from {
          opacity: 0;
          transform: translateY(-16px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(42px, 8vw, 90px);
        font-weight: 300;
        line-height: 1.05;
        color: var(--white);
        animation: fadeUp 0.9s ease 0.3s both;
      }
      .hero-title em {
        font-style: italic;
        color: var(--gold-light);
        display: block;
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-sub {
        font-size: clamp(14px, 2vw, 17px);
        color: white;
        margin: 20px auto 0;
        max-width: 560px;
        line-height: 1.8;
        animation: fadeUp 0.9s ease 0.5s both;
      }
      .hero-divider {
        width: 60px;
        height: 1px;
        background: var(--gold);
        margin: 28px auto;
        animation: widthGrow 0.8s ease 0.7s both;
      }
      @keyframes widthGrow {
        from {
          width: 0;
          opacity: 0;
        }
        to {
          width: 60px;
          opacity: 1;
        }
      }
      .hero-stats {
        display: flex;
        justify-content: center;
        gap: 48px;
        margin-top: 36px;
        animation: fadeUp 0.9s ease 0.8s both;
      }
      .hero-stat {
        text-align: center;
      }
      .hero-stat-n {
        font-family: "Cormorant Garamond", serif;
        font-size: 32px;
        color: var(--gold-light);
        display: block;
        line-height: 1;
      }
      .hero-stat-l {
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: white;
        margin-top: 4px;
      }
      .hero-cta-group {
        display: flex;
        gap: 14px;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
        animation: fadeUp 0.9s ease 1s both;
      }
      .btn-primary {
        background: var(--gold);
        color: var(--dark);
        padding: 16px 40px;
        font-family: "DM Sans", sans-serif;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
      }
      .btn-outline {
        background: transparent;
        color: var(--gold);
        padding: 16px 40px;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 300;
        border: 1px solid var(--gold);
        cursor: pointer;
        transition:
          border-color 0.2s,
          color 0.2s,
          transform 0.2s;
      }
      .btn-outline:hover {
        border-color: white;
        color: white;
        transform: translateY(-2px);
      }

      .hero-scroll {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--text-dim);
        animation: fadeUp 1s ease 1.4s both;
      }
      .scroll-line {
        width: 1px;
        height: 48px;
        background: linear-gradient(var(--gold), transparent);
        animation: scrollDown 1.6s ease infinite;
      }
      @keyframes scrollDown {
        0% {
          transform: scaleY(0);
          transform-origin: top;
        }
        50% {
          transform: scaleY(1);
          transform-origin: top;
        }
        51% {
          transform: scaleY(1);
          transform-origin: bottom;
        }
        100% {
          transform: scaleY(0);
          transform-origin: bottom;
        }
      }

      /* ═══════════════ SECTION BASE ═══════════════ */
      section {
        padding: 100px 60px;
      }
      .section-eye {
        font-size: 13px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: white;
        margin-bottom: 14px;
      }
      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(32px, 5vw, 54px);
        font-weight: 300;
        line-height: 1.2;
		display: inline-block;
      }
      .section-title em {
        font-style: italic;
        color: var(--gold-light);
      }
      .section-sub {
        font-size: 15px;
        color: var(--text);
        max-width: 580px;
        line-height: 1.9;
        margin-top: 14px;
      }
      .gold-line {
        width: 48px;
        height: 1px;
        background: var(--gold);
        margin: 20px 0;
      }

      /* ═══════════════ INTRO STRIP ═══════════════ */
      .intro-strip {
        border-top: 1px solid var(--border);
        padding: 36px 60px;
      }
      .intro-strip-inner {
        display: flex;
        gap: 0;
        max-width: 1200px;
        margin: 0 auto;
      }
      .istrip-item {
        flex: 1;
        text-align: center;
        border-right: 1px solid var(--border);
        padding: 8px 24px;
      }
      .istrip-item:last-child {
        border-right: none;
      }
      .istrip-n {
        font-family: "Cormorant Garamond", serif;
        font-size: 36px;
        color: var(--gold-light);
        display: block;
        line-height: 1;
      }
      .istrip-l {
        font-size: 14px;
        color: var(--text);
        letter-spacing: 1px;
        margin-top: 4px;
      }

      /* ═══════════════ LOCATION SECTION ═══════════════ */
      .location-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
      }
      .loc-left {
        padding: 100px 80px;
		background: var(--dark2);
        display: flex;
        flex-direction: column;
        justify-content: center;
		  .section-title, .section-sub{
			  color: white;
		  }
      }
      .loc-right {
        padding: 60px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
		  .section-eye{
			  color: var(--text);
		  }
      }
      .connect-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 24px;
      }
      .cg-row {
        display: flex;
        align-items: center;
        gap: 0;
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
      }
      .cg-row:first-child {
        border-top: 1px solid var(--border);
      }
      .cg-time {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        color: var(--gold);
        min-width: 80px;
      }
      .cg-sep {
        width: 1px;
        background: var(--border);
        align-self: stretch;
        margin: 0 20px;
      }
      .cg-places {
        font-size: 14px;
        color: var(--text);
        line-height: 1.8;
      }

      .pros-cons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 28px;
      }
      .pro-card,
      .con-card {
        padding: 20px;
      }
      .pro-card {
        background: var(--dark);
        border: 1px solid rgba(46, 92, 62, 0.3);
      }
      .con-card {
        background: rgb(139 45 45 / 53%);
        border: 1px solid rgba(139, 45, 45, 0.2);
      }
      .pc-title {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
      }
      .pro-card .pc-title {
        color: #6baf8a;
      }
      .con-card .pc-title {
        color: #c47a7a;
      }
      .pc-list {
        list-style: none;
      }
      .pc-list li {
        font-size: 14px;
        color: white;
        padding: 5px 0 5px 16px;
        position: relative;
        line-height: 1.5;
      }
      .pro-card .pc-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #6baf8a;
      }
      .con-card .pc-list li::before {
        content: "△";
        position: absolute;
        left: 0;
        color: #c47a7a;
        font-size: 10px;
      }

      /* ═══════════════ PROJECT SPECS ═══════════════ */
      .specs-section {
        background: var(--dark);
      }
      .specs-inner {
        max-width: 1200px;
        margin: 0 auto;
		  .section-title, .section-sub{
			  color: white;
		  }
      }
      .specs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        margin-top: 60px;
        border: 1px solid var(--border);
      }
      .spec-card {
        background: var(--surface);
        padding: 40px 36px;
        transition: background 0.3s;
      }
      .spec-card:hover {
        background: var(--surface2);
      }
      .spec-icon {
        font-size: 50px;
        margin-bottom: 16px;
      }
      .spec-n {
        font-family: "Cormorant Garamond", serif;
        font-size: 40px;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 6px;
      }
      .spec-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-sub);
        margin-bottom: 10px;
      }
      .spec-desc {
        font-size: 14px;
        color: var(--text-dim);
        line-height: 1.7;
      }

      /* ═══════════════ AMENITIES ═══════════════ */
      .amenity-section {
		  @media (max-width: 1024px) {
			  padding: 0 24px;
		  }
      }
      .amenity-inner {
        max-width: 1200px;
        margin: 0 auto;
		  .section-eye{
			  color: var(--text);
		  }
      }
      .amenity-tabs {
        display: flex;
        gap: 0;
        margin-top: 48px;
        border-bottom: 1px solid var(--border);
      }
      .atab {
        padding: 14px 28px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-sub);
        cursor: pointer;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        background: none;
        border-top: none;
        border-left: none;
        border-right: none;
        font-family: "DM Sans", sans-serif;
        transition: all 0.2s;
      }
      .atab.active {
        color: var(--gold);
        border-bottom-color: var(--gold);
      }
      .atab-content {
        display: none;
        padding: 40px 0 0;
      }
      .atab-content.active {
        display: block;
      }
      .amenity-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 12px;
      }
      .amenity-card {
        border: 1px solid var(--border);
        padding: 20px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        transition: border-color 0.2s;
      }
      .amenity-card:hover {
        border-color: var(--gold);
      }
      .amenity-ico {
        font-size: 22px;
        flex-shrink: 0;
      }
      .amenity-text {
        font-size: 13px;
        color: var(--text);
        line-height: 1.5;
      }
      .amenity-text strong {
        color: var(--text);
        font-weight: 400;
        display: block;
        margin-bottom: 2px;
      }

      /* ═══════════════ UNIT TYPES ═══════════════ */
      .units-section {
        background: var(--dark2);
		  .section-title, .section-sub{
			  color: white;
		  }
      }
      .units-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .units-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-top: 48px;
      }
      .unit-card {
        background: white;
        border: 1px solid var(--border);
        padding: 32px 28px;
        position: relative;
        transition:
          border-color 0.3s,
          transform 0.2s;
        cursor: pointer;
      }
      .unit-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
      }
      .unit-card.featured {
        border-color: white;
        background: linear-gradient(
          135deg,
          var(--surface2) 0%,
          rgba(196, 150, 58, 0.06) 100%
        );
      }
      .unit-badge {
        position: absolute;
        top: -1px;
        right: 20px;
        background: var(--gold);
        color: var(--dark);
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        padding: 4px 12px;
      }
      .unit-type {
        font-size: 10px;
        letter-spacing: 3px;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .unit-size {
        font-family: "Cormorant Garamond", serif;
        font-size: 42px;
        color: var(--text);
        line-height: 1;
      }
      .unit-size-sub {
        font-size: 13px;
        color: var(--text);
        margin-bottom: 16px;
      }
      .unit-divider {
        height: 1px;
        background: var(--border);
        margin: 18px 0;
      }
.featured {
	.unit-size-sub, .unit-price-label, .unit-features .unit-feat, .unit-price-note{
		color: white;
	}
	.unit-divider{
		background: white;
	}
	.unit-feat{
		border-color: white;
	}
}
      .unit-price-label {
        font-size: 14px;
        letter-spacing: 2px;
        color: var(--text);
        text-transform: uppercase;
        margin-bottom: 4px;
      }
      .unit-price {
        font-family: "Cormorant Garamond", serif;
        font-size: 24px;
        color: var(--gold-light);
      }
      .unit-price-note {
        font-size: 14px;
        color: var(--text);
        margin-top: 2px;
      }
      .unit-features {
        margin-top: 16px;
      }
      .unit-feat {
        font-size: 14px;
        color: white;
        padding: 4px 0;
        border-bottom: 1px solid var(--border);
      }
      .unit-feat:last-child {
        border: none;
      }

      /* ═══════════════ PRICING SECTION ═══════════════ */
      .pricing-inner {
        max-width: 1100px;
        margin: 0 auto;
		  .section-eye{
			  color: var(--text);
		  }
      }
      .price-table-wrap {
        overflow-x: auto;
        margin-top: 48px;
      }
      .price-table {
        width: 100%;
        border-collapse: collapse;
      }
      .price-table thead tr {
        background: var(--dark2);
      }
      .price-table thead th {
        padding: 14px 16px;
        font-family: "DM Sans", sans-serif;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: white;
        font-weight: 400;
        border-right: 1px solid var(--border);
        text-align: center;
		padding: 20px 24px;
      }
      .price-table thead th:first-child {
        text-align: left;
      }
      .price-table thead th:last-child {
        color: var(--gold);
        border-right: none;
      }
      .price-table tbody tr {
        border-bottom: 1px solid var(--border);
        transition: background 0.15s;
      }
	   .price-table tbody tr:nth-child(odd) {
        background: #f8f8f8;
    	}
      .price-table tbody td {
        padding: 16px;
      }
      .price-table tbody td:last-child {
        border-right: none;
      }
      .pt-type {
        font-weight: 500;
        color: var(--text);
      }
      .pt-area {
        font-size: 14px;
        color: var(--text);
        text-align: center;
      }
      .pt-val {
        text-align: center;
      }
      .pt-main {
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: var(--text);
        display: block;
      }
      .pt-unit {
        font-size: 12px;
        color: black;
      }
      .pt-gold {
        text-align: center;
      }
      .pt-gold-v {
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: var(--gold-light);
        display: block;
        font-weight: 600;
      }

      /* ═══════════════ POLICY SECTION ═══════════════ */
      .policy-section {
        background: var(--surface);
        border-top: 1px solid var(--border);
      }
      .policy-inner {
        max-width: 1200px;
        margin: 0 auto;
		  .section-title{
			  color: white;
		  }
      }
      .policy-grid {
        display: grid;
/*         grid-template-columns: 1fr 1fr 1fr; */
        gap: 14px;
        margin-top: 48px;
      }
.policy-item img{
	height: 300px;
	@media (max-width: 768px){
		height: auto;
	}
}
      .policy-card {
        background: white;
        border: 1px solid var(--border);
        padding: 32px 28px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.2s;
		max-height: 300px;
		  	@media (max-width: 768px){
		max-height: 100%;
	}
      }
      .policy-card:hover {
        border-color: var(--gold);
      }
      .policy-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        opacity: 0;
        transition: opacity 0.2s;
      }
      .policy-card:hover::before,
      .policy-card.highlight::before {
        opacity: 1;
      }
      .policy-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 56px;
        color: var(--border);
        line-height: 1;
        position: absolute;
        top: 16px;
        right: 20px;
      }
      .policy-tag {
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
      }
      .policy-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        margin-bottom: 18px;
        line-height: 1.3;
      }
      .policy-list {
        list-style: none;
      }
      .policy-list li {
        font-size: 14px;
        color: black;
        padding: 7px 0 7px 18px;
        border-bottom: 1px solid var(--border);
        position: relative;
        line-height: 1.5;
      }
      .policy-list li:last-child {
        border: none;
      }
      .policy-list li::before {
        content: "—";
        position: absolute;
        left: 0;
        color: var(--gold);
      }
      .policy-list li strong {
        color: var(--gold-light);
      }
		.policy-wrapper{
			display: grid;
			grid-template-columns: repeat(1, 1fr);
			gap: 14px;
		}
		.policy-item{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 14px;
			@media (max-width: 768px){
				grid-template-columns: repeat(1, 1fr);
			}
		}
      .policy-timeline {
        margin-top: 48px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .ptl-card {
        background: white;
        border: 1px solid var(--border);
        padding: 28px;
        display: flex;
        gap: 20px;
        align-items: center;
      }
      .ptl-dot {
        width: 12px;
        height: 12px;
        background: var(--gold);
        border-radius: 50%;
        flex-shrink: 0;
      }
      .ptl-date {
        font-family: "Cormorant Garamond", serif;
        font-size: 24px;
        color: var(--gold);
      }
      .ptl-desc {
        font-size: 14px;
        color: var(--text);
        line-height: 1.6;
      }

      .mgmt-fee {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .mf-card {
        background: var(--green);
        padding: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .mf-label {
        font-size: 14px;
        color: white;
		  span{
			  font-size: 13px;
		  }
      }
      .mf-value {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        color: #aadebc;
      }

      /* ═══════════════ MASTERISE TRUST ═══════════════ */
      .trust-inner {
        max-width: 1200px;
        margin: 0 auto;
		  .section-eye{
			  color: var(--text);
		  }
      }
      .trust-projects {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        margin-top: 40px;
      }
      .trust-proj {
        border: 1px solid var(--border);
        padding: 18px 16px;
        text-align: center;
        transition: border-color 0.2s;
      }
      .trust-proj:hover {
        border-color: var(--gold);
      }
      .tp-name {
        font-size: 11px;
        color: var(--gold-light);
        letter-spacing: 1px;
        margin-bottom: 4px;
      }
      .tp-loc {
        font-size: 14px;
        color: var(--text);
      }

      /* ═══════════════ LEAD FORM ═══════════════ */
      .form-wrapper .section-content {
		padding: 100px 60px;
		  @media (max-width: 768px) {
			  		padding: 80px 24px;
		  }
        border-top: 1px solid var(--border);
        position: relative;
        overflow: hidden;
		backdrop-filter: blur(10px);
		background: linear-gradient(
		  270deg,
		  rgba(0, 0, 0, .5) 0%,
		  rgba(0, 0, 0, .3) 50%,
		  rgba(0, 0, 0, .5) 100%
		);
      }
      .form-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 50% 0%,
          rgba(196, 150, 58, 0.08) 0%,
          transparent 60%
        );
        pointer-events: none;
      }
      .form-inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
		  .section-sub, .section-title{
			  color: white;
		  }
      }
      .form-box {
		background: #315a31d9;
        margin-top: 40px;
        padding: 48px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
      }
      .form-row.single {
        grid-template-columns: 1fr;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-align: left;
      }
      .form-label {
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: white;
      }
      .form-input,
      .form-select {
		padding: 4px 16px;
        background: white;
        border: 1px solid var(--border);
        color: var(--text);
        margin-bottom: 0;
    	height: 42px;
        font-family: "DM Sans", sans-serif;
        font-size: 12px;
        font-weight: 300;
        transition: border-color 0.2s;
        outline: none;
        width: 100%;
        -webkit-appearance: none;
      }
      .form-input:focus,
      .form-select:focus {
        border-color: var(--gold);
      }
      .form-input::placeholder {
        color: #7b7b74;
		font-size: 12px;
      }
/*       .form-submit {
        width: 100%;
        background: var(--gold);
        color: var(--dark);
        border: none;
        cursor: pointer;
        padding: 18px;
        margin-top: 14px;
        font-family: "DM Sans", sans-serif;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
        transition:
          background 0.2s,
          transform 0.15s;
      } */
		.wpcf7-response-output {
			color: white;
		}
		.form-submit {
			width: 100%;
			background: var(--gold) !important;
			color: var(--dark) !important;
			padding: 18px !important;
			margin-top: 14px !important;
			font-family: "DM Sans", sans-serif !important;
			font-size: 12px !important;
			letter-spacing: 3px !important;
			transition: background 0.2s, transform 0.15s !important;
		}
      .form-submit:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
      }
      .form-note {
        font-size: 1px;
        color: var(--text-dim);
        margin-top: 16px;
        line-height: 1.6;
      }

      /* SUCCESS MESSAGE */
      .form-success {
        display: none;
        text-align: center;
        padding: 40px 20px;
      }
      .form-success-icon {
        font-size: 48px;
        margin-bottom: 16px;
      }
      .form-success h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        color: var(--gold-light);
        margin-bottom: 10px;
      }
      .form-success p {
        font-size: 14px;
        color: var(--text-sub);
      }

      /* ═══════════════ FAQ ═══════════════ */
      .faq-section {
		  .section-eye{
			  color: var(--text);
		  }
      }
      .faq-inner {
        max-width: 800px;
        margin: 0 auto;
      }
      .faq-list {
        margin-top: 40px;
      }
	  .faq-list .open .faq-q .faq-q-text{
		  font-weight: 700;
		}
      .faq-item {
        border-bottom: 1px solid var(--border);
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        cursor: pointer;
        gap: 20px;
      }
      .faq-q-text {
        font-size: 15px;
        color: var(--text);
        font-weight: 400;
        line-height: 1.4;
      }
      .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--gold);
        transition: transform 0.3s;
      }
      .faq-item.open .faq-icon {
        transform: rotate(45deg);
      }
      .faq-a {
        font-size: 14px;
        color: var(--text);
        line-height: 1.9;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.3s;
      }
      .faq-item.open .faq-a {
        max-height: 400px;
        padding-bottom: 20px;
      }

      /* ═══════════════ FLOATING CTA ═══════════════ */
      .float-cta {
        position: fixed;
        bottom: 70px;
        right: 28px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
      }
      .float-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--gold);
        color: white;
        padding: 14px 20px;
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        transition:
          transform 0.2s,
          background 0.2s;
        white-space: nowrap;
      }
      .float-btn:hover {
        transform: translateY(-3px);
        background: var(--gold-light);
      }
      .float-btn.phone {
        background: var(--surface);
        color: white;
        border: 1px solid var(--border);
      }
      .float-btn.phone:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .float-ico {
        font-size: 16px;
      }

      /* ═══════════════ FOOTER ═══════════════ */
      footer {
        background: var(--dark2);
        border-top: 1px solid var(--border);
        padding: 48px 60px 32px;
		 @media (max-width: 1024px) {
			padding: 48px 24px 32px;
		 }
      }
      .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 40px;
      }
      .footer-brand {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        color: var(--gold-light);
        margin-bottom: 12px;
      }
      .footer-desc {
        font-size: 14px;
        color: var(--text-dim);
        line-height: 1.8;
      }
      .footer-col-title {
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .footer-links {
        list-style: none;
      }
      .footer-links li {
        margin-bottom: 8px;
      }
      .footer-links a {
        font-size: 14px;
        color: var(--text-dim);
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--gold-light);
      }
      .footer-bottom {
        padding-top: 24px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-legal {
        font-size: 14px;
        color: var(--text-dim);
        line-height: 1.6;
      }
      .footer-hotline {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        color: var(--gold-light);
      }

      /* ═══════════════ RESPONSIVE ═══════════════ */
      @media (max-width: 1024px) {
        .location-section {
          grid-template-columns: 1fr;
        }
        .loc-left,
        .loc-right {
          padding: 60px 40px;
        }
        .units-grid {
          grid-template-columns: 1fr 1fr;
        }
/*         .policy-grid {
          grid-template-columns: 1fr;
        } */
        .trust-projects {
          grid-template-columns: repeat(3, 1fr);
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 768px) {
        section {
          padding: 64px 24px;
        }
        .nav {
          padding: 16px 8x;
        }
        .nav.scrolled {
          padding: 12px 24px;
        }
        .nav-links {
          display: none;
        }
        .intro-strip {
          padding: 24px;
        }
        .intro-strip-inner {
          flex-wrap: wrap;
          gap: 16px;
        }
        .istrip-item {
          border-right: none;
          border-bottom: 1px solid var(--border);
          padding: 12px 0;
        }
        .hero-stats {
          gap: 24px;
          flex-wrap: wrap;
        }
        .specs-grid {
           grid-template-columns: repeat(1, 1fr);
        }
        .units-grid {
          grid-template-columns: 1fr;
        }
        .pros-cons {
          grid-template-columns: 1fr;
        }
        .policy-timeline {
          grid-template-columns: 1fr;
        }
        .mgmt-fee {
          grid-template-columns: 1fr;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .form-box {
          padding: 28px 20px;
        }
        .trust-projects {
          grid-template-columns: 1fr 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
        }
        .float-cta {
          bottom: 16px;
          right: 16px;
        }
        .float-btn {
          font-size: 11px;
          padding: 12px 16px;
        }
      }