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

    :root {
      --dark: #1C1917;
      --dark-alt: #292524;
      --cream: #F5F0E8;
      --white: #FFFFFF;
      --text-primary: #1C1917;
      --text-secondary: #57534E;
      --text-muted: #A8A29E;
      --accent: #1B6B6D;
      --accent-light: #2A8F91;
      --border: #DDE4E4;
      --border-light: #EDF1F1;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-pill: 50px;
      --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text-primary);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; font-family: var(--font-body); }

    /* ===== TICKER ===== */
    .ticker {
      background: var(--accent);
      overflow: hidden;
      white-space: nowrap;
      padding: 10px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1001;
      height: 36px;
    }
    .ticker-inner {
      display: inline-flex;
      animation: ticker-scroll 35s linear infinite;
      will-change: transform;
    }
    .ticker-inner span {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      padding: 0 24px;
    }
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 36px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 48px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.3s ease, backdrop-filter 0.3s ease;
    }
    .nav.solid {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .nav-logo {
      height: 24px;
      width: auto;
      transition: opacity 0.3s ease;
    }
    .nav-logo-white { opacity: 1; }
    .nav-logo-dark { position: absolute; top: 50%; left: 0; transform: translateY(-50%); opacity: 0; }
    .nav.solid .nav-logo-white { opacity: 0; }
    .nav.solid .nav-logo-dark { opacity: 1; }
    .nav-divider {
      width: 1px;
      height: 28px;
      background: rgba(255,255,255,0.3);
      transition: background 0.3s ease;
    }
    .nav.solid .nav-divider { background: var(--border); }
    .nav-project {
      display: flex;
      flex-direction: column;
    }
    .nav-project-name {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.1;
      transition: color 0.3s ease;
    }
    .nav.solid .nav-project-name { color: var(--text-primary); }
    .nav-project-label {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
      transition: color 0.3s ease;
    }
    .nav.solid .nav-project-label { color: var(--text-muted); }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.8);
      transition: color 0.3s ease;
    }
    .nav.solid .nav-links a { color: var(--text-secondary); }
    @media (hover: hover) {
      .nav-links a:hover { color: var(--white); }
      .nav.solid .nav-links a:hover { color: var(--text-primary); }
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: var(--white);
      color: var(--dark);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--radius-pill);
      border: none;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .nav.solid .nav-cta {
      background: var(--dark);
      color: var(--white);
    }
    .nav-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.6s;
    }
    @media (hover: hover) {
      .nav-cta:hover::after { transform: translateX(100%); }
    }

    /* ===== HERO (Split-Screen Grid) ===== */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-top: 36px;
      overflow: hidden;
    }
    .hero-content {
      background: var(--dark);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px;
      position: relative;
      z-index: 2;
    }
    .hero-bg {
      position: relative;
      overflow: hidden;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(28,25,23,0.15) 0%, transparent 40%);
    }
    .hero-overline {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 16px;
    }
    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(40px, 4vw, 64px);
      font-weight: 400;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.01em;
    }
    .hero-subtitle {
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
    }
    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: nowrap;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat {
      padding: 24px 0;
      text-align: left;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .hero-stat:nth-child(even) { border-right: none; padding-left: 24px; }
    .hero-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
    .hero-stat-value {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 6px;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      background: var(--white);
      color: var(--dark);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--radius-pill);
      border: none;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      max-width: 320px;
      transition: background 0.3s ease;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.6s;
    }
    @media (hover: hover) {
      .btn-primary:hover::after { transform: translateX(100%); }
    }
    .btn-primary.dark {
      background: var(--dark);
      color: var(--white);
    }
    .btn-primary.dark::after {
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      background: transparent;
      color: var(--white);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255,255,255,0.3);
      white-space: nowrap;
      transition: border-color 0.3s ease;
    }
    @media (hover: hover) {
      .btn-ghost:hover { border-color: rgba(255,255,255,0.7); }
    }
    .btn-ghost.dark {
      color: var(--dark);
      border-color: var(--border);
    }
    @media (hover: hover) {
      .btn-ghost.dark:hover { border-color: var(--dark); }
    }

    /* ===== SECTIONS ===== */
    .section {
      padding: 100px 48px;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-dark {
      background: var(--dark);
      color: var(--white);
    }
    .section-cream {
      background: var(--cream);
    }
    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .section-label-num {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 500;
      color: var(--accent);
      font-style: italic;
    }
    .section-dark .section-label-num { color: var(--accent-light); }
    .section-label-line {
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
    .section-dark .section-label-line { background: var(--accent-light); }
    .section-label-text {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .section-dark .section-label-text { color: var(--accent-light); }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: 0.02em;
      margin-bottom: 24px;
    }

    /* ===== ABOUT ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .about-text p {
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    .about-quote {
      font-family: var(--font-heading);
      font-size: clamp(20px, 2.5vw, 26px);
      font-style: italic;
      font-weight: 500;
      line-height: 1.4;
      color: var(--accent);
      padding-left: 24px;
      border-left: 2px solid var(--accent);
    }

    /* ===== GALLERY (Horizontal Slider) ===== */
    .gallery-slider-wrap {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
    }
    .gallery-track {
      display: flex;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    .gallery-slide {
      min-width: 100%;
      position: relative;
      overflow: hidden;
    }
    .gallery-slide img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(28,25,23,0.8), transparent);
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
    }
    .gallery-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
    }
    .gallery-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: background 0.3s ease;
    }
    @media (hover: hover) {
      .gallery-btn:hover { background: rgba(255,255,255,0.15); }
    }
    .gallery-dots {
      display: flex;
      gap: 6px;
    }
    .gallery-dot {
      width: 24px;
      height: 3px;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
      transition: background 0.3s ease, width 0.3s ease;
    }
    .gallery-dot.active {
      background: var(--accent-light);
      width: 40px;
    }
    .gallery-counter {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.05em;
    }

    /* ===== FEATURES (2x2 Cards) ===== */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .feature-card {
      padding: 40px 32px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      transition: border-color 0.3s ease;
    }
    @media (hover: hover) {
      .feature-card:hover { border-color: rgba(255,255,255,0.2); }
    }
    .feature-card-num {
      font-family: var(--font-heading);
      font-size: 48px;
      font-weight: 400;
      color: var(--accent-light);
      line-height: 1;
      margin-bottom: 16px;
      opacity: 0.4;
    }
    .feature-card-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .feature-card-body {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
    }

    /* ===== FLOOR PLANS ===== */
    .floorplans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* Floor Plan Cards */
    .floor-card {
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
    }
    .floor-card-image {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .floor-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      filter: blur(8px);
      transform: scale(1.12);
    }
    .floor-card:hover .floor-card-image img {
      transform: scale(1.05);
    }
    .floor-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      gap: 10px;
    }
    .floor-card-type {
      font-family: var(--font-heading);
      font-size: 22px;
      color: #fff;
      background: rgba(0,0,0,0.45);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 100px;
      padding: 8px 24px;
      text-align: center;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }
    .floor-card-sqft {
      font-size: 13px;
      color: rgba(255,255,255,0.95);
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      padding: 6px 18px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .floor-unlock-btn {
      margin-top: 6px;
      width: 85%;
      padding: 13px 0;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .floor-unlock-btn:hover {
      opacity: 0.85;
    }
    @media (max-width: 768px) {
      .floor-card-type { font-size: 18px; }
      .floor-unlock-btn { width: 90%; }
    }

    /* ===== INVESTMENT ===== */
    .invest-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .invest-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .invest-stat {
      padding: 32px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
    }
    .invest-stat-value {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .invest-stat-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .accordion-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      transition: color 0.3s ease;
    }
    @media (hover: hover) {
      .accordion-header:hover { color: var(--accent-light); }
    }
    .accordion-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }
    .accordion-item.active .accordion-icon {
      transform: rotate(45deg);
    }
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .accordion-body-inner {
      padding: 0 0 24px 0;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
    }
    /* Light accordion variant */
    .accordion-light .accordion-item { border-bottom-color: var(--border); }
    .accordion-light .accordion-header { color: var(--text-primary); }
    @media (hover: hover) {
      .accordion-light .accordion-header:hover { color: var(--accent); }
    }
    .accordion-light .accordion-body-inner { color: var(--text-secondary); }

    /* ===== LOCATION ===== */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .location-map {
      border-radius: var(--radius);
      overflow: hidden;
      height: 400px;
    }
    .location-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    .landmark-table {
      width: 100%;
    }
    .landmark-category {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 16px 0 8px;
    }
    .landmark-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 14px;
      font-weight: 300;
    }
    .landmark-name { color: var(--text-primary); }
    .landmark-dist { color: var(--text-muted); font-weight: 500; font-size: 13px; }

    /* ===== AMENITIES (Tabbed Grid) ===== */
    .amenities-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .amenity-tab {
      padding: 10px 24px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--white);
      color: var(--text-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
    .amenity-tab.active {
      background: var(--accent);
      color: var(--white);
      border-color: var(--accent);
    }
    @media (hover: hover) {
      .amenity-tab:hover:not(.active) { border-color: var(--accent); color: var(--accent); }
    }
    .amenity-grid-panel {
      display: none;
    }
    .amenity-grid-panel.active {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .amenity-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      aspect-ratio: 4/3;
    }
    .amenity-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    @media (hover: hover) {
      .amenity-card:hover img { transform: scale(1.04); }
    }
    .amenity-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      background: linear-gradient(to top, rgba(28,25,23,0.85), transparent);
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
    }
    .amenity-list-panel {
      display: none;
    }
    .amenity-list-panel.active {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }
    .amenity-list-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
    }
    .amenity-list-item svg { color: var(--accent); flex-shrink: 0; }

    /* ===== DEVELOPER ===== */
    .dev-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .dev-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .dev-stat {
      padding: 32px;
      background: var(--cream);
      border-radius: var(--radius);
    }
    .dev-stat-value {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .dev-stat-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .dev-text p {
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    .dev-quote {
      font-family: var(--font-heading);
      font-size: clamp(20px, 2.5vw, 26px);
      font-style: italic;
      font-weight: 500;
      line-height: 1.4;
      color: var(--accent);
      padding-left: 24px;
      border-left: 2px solid var(--accent);
      margin-bottom: 24px;
    }
    .dev-creds {
      list-style: none;
    }
    .dev-creds li {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-secondary);
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dev-creds li svg { color: var(--accent); flex-shrink: 0; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      text-align: center;
      padding: 100px 48px;
      background: var(--cream);
    }
    .cta-section .section-label {
      justify-content: center;
    }
    .cta-section .section-title {
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .cta-section p {
      font-size: 16px;
      font-weight: 300;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    /* ===== FAQ ===== */
    .faq-list {
      width: 100%;
      margin: 0;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      padding: 48px;
      text-align: center;
    }
    .footer p {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
      max-width: 800px;
      margin: 0 auto;
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .modal-card {
      background: var(--white);
      border-radius: var(--radius);
      max-width: 480px;
      width: calc(100% - 32px);
      padding: 48px 40px;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }
    .modal-overlay.active .modal-card {
      transform: translateY(0);
    }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cream);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text-secondary);
      cursor: pointer;
      transition: background 0.3s ease;
    }
    @media (hover: hover) {
      .modal-close:hover { background: var(--border); }
    }
    .modal-title {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 400;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    .modal-subtitle {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.6;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .form-group input {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      color: var(--text-primary);
      background: var(--white);
      transition: border-color 0.3s ease;
      outline: none;
    }
    .form-group input:focus {
      border-color: var(--accent);
    }
    .form-group input::placeholder {
      color: var(--text-muted);
      font-weight: 300;
    }
    .modal-submit {
      width: 100%;
      padding: 16px;
      background: var(--dark);
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-pill);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease;
    }
    .modal-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.6s;
    }
    @media (hover: hover) {
      .modal-submit:hover::after { transform: translateX(100%); }
    }
    .modal-rera {
      font-size: 10px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 16px;
      line-height: 1.5;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease-out, transform 0.25s ease-out;
      will-change: transform, opacity;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.04s; }
    .reveal-delay-2 { transition-delay: 0.08s; }
    .reveal-delay-3 { transition-delay: 0.12s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .section { padding: 64px 24px; }
      .nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav {
        background: var(--dark) !important;
        backdrop-filter: none !important;
      }
      .nav .nav-logo-white { opacity: 1 !important; }
      .nav .nav-logo-dark { opacity: 0 !important; }
      .nav-logo-wrap { width: 58px; }
      .nav-brand { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; overflow: visible; }
      .nav-project { display: flex; flex-direction: column; }
      .nav .nav-divider { background: rgba(255,255,255,0.3) !important; flex-shrink: 0; }
      .nav .nav-project-name { color: var(--white) !important; font-size: 13px; white-space: nowrap; }
      .nav .nav-project-label { color: rgba(255,255,255,0.55) !important; font-size: 6.5px; letter-spacing: 0; white-space: nowrap; }
      .nav .nav-cta {
        background: var(--white) !important;
        color: var(--dark) !important;
        padding: 8px 14px;
        font-size: 10px;
        white-space: nowrap;
        flex-shrink: 0;
      }
      .about-grid,
      .invest-grid,
      .location-grid,
      .dev-grid { grid-template-columns: 1fr; gap: 40px; }
      .floorplans-grid { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .hero { grid-template-columns: 1fr; }
      .hero-content { padding: 64px 24px 40px; }
      .hero-bg { height: 50vh; }
      .gallery-slide img { height: 360px; }
      .amenity-grid-panel.active { grid-template-columns: repeat(2, 1fr); }
      .cta-section { padding: 64px 24px; }
      .footer { padding: 48px 24px; }
    }

    /* ===== FEATURES + SIDEBAR FORM (Form 1) ===== */
    .features-with-form {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 32px;
      align-items: start;
    }
    .sidebar-form-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 36px 28px;
      position: sticky;
      top: 120px;
    }
    .sidebar-form-title {
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 400;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 8px;
    }
    .sidebar-form-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* Shared underline inputs */
    .inline-input {
      display: block;
      width: 100%;
      padding: 14px 0;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      background: transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      outline: none;
      margin-bottom: 4px;
      transition: border-color 0.3s ease;
    }
    .inline-input::placeholder { color: rgba(255,255,255,0.4); }
    .inline-input:focus { border-bottom-color: var(--accent-light); }

    /* Light variant for bottom form */
    .inline-input--light {
      color: var(--dark);
      border-bottom-color: var(--border);
    }
    .inline-input--light::placeholder { color: var(--text-muted); }
    .inline-input--light:focus { border-bottom-color: var(--accent); }

    /* Shared submit button */
    .inline-submit {
      display: block;
      width: 100%;
      padding: 16px;
      margin-top: 28px;
      background: var(--accent);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .inline-submit:hover { background: var(--accent-light); }

    .inline-form-rera {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      margin-top: 16px;
      line-height: 1.5;
    }

    /* ===== BOTTOM FORM (Form 2) ===== */
    .bottom-form-section {
      background: var(--cream);
    }
    .bottom-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .bottom-form-headline {
      font-family: var(--font-heading);
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 400;
      color: var(--dark);
      line-height: 1.2;
      margin: 16px 0;
    }
    .bottom-form-headline em {
      font-style: italic;
      color: var(--accent);
    }
    .bottom-form-sub {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }
    .bottom-form-visual {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .bottom-form-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 400px;
      border-radius: var(--radius);
    }

    @media (max-width: 960px) {
      .features-with-form { grid-template-columns: 1fr; }
      .sidebar-form-card { position: static; }
      .bottom-form-grid { grid-template-columns: 1fr; gap: 40px; }
      .bottom-form-visual { order: -1; }
      .bottom-form-visual img { min-height: 280px; }
    }

    @media (max-width: 640px) {
      .section { padding: 48px 16px; }
      .nav { padding: 0 16px; height: 64px; }
      .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        overflow: visible;
      }
      .hero-content {
        order: 1;
        padding: 84px 20px 12px;
      }
      .hero-overline { margin-bottom: 6px; font-size: 10px; }
      .hero-title {
        font-size: clamp(30px, 8.5vw, 44px);
        margin-bottom: 8px;
      }
      .hero-subtitle { margin-bottom: 12px; font-size: 14px; }
      .hero-bg {
        order: 2;
        height: 55vh;
        margin-top: -40px;
      }
      .hero-bg::after {
        background: linear-gradient(to top, rgba(28,25,23,0.3) 0%, transparent 30%);
      }
      .hero-ctas {
        flex-wrap: nowrap;
      }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-ghost {
        flex: 1;
        padding: 11px 12px;
        font-size: 10px;
        justify-content: center;
      }
      .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .hero-stat { padding: 10px 0; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
      .hero-stat:nth-child(even) { padding-left: 0; border-right: 1px solid rgba(255,255,255,0.08); }
      .hero-stat:nth-child(n+3) { border-top: none; }
      .hero-stat:last-child { border-right: none; }
      .hero-stat-value { font-size: 17px; line-height: 1.1; }
      .hero-stat-label { font-size: 7.5px; margin-top: 3px; letter-spacing: 0.04em; }
      .hero-stats-mobile { display: none !important; }
      .gallery-slide img { height: 240px; }
      .floorplans-grid { grid-template-columns: 1fr; }
      .invest-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
      .invest-stat { padding: 20px; }
      .dev-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
      .dev-stat { padding: 20px; }
      .amenity-grid-panel.active { grid-template-columns: 1fr 1fr; }
      .cta-section { padding: 48px 16px; }
      .footer { padding: 32px 16px; }
      .modal-card { padding: 32px 24px; }
    }

    /* Hide mobile stats bar - using inline stats in hero content */
    .hero-stats-mobile { display: none; }
