    :root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --black: #0A0A0A;
      --dark: #111111;
      --dark2: #1A1A1A;
      --gray: #F4F4F2;
      --text-light: #AAAAAA;
      --white: #FFFFFF;
      --radius: 4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }

    a { text-decoration: none; color: inherit; }

    /* ─── HEADER ─────────────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px) ;
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: padding 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 60px; height: 60px;
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--gold);
      font-weight: 700;
    }

    .logo-text {
      color: var(--white);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      letter-spacing: 2px;
      font-weight: 600;
    }

    .logo-text span { color: var(--gold); }

    nav { display: flex; align-items: center; gap: 36px; }

    nav a {
      color: var(--text-light);
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--gold); }

    .header-right { display: flex; align-items: center; gap: 16px; }

    .lang-btn {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 6px 16px;
      font-family: 'Outfit', sans-serif;
      font-size: 12px;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .lang-btn:hover { background: var(--gold); color: var(--black); }

    .header-cta {
      background: var(--gold);
      color: var(--black);
      padding: 10px 22px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .header-cta:hover { background: var(--gold-light); }

    /* ─── HERO ───────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      background: var(--black);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
        linear-gradient(135deg, #0A0A0A 0%, #1a1209 100%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
      animation: fadeUp 1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 20px;
      margin-bottom: 32px;
      animation: fadeUp 1s 0.2s ease both;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 9vw, 110px);
      color: var(--white);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -1px;
      animation: fadeUp 1s 0.3s ease both;
    }

    .hero-title span { color: var(--gold); }

    .hero-subtitle {
      color: var(--text-light);
      font-size: clamp(14px, 2vw, 18px);
      margin: 20px 0 44px;
      letter-spacing: 1px;
      animation: fadeUp 1s 0.4s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s 0.5s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--black);
      padding: 16px 32px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .btn-primary:hover { background: var(--gold-light); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      padding: 16px 32px;
      font-size: 14px;
      letter-spacing: 0.5px;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
    }

    .hero-stats {
      position: absolute;
      bottom: 50px;
      left: 0; right: 0;
      display: flex;
      justify-content: center;
      gap: 60px;
      z-index: 2;
      animation: fadeUp 1s 0.7s ease both;
    }

    .stat { text-align: center; }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: var(--gold);
      font-weight: 700;
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 6px;
    }

    .hero-scroll {
      position: absolute;
      bottom: 30px;
      right: 60px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      z-index: 2;
    }

    /* ─── SECTION BASE ───────────────────────────────────── */
    section { padding: 100px 60px; }

    .section-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .section-desc {
      color: #666;
      font-size: 15px;
      line-height: 1.7;
      max-width: 520px;
    }

    .max-w { max-width: 1200px; margin: 0 auto; }

    /* ─── SERVICES / FUNNEL ──────────────────────────────── */
    #services { background: var(--gray); }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 30px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 60px;
      color: rgba(201,168,76,0.12);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 24px;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      margin-bottom: 14px;
    }

    .service-desc {
      color: #777;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.5px;
    }

    .service-link::after {
      content: '→';
      transition: transform 0.2s;
    }

    .service-card:hover .service-link::after { transform: translateX(4px); }

     /* ─── PROPERTIES ─────────────────────────────────────── */
    #properties { background: var(--black); color: var(--white); }

    #properties .section-desc { color: var(--text-light); }

    .props-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 30px;
    }

    .props-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }

    .prop-card {
      background: var(--dark2);
      overflow: hidden;
      transition: transform 0.3s;
    }

    .prop-card:hover { transform: translateY(-4px); }

    .prop-img {
      height: 220px;
      position: relative;
      overflow: hidden;
      background: var(--dark);
    }

    /* ─── CAROUSEL (properties section) ─────────────────── */
    .carousel { width: 100%; height: 100%; position: relative; overflow: hidden; }

    .carousel-track {
      display: flex; height: 100%;
      transition: transform 0.38s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    .carousel-slide {
      min-width: 100%; height: 100%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 52px;
    }
    .carousel-slide:nth-child(1) { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: rgba(201,168,76,0.3); }
    .carousel-slide:nth-child(2) { background: linear-gradient(135deg, #1a1f1a, #2a302a); color: rgba(201,168,76,0.3); }
    .carousel-slide:nth-child(3) { background: linear-gradient(135deg, #1a1a1f, #2a2a30); color: rgba(201,168,76,0.3); }
    .carousel-slide:nth-child(4) { background: linear-gradient(135deg, #1f1a1a, #302a2a); color: rgba(201,168,76,0.3); }

    .carousel-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
      width: 36px; height: 36px;
      background: rgba(0,0,0,0.6); border: 1px solid rgba(201,168,76,0.35);
      color: var(--white); font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.2s, background 0.2s, border-color 0.2s;
      backdrop-filter: blur(4px);
    }
    .carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
    .carousel-arrow.prev { left: 10px; }
    .carousel-arrow.next { right: 10px; }
    .prop-img:hover .carousel-arrow { opacity: 1; }

    .carousel-dots {
      position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 5px; z-index: 10;
    }
    .carousel-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.3); cursor: pointer;
      transition: background 0.2s, transform 0.2s; border: none; padding: 0;
    }
    .carousel-dot.active { background: var(--gold); transform: scale(1.3); }

    .carousel-counter {
      position: absolute; bottom: 10px; right: 12px;
      background: rgba(0,0,0,0.55); color: var(--white);
      font-size: 10px; padding: 3px 8px; letter-spacing: 0.5px;
      z-index: 10; backdrop-filter: blur(4px);
    }

    .prop-badge {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--gold);
      color: var(--black);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
    }

    .prop-body { padding: 28px 30px; }

    .prop-location {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .prop-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      margin-bottom: 6px;
    }

    .prop-details {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      color: var(--text-light);
      font-size: 13px;
    }

    .prop-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .prop-btn {
      display: block;
      width: 100%;
      text-align: center;
      background: transparent;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold);
      padding: 12px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.2s;
    }

    .prop-btn:hover { background: var(--gold); color: var(--black); }

    /* ─── DG SECTION ─────────────────────────────────────── */
    #about { background: var(--white); }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, #1a1209, #2a1f0a);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(201,168,76,0.2);
      font-size: 80px;
      font-family: 'Cormorant Garamond', serif;
    }

    .about-accent {
      position: absolute;
      bottom: -24px; right: -24px;
      width: 180px; height: 180px;
      background: var(--gold);
      opacity: 0.1;
      z-index: -1;
    }

    .about-content .section-label { margin-bottom: 16px; }

    .dg-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      line-height: 1.6;
      color: #333;
      font-style: italic;
      border-left: 3px solid var(--gold);
      padding-left: 24px;
      margin: 32px 0;
    }

    .dg-name {
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
    }

    .dg-title {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ─── CTA FINAL ──────────────────────────────────────── */
    #cta {
      background: var(--gold);
      padding: 80px 60px;
      text-align: center;
    }

    #cta .section-title { color: var(--black); margin-bottom: 12px; }

    #cta p { color: rgba(10,10,10,0.7); margin-bottom: 36px; font-size: 15px; }

    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .btn-dark {
      background: var(--black);
      color: var(--white);
      padding: 16px 36px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s;
    }

    .btn-dark:hover { background: #333; }

    .btn-outline-dark {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
      padding: 16px 36px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
    }

    .btn-outline-dark:hover { background: var(--black); color: var(--gold); }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      background: var(--black);
      color: var(--text-light);
      padding: 60px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand .logo-text { font-size: 22px; }

    .footer-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #666;
      margin-top: 16px;
    }

    .footer-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      font-size: 13px;
      color: #666;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--gold); }

    .footer-bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #444;
    }

    /* ─── WHATSAPP FLOAT ─────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 200;
      box-shadow: 0 4px 24px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37,211,102,0.5);
    }

    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ─── MOBILE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      header { padding: 18px 24px; }
      nav { display: none; }
      section { padding: 70px 24px; }
      #hero { padding-top: 80px; }
      .hero-stats { gap: 30px; bottom: 30px; }
      .services-header, .props-header { flex-direction: column; align-items: flex-start; }
      .about-inner { grid-template-columns: 1fr; }
      .about-img { aspect-ratio: 4/3; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
      #cta { padding: 70px 24px; }
      footer { padding: 50px 24px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }