  :root {
      --red: #e63329;
      --red-dark: #c0261e;
      --red-light: #f5534a;
      --black: #1a1a1a;
      --dark: #2c2c2c;
      --mid: #555555;
      --muted: #888888;
      --border: #e0e0e0;
      --border-light: #f0f0f0;
      --white: #ffffff;
      --off-white: #fafafa;
      --cream: #f7f5f2;
      --hero-overlay: rgba(20,20,20,0.62);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* UTILITY */
    .red { color: var(--red); }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
    .section-pad { padding: 5rem 0; }
    .section-pad-sm { padding: 3.5rem 0; }

    .eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      display: block;
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--black);
      margin-bottom: 1rem;
    }
    .section-body {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--mid);
      max-width: 580px;
    }
    .rule { width: 40px; height: 2px; background: var(--red); margin: 1rem 0 1.5rem; }

    /* BUTTONS */
    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--red);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: 2px solid var(--red);
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
    .btn-outline-red {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--red);
      border: 2px solid var(--red);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.8rem 1.8rem;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-outline-red:hover { background: var(--red); color: var(--white); }
    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.6);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.8rem 1.8rem;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-outline-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

    /* TOP ANNOUNCEMENT BAR */
    .announce-bar {
      background: var(--red);
      color: var(--white);
      text-align: center;
      padding: 0.5rem 1rem;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.3px;
      position: relative;
      z-index: 1001;
    }
    .announce-bar strong { font-weight: 700; }
    .announce-bar a { color: var(--white); text-decoration: underline; font-weight: 600; }

    /* NAVBAR */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; }
    .nav-logo img { height: 34px; }
    .nav-logo-divider { width: 1px; height: 28px; background: var(--border); }
    .nav-project-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--black);
      line-height: 1;
    }
    .nav-project-sub { font-size: 0.62rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 1.8rem; }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--dark);
      letter-spacing: 0.3px;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      background: var(--red) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.3rem !important;
      border-radius: 2px;
      font-weight: 600 !important;
      font-size: 0.78rem !important;
      letter-spacing: 1px;
    }
    .nav-cta:hover { background: var(--red-dark) !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: all 0.3s; }

    /* HERO */
    #hero {
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 400px;
      position: relative;
      overflow: hidden;
      background: var(--black);
    }
    .hero-image-side {
      position: relative;
      overflow: hidden;
    }
    .hero-image-side::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--hero-overlay);
      z-index: 1;
    }
    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: linear-gradient(135deg, #1c2b3a 0%, #2c3e50 50%, #1a252f 100%);
    }
    .hero-text-layer {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3.5rem;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--red);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 1px;
      margin-bottom: 1.5rem;
      width: fit-content;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4.5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.2rem;
    }
    .hero-title em { font-style: italic; color: #e8c97a; }
    .hero-subtitle {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 480px;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-stat { display: flex; flex-direction: column; }
    .hero-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #e8c97a;
      line-height: 1;
    }
    .hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 0.2rem; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-urgency {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.2rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
    }
    .urgency-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 1.5s ease infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    /* HERO FORM PANEL */
    .hero-form-panel {
      background: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3rem 2.5rem;
      border-left: 1px solid var(--border);
    }
    .form-panel-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .form-panel-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.5; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 0.4rem; text-transform: uppercase; }
    .form-group input,
    .form-group select {
      width: 100%;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--black);
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      padding: 0.7rem 0.9rem;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .form-group input::placeholder { color: #bbb; }
    .form-group input:focus, .form-group select:focus { border-color: var(--red); }
    .form-group select option { color: var(--black); }
    .form-submit {
      width: 100%;
      padding: 0.9rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 0.4rem;
      border: none;
      cursor: pointer;
      background: var(--red);
      color: var(--white);
      border-radius: 2px;
      transition: background 0.25s;
    }
    .form-submit:hover { background: var(--red-dark); }
    .form-privacy { text-align: center; font-size: 0.67rem; color: var(--muted); margin-top: 0.8rem; }
    .form-consent { font-size: 0.67rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.5; }

    /* TICKER */
    .ticker-wrap { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 0.6rem 0; }
    .ticker-track { display: flex; animation: tickerScroll 35s linear infinite; white-space: nowrap; }
    .ticker-item { color: var(--dark); font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 0 2rem; }
    .ticker-sep { color: var(--red); }
    @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ABOUT */
    #about { background: var(--white); }
    .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img-wrap > img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2px;
      display: block;
      background: var(--cream);
    }
    .about-stat-box {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--red); color: var(--white); padding: 1.5rem;
      text-align: center; border-radius: 2px;
      box-shadow: 0 8px 30px rgba(230,51,41,0.25);
    }
    .about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; display: block; }
    .about-stat-label { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }
    .usp-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.8rem 0; }
    .usp-row {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1rem 1.2rem;
      border: 1px solid var(--border);
      border-radius: 2px;
      transition: border-color 0.2s, background 0.2s;
    }
    .usp-row:hover { border-color: var(--red); background: #fff8f8; }
    .usp-icon-wrap {
      width: 38px; height: 38px; flex-shrink: 0;
      background: #fff2f2; border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .usp-content h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
    .usp-content p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

    /* HIGHLIGHTS */
    #highlights { background: var(--cream); }
    .highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: var(--border); border: 1px solid var(--border); }
    .highlight-tile {
      background: var(--white);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background 0.2s;
    }
    .highlight-tile:hover { background: #fff8f8; }
    .hl-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
    .hl-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--red); display: block; line-height: 1; }
    .hl-label { font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-top: 0.25rem; }
    .hl-desc { font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.4; }

    /* INLINE CTA */
    .cta-strip {
      background: var(--black);
      padding: 2.5rem 0;
    }
    .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .cta-strip-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.3rem; }
    .cta-strip-text p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
    .cta-live { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--red-light); margin-top: 0.4rem; font-weight: 600; }
    .cta-live-dot { width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; animation: blink 1.5s ease infinite; }

    /* CONFIGURATIONS */
    #configurations { background: var(--white); }
    .config-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .config-card {
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 2.5rem 2rem;
      position: relative;
      transition: all 0.25s;
      background: var(--white);
    }
    .config-card:hover { border-color: var(--red); box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-4px); }
    .config-card.featured { border-color: var(--red); border-width: 2px; }
    .config-card.featured::before {
      content: 'Most Popular';
      position: absolute; top: -12px; left: 1.5rem;
      background: var(--red); color: var(--white);
      font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.25rem 0.7rem; border-radius: 1px;
    }
    .config-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
    .config-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.2rem; }
    .config-size { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
    .config-features { margin-bottom: 1.8rem; }
    .config-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.82rem; border-bottom: 1px solid var(--border-light); }
    .config-features li:last-child { border: none; }
    .config-check { color: var(--red); font-size: 0.75rem; font-weight: 700; }
    .eoi-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
    .eoi-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 1.2rem; }
    .eoi-amount small { font-size: 0.9rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
    .config-cta {
      width: 100%; padding: 0.8rem;
      background: var(--red); color: var(--white);
      border: none; border-radius: 2px; font-family: 'Inter', sans-serif;
      font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s;
    }
    .config-cta:hover { background: var(--red-dark); }

    /* GALLERY */
    #gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 280px 280px;
      gap: 8px;
      margin-top: 2.5rem;
    }
    .gallery-item { position: relative; overflow: hidden; cursor: pointer; background: #ddd; }
    .gallery-item:first-child { grid-row: span 2; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-cap { font-size: 0.78rem; font-weight: 600; color: var(--white); }
    .gallery-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 1rem; font-style: italic; }

    /* Global broken image fallback */
    img { background: #ece9e4; }

    /* PRESENTATION */
    #presentation { background: var(--white); }
    .presentation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .pres-thumb {
      position: relative; aspect-ratio: 16/9;
      background: var(--black); border-radius: 2px; overflow: hidden; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .pres-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.3s; display: block; }
    .pres-thumb:hover img { opacity: 0.35; }
    .pres-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; background: linear-gradient(135deg, #1c2b3a, #2c3e50); }
    .play-circle {
      width: 68px; height: 68px;
      background: var(--white); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 2;
      animation: playRing 2.5s ease infinite;
      cursor: pointer; transition: transform 0.2s;
    }
    .play-circle:hover { transform: scale(1.08); }
    .play-triangle { width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid var(--red); margin-left: 4px; }
    @keyframes playRing {
      0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
      70% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    .pres-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; }
    .pres-tag { position: absolute; top: 1rem; left: 1rem; background: var(--red); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.3rem 0.7rem; z-index: 3; }
    .pres-features { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
    .pres-feat { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border-light); }
    .pres-feat:last-child { border: none; }
    .pres-feat-icon { color: var(--red); font-size: 0.9rem; width: 18px; }

    /* AMENITIES */
    #amenities { background: var(--cream); }
    .amenities-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 3rem; }
    .amenities-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .amenity-num-card { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; text-align: center; border-radius: 2px; }
    .an-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--red); line-height: 1; display: block; }
    .an-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .amenities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .amenity-tile {
      background: var(--white); padding: 1.2rem 0.8rem; text-align: center;
      transition: background 0.2s;
    }
    .amenity-tile:hover { background: #fff8f8; }
    .am-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .am-name { font-size: 0.7rem; color: var(--dark); font-weight: 500; line-height: 1.4; }

    /* LOCATION */
    #location { background: var(--white); }
    .location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .location-map { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
    .location-map iframe { width: 100%; height: 100%; border: none; }
    .loc-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
    .loc-row { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 2px; transition: border-color 0.2s; }
    .loc-row:hover { border-color: var(--red); }
    .loc-ico { font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0; }
    .loc-info { flex: 1; }
    .loc-info h4 { font-size: 0.85rem; font-weight: 600; }
    .loc-info p { font-size: 0.72rem; color: var(--muted); }
    .loc-dist { font-size: 0.8rem; font-weight: 700; color: var(--red); white-space: nowrap; }

    /* DEVELOPER */
    #developer { background: var(--cream); }
    .developer-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .developer-logo { height: 44px; width: auto; margin-bottom: 1.5rem; }
    .dev-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    .dev-stat { text-align: center; padding: 1.5rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: 2px; }
    .dev-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--red); display: block; line-height: 1; }
    .dev-stat-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 0.3rem; }
    .dev-projects { margin-top: 2rem; }
    .dev-projects h4 { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
    .project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .proj-tag {
      border: 1px solid var(--border); color: var(--dark); font-size: 0.72rem; font-weight: 500;
      padding: 0.35rem 0.8rem; border-radius: 1px; cursor: pointer;
      transition: all 0.2s; text-decoration: none;
    }
    .proj-tag:hover { border-color: var(--red); color: var(--red); background: #fff8f8; }
    .developer-quote {
      background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--red);
      padding: 2rem; border-radius: 2px;
    }
    .dev-quote-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 1rem; }
    .dev-quote-attr { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
    .dev-awards { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
    .dev-award { font-size: 0.78rem; color: var(--dark); display: flex; align-items: center; gap: 0.5rem; }
    .award-ico { color: var(--red); }

    /* FAQ */
    #faq { background: var(--white); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 3rem; }
    .faq-item { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.2rem; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; gap: 1rem; }
    .faq-q:hover { color: var(--red); }
    .faq-toggle { width: 22px; height: 22px; border: 1.5px solid var(--muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--muted); flex-shrink: 0; transition: all 0.3s; }
    .faq-item.open .faq-toggle { border-color: var(--red); color: var(--red); transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 1.2rem 1.1rem; font-size: 0.82rem; color: var(--mid); line-height: 1.7; border-top: 1px solid var(--border-light); }
    .faq-item.open .faq-a { display: block; }

    /* BOTTOM CTA */
    #bottom-cta { background: var(--black); padding: 5rem 2rem; text-align: center; }
    .bottom-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
    .bottom-cta p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2.5rem; font-size: 0.9rem; line-height: 1.7; }
    .bottom-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* FOOTER */
    footer { background: var(--off-white); border-top: 1px solid var(--border); }
    .footer-main { max-width: 1280px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
    .footer-brand-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.7; margin: 1rem 0; max-width: 280px; }
    .footer-head { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
    .footer-links-list { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links-list a { font-size: 0.78rem; color: var(--muted); transition: color 0.2s; }
    .footer-links-list a:hover { color: var(--red); }
    .footer-contact-row { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.7rem; font-size: 0.78rem; color: var(--muted); }
    .footer-contact-row .icon { color: var(--red); flex-shrink: 0; }
    .footer-contact-row a { color: var(--red); font-weight: 600; }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--border); }
    .footer-bottom p, .footer-bottom a { font-size: 0.7rem; color: var(--muted); }
    .footer-bottom a:hover { color: var(--red); }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .rera-disclaimer { max-width: 1280px; margin: 0 auto; padding: 1rem 2rem 1.5rem; font-size: 0.65rem; color: var(--muted); line-height: 1.6; }

    /* WHATSAPP */
    .whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 9998; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
    .wa-tooltip { background: var(--white); color: var(--dark); font-size: 0.72rem; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 50px; white-space: nowrap; border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    .wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; }
    .wa-btn:hover { transform: scale(1.08); }
    .wa-btn svg { width: 28px; height: 28px; fill: white; }

    /* MODAL */
    .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .modal-overlay.active { opacity: 1; visibility: visible; }
    .modal-box { background: var(--white); max-width: 480px; width: 100%; border-radius: 2px; overflow: hidden; transform: translateY(20px) scale(0.97); transition: transform 0.3s; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
    .modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
    .modal-head { background: var(--black); padding: 2rem; position: relative; }
    .modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.1); border: none; width: 28px; height: 28px; border-radius: 50%; color: var(--white); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .modal-close:hover { background: rgba(255,255,255,0.2); }
    .modal-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
    .modal-head p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
    .modal-body { padding: 1.8rem 2rem 2rem; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; }
      .hero-form-panel { border-left: none; border-top: 1px solid var(--border); padding: 2.5rem 2rem; max-width: 100%; }
      .about-layout, .location-layout, .developer-layout, .presentation-layout, .amenities-header { grid-template-columns: 1fr; gap: 2.5rem; }
      .highlights-grid { grid-template-columns: repeat(2, 1fr); }
      .config-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .amenities-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 768px) {
      .announce-bar { font-size: 0.7rem; }
      .nav-links { display: none; }
      .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.2rem; z-index: 999; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
      .hamburger { display: flex; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-row: auto; grid-column: span 2; }
      .amenities-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-main { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom-links { justify-content: center; }
      .cta-strip-inner { flex-direction: column; text-align: center; }
      .section-pad { padding: 3.5rem 0; }
      .hero-text-layer { padding: 2rem; }
      .nav-logo img {
    height: 21px;
        }
        .nav-project-name {
            font-size: 1rem;
        }
        .navbar {
            padding: 0 1rem;
        }
        .hero-stats {
            gap: 2rem;
        }
    }
    @media (max-width: 480px) {
      .highlights-grid { grid-template-columns: 1fr 1fr; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: auto; }
      .hero-actions { flex-direction: column; }
      .bottom-cta-btns { flex-direction: column; align-items: center; }
    }