:root {
      --crimson:   #c0143c;
      --deep-red:  #8b0000;
      --indigo:    #2d2091;
      --grad:      linear-gradient(135deg, #c0143c 0%, #7b1fa2 50%, #2d2091 100%);
      --grad-soft: linear-gradient(135deg, rgba(192,20,60,0.12) 0%, rgba(45,32,145,0.12) 100%);
      --bg:        #faf9f7;
      --dark:      #0d0d14;
      --surface:   #fff;
      --border:    #e8e4e0;
      --text:      #1a1a2e;
      --muted:     #6b6880;
      --radius:    14px;
      --t:         0.35s cubic-bezier(.4,0,.2,1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.1;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── NAVBAR ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(250,249,247,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 0 6%;
      height: 78px;
      display: flex; align-items: center; justify-content: space-between;
    }

    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { height: 48px; width: auto; border-radius: 4px; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 700;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-logo-text span { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color var(--t); position: relative; }
    .nav-links a:hover { color: var(--crimson); }
    .nav-links a.active {
      font-weight: 700;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0; bottom: -8px;
      width: 100%; height: 2px;
      background: var(--crimson);
      border-radius: 50px;
    }

    .nav-cta {
      background: var(--grad);
      color: #fff;
      font-size: 0.85rem; font-weight: 600;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      border: none; cursor: pointer;
      transition: opacity var(--t), transform var(--t);
    }
    .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
    }

    .nav-hamburger span {
      width: 24px;
      height: 2.5px;
      background: var(--text);
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 768px) {
      .nav-hamburger {
        display: flex;
      }

      .nav-links {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        background: rgba(250, 249, 247, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 0;
        list-style: none;
        z-index: 20;
        backdrop-filter: blur(14px);
        will-change: max-height, opacity, visibility, transform;
      }

      .nav-links.active {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 1rem 0;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 0.95rem 6%;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border);
      }

      .nav-links a:hover {
        background: var(--bg);
      }

      .nav-cta {
        display: none;
      }

      nav {
        height: 72px;
        padding: 0 4%;
      }
    }

    /* --- Scoped Hero Wrapper --- */
/* --- Reset & Base Styles --- */



    .lsc-hero-wrapper {
        position: relative;
        width: 100%;
        height: 92vh;           
        margin: 0 auto;         
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #111;
        overflow: hidden;
    }

    .lsc-hero-wrapper .splide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .lsc-hero-wrapper .splide__track, 
    .lsc-hero-wrapper .splide__list, 
    .lsc-hero-wrapper .splide__slide {
        height: 100% !important;
    }

    .lsc-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(45%); 
    }

    /* Custom Dash Indicators */
    .lsc-hero-wrapper .splide__pagination {
        bottom: 30px !important;
        gap: 12px;
        z-index: 15;
    }

    .lsc-hero-wrapper .splide__pagination__page {
        width: 35px !important;
        height: 4px !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, 0.3) !important;
        border: none !important;
        transition: background-color 0.4s ease, transform 0.4s ease !important;
    }

    .lsc-hero-wrapper .splide__pagination__page.is-active {
        background: #ffffff !important;
        transform: scale(1) !important;
    }

    .lsc-content {
        position: relative;
        z-index: 10;
        text-align: center;
        color: #ffffff;
        max-width: 800px;
        padding: 0 20px;
        pointer-events: none; 
    }

    .lsc-welcome-tag {
        font-family: 'Outfit', sans-serif; 
        font-size: 0.9rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 400;
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .lsc-welcome-tag::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 1.5px;
        background-color: #ffffff;
    }

    .lsc-title {
        font-family: 'Monserrat', sans-serif; 
        font-size: clamp(2.2rem, 5vw, 3.8rem); 
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1.15;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .lsc-subtitle {
        font-family: 'Outfit', sans-serif; 
        font-size: clamp(0.95rem, 1.8vw, 1.2rem);
        font-weight: 400;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 6%;
      gap: 4rem;
      position: relative; overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 100% 40%, rgba(192,20,60,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 0% 80%, rgba(45,32,145,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Decorative diagonal line */
    .hero::after {
      content: '';
      position: absolute; top: 0; right: 38%;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 1; animation: fadeUp 0.8s ease both; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--crimson);
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block; width: 28px; height: 2px;
      background: var(--grad);
    }

    .hero h1 {
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 1.4rem;
    }

    .hero h1 em {
      font-style: italic;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: 1.05rem; color: var(--muted);
      max-width: 440px; margin-bottom: 2.4rem; line-height: 1.7;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

    .btn-grad {
      background: var(--grad); color: #fff;
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
      padding: 0.8rem 2rem; border-radius: 50px; border: none; cursor: pointer;
      transition: opacity var(--t), transform var(--t);
    }
    .btn-grad:hover { opacity: 0.85; transform: translateY(-2px); }

    .properties-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.75rem;
      margin-top: 2rem;
    }
    .property-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 16px 30px rgba(0,0,0,0.06);
      transition: transform var(--t), box-shadow var(--t);
    }
    .property-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 40px rgba(0,0,0,0.1);
    }
    .property-card img {
      width: 100%; display: block;
    }
    .property-card-body { padding: 1.5rem; }
    .sale-rent {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--crimson);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .property-card-title {
      font-size: 1.3rem;
      margin-bottom: 1.25rem;
      line-height: 1.25;
    }
    .property-specs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }
    .property-spec {
      display: flex; justify-content: space-between;
      gap: 1rem;
      font-size: 0.92rem;
      color: var(--muted);
    }
    .property-spec strong { color: var(--text); }

    .property-hero-section {
      padding-bottom: 3rem;
      background: var(--bg);
    }

    .property-detail-section {
      padding: 0 6% 4rem;
    }

    .property-detail-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .property-detail-image {
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(15,23,42,0.13);
      height: 660px;
      min-height: auto;
      max-height: 660px;
    }

    .property-detail-image .splide {
      height: 100%;
    }

    .property-detail-image .splide__slide img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .splide__arrow {
      background: rgba(255,255,255,0.9);
      color: var(--text);
      border: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .splide__arrow:hover {
      transform: translateY(-1px);
      background: #ffffff;
    }

    .splide__arrow svg {
      width: 18px;
      height: 18px;
    }

    .property-detail-info {
      padding: 2rem;
      background: rgba(255,255,255,0.05);
      border-radius: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .property-detail-title {
      margin: 1.5rem 0 1rem;
      font-size: 2rem;
      line-height: 1.1;
    }

    .property-detail-copy {
      color: rgba(16, 16, 16, 0.7);
      margin-bottom: 2rem;
    }

    .property-specs--highlight {
      margin-bottom: 2rem;
    }

    .property-detail-extras {
      padding: 0 6% 4rem;
    }

    .property-detail-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .property-detail-card {
      padding: 2rem;
      background: rgba(255,255,255,0.03);
      border-radius: 1.5rem;
    }

    .property-detail-card h3 {
      margin-bottom: 1rem;
    }

    .property-detail-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      color: rgba(0, 0, 0, 0.75);
    }

    .property-detail-card li {
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .btn-ghost {
      background: transparent; color: var(--text);
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
      padding: 0.8rem 2rem; border-radius: 50px;
      border: 1.5px solid var(--border); cursor: pointer;
      transition: border-color var(--t), transform var(--t);
    }
    .btn-ghost:hover { border-color: var(--crimson); transform: translateY(-2px); }

    .btn-see-more {
      display: inline-block;
      background: transparent;
      color: var(--crimson);
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      border: 1.5px solid var(--crimson);
      cursor: pointer;
      transition: background var(--t), color var(--t), transform var(--t);
      text-decoration: none;
    }
    .btn-see-more:hover {
      background: var(--crimson);
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex; gap: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

    /* Hero right – property cards stack */
    .hero-visual {
      position: relative; z-index: 1;
      animation: fadeUp 0.8s 0.2s ease both;
      display: flex; flex-direction: column; gap: 1.2rem;
    }

    .property-card-mini {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.2rem 1.4rem;
      display: flex; align-items: center; gap: 1.2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform var(--t), box-shadow var(--t);
    }
    .property-card-mini:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 30px rgba(192,20,60,0.12);
    }

    .prop-icon {
      width: 54px; height: 54px; flex-shrink: 0;
      background: var(--grad-soft);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
    }

    .prop-info { flex: 1; }
    .prop-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; }
    .prop-location { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
    .prop-price {
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700;
      background: var(--grad); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      white-space: nowrap;
    }

    .hero-badge {
      background: var(--grad);
      color: #fff;
      padding: 1rem 1.4rem;
      border-radius: var(--radius);
      display: flex; align-items: center; gap: 1rem;
    }
    .hero-badge-icon { font-size: 1.8rem; }
    .hero-badge-text strong { display: block; font-size: 0.95rem; font-weight: 600; }
    .hero-badge-text span { font-size: 0.78rem; opacity: 0.85; }

    /* ── MARQUEE BAR ── */
    .marquee-bar {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 0.7rem 0;
      overflow: hidden;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .marquee-inner {
      display: flex; gap: 3rem;
      animation: marquee 20s linear infinite;
      white-space: nowrap;
    }
    .marquee-inner span { color: rgba(255,255,255,0.3); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 6%; }

    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--crimson);
      margin-bottom: 1rem;
    }
    .section-label::before {
      content: ''; display: block; width: 20px; height: 2px; background: var(--grad);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-sub { font-size: 1rem; color: var(--muted); max-width: 500px; }

    /* ── ABOUT ── */
    .about { background: var(--dark); color: #fff; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    .about .section-label { color: #ff8fab; }
    .about .section-title { color: #fff; }
    .about .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

    .about-logo {
      width: 120px; margin-bottom: 2.5rem;
      border-radius: 12px; opacity: 0.95;
    }

    .values-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .value-item {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 1.2rem;
      transition: border-color var(--t);
    }
    .value-item:hover { border-color: rgba(192,20,60,0.5); }
    .value-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
    .value-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: #fff; }
    .value-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

    .about-right {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
    }

    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .stat-card:first-child {
      grid-column: span 2;
      background: var(--grad-soft);
      border-color: rgba(192,20,60,0.3);
    }
    .stat-card-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-card-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

    /* ── SERVICES ── */
    .services { background: var(--bg); }
    .services-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
    }

    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
      animation: fadeUp 0.5s ease both;
    }
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.1s; }
    .service-card:nth-child(3) { animation-delay: 0.15s; }
    .service-card:nth-child(4) { animation-delay: 0.2s; }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(192,20,60,0.1);
      border-color: rgba(192,20,60,0.3);
    }

    .service-icon {
      width: 52px; height: 52px;
      background: var(--grad-soft);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.4rem;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 700;
      margin-bottom: 0.7rem;
    }

    .service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

    /* ── WHY US ── */
    .why { background: var(--surface); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center; margin-top: 3rem;
    }

    .why-list { display: flex; flex-direction: column; gap: 1.4rem; }

    .why-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.4rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: border-color var(--t), background var(--t);
    }
    .why-item:hover { border-color: var(--border); background: var(--bg); }

    .why-check {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--grad);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.85rem; font-weight: 700;
    }

    .why-item-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
    .why-item-desc { font-size: 0.85rem; color: var(--muted); }

    /* ── WHY CHOOSE US GRID SECTION ── */
    .why-choose-section {
      padding: 4rem 6%;
      background: rgba(255, 255, 255, 0.02);
    }

    .why-choose-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .why-choose-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    }

    .why-choose-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(192,20,60,0.1);
      border-color: rgba(192,20,60,0.3);
    }

    .why-choose-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--text);
      line-height: 1.3;
    }

    .why-choose-desc {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ── INVESTMENT ADVANTAGES SECTION ── */
    .investment-section {
      padding: 5rem 6%;
      background: var(--bg);
    }

    .investment-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .investment-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .investment-column {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .investment-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .investment-check {
      font-size: 1.5rem;
      color: var(--crimson);
      flex-shrink: 0;
      line-height: 1;
    }

    .investment-content h3 {
      color: var(--text);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.05rem;
    }

    .investment-content p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
      margin: 0;
    }

    /* ── PROPERTY DOCUMENTATION SECTION ── */
    .documentation-section {
      padding: 5rem 6%;
      background: var(--bg);
    }

    .documentation-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .documentation-intro {
      color: var(--muted);
      margin-bottom: 3rem;
      max-width: 700px;
    }

    .documentation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .documentation-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    }

    .documentation-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(192,20,60,0.1);
      border-color: rgba(192,20,60,0.3);
    }

    .documentation-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .documentation-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .documentation-highlight {
      margin-top: 3rem;
      padding: 2rem;
      border-radius: var(--radius);
      background: var(--grad-soft);
      border: 1px solid rgba(192,20,60,0.3);
      text-align: center;
      transition: transform var(--t), box-shadow var(--t);
    }

    .documentation-highlight:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(192,20,60,0.15);
    }

    .documentation-highlight p:first-child {
      color: var(--crimson);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .documentation-highlight p:last-child {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .documentation-card.centered {
      grid-column: 1 / -1;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ── PARTNERS SECTION ── */
    .partners-section {
      padding: 5rem 6%;
      background: var(--bg);
    }

    .partners-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      align-items: center;
      margin-bottom: 2rem;
    }

    .partner-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    }

    .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(192,20,60,0.1);
      border-color: rgba(192,20,60,0.3);
    }

    .partner-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .partner-title {
      color: var(--text);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .partner-desc {
      color: var(--muted);
      font-size: 0.85rem;
      margin-top: 0.5rem;
    }

    .partners-intro {
      color: var(--muted);
      font-size: 0.9rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .why-cta-box {
      background: var(--dark);
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .why-cta-box::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(192,20,60,0.3), transparent 70%);
      pointer-events: none;
    }
    .why-cta-box img { width: 90px; margin: 0 auto 1.5rem; border-radius: 10px; }
    .why-cta-box h3 {
      font-size: 1.6rem; color: #fff; margin-bottom: 0.8rem;
    }
    .why-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

    /* ── CONTACT ── */
    .contact { background: var(--bg); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 4rem; align-items: start; margin-top: 3rem;
    }

    .contact-info h3 {
      font-size: 1.6rem; margin-bottom: 1rem;
    }
    .contact-info p { color: var(--muted); font-size: 0.92rem; margin-bottom: 2rem; }

    .contact-item {
      display: flex; gap: 1rem; align-items: center;
      margin-bottom: 1.2rem;
    }
    .contact-item-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--grad-soft);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .contact-item-text strong { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
    .contact-item-text span { font-size: 0.92rem; color: var(--text); font-weight: 500; }

    .contact-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
    }

    .form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.8rem; }

    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block; font-size: 0.8rem; font-weight: 600;
      color: var(--muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.92rem;
      color: var(--text);
      transition: border-color var(--t);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--crimson); }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 4rem 6% 2rem;
    }

    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }

    .footer-brand img { width: 80px; border-radius: 8px; margin-bottom: 1rem; }
    .footer-brand p {
      font-size: 0.85rem; line-height: 1.7;
      color: rgba(255,255,255,0.45); max-width: 260px;
    }
    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
      margin: 0.8rem 0;
    }

    .footer-col h4 {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.7rem; }
    .footer-col a {
      font-size: 0.88rem; color: rgba(255,255,255,0.55);
      transition: color var(--t);
    }
    .footer-col a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.8rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

    .footer-grad-text {
      font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 600;
      background: var(--grad);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes pageIntro {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: none; }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }

    .page-enter {
      animation: pageIntro 0.75s ease-out forwards;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; padding-top: 3rem; padding-bottom: 4rem; gap: 3rem; }
      .hero::after { display: none; }
      .hero-visual { max-width: 480px; }
      .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .property-detail-grid { grid-template-columns: 1fr; }
      .property-detail-image { height: auto; max-height: 420px; }
      .property-detail-cards { grid-template-columns: 1fr; }
        .whatsapp-float {
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    font-size: 28px;
    margin: 0 !important;
    float: none !important;
    position: sticky;
    align-self: flex-end;
    margin-top: -60px !important;
  }
    }
    @media (max-width: 640px) {
      nav { padding: 0 5%; }
      .nav-links { display: flex; }
      section { padding: 4rem 5%; }
      .hero { padding: 3rem 5% 3rem; }
      .hero h1 { font-size: 2.4rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .about-right { grid-template-columns: 1fr; }
      .stat-card:first-child { grid-column: span 1; }
      .property-detail-image { max-height: 320px; }
      .property-detail-info { padding: 1.5rem; }
      .property-detail-card { padding: 1.5rem; }
   .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 !important;
    float: right !important;
    position: sticky;
    align-self: flex-end;
    margin-top: -60px !important;
  }
    }
   