    :root {
      --gold:         #CAA56A;
      --gold-light:   #D9C369;
      --gold-dark:    #C69C3E;
      --gold-grad:    linear-gradient(90deg, #D9C369 0%, #C69C3E 100%);
      --gold-line:    linear-gradient(90deg, #A1701D 0%, #D0AA4A 100%);
      --bg-main:      #111111;
      --dark-grey:    #3F3F3F;
      --light-grey:   #9D9D9D;
      --white:        #FFFFFF;
    }

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

    html, body {
      background: var(--bg-main);
      color: var(--white);
      font-family: 'Faustina', serif;
      overflow-x: hidden;
    }

    /* ─── Hero Section ─────────────────────────────────────────────────────── */
    .hero-section {
      padding: 90px 164px 10px;
      text-align: center;
    }
    .hero-title {
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: 52px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .hero-subtitle {
      font-family: 'Faustina', serif;
      font-weight: 400;
      font-size: 18px;
      color: var(--white);
      max-width: 1060px;
      margin: 0 auto;
      line-height: 1.65;
      opacity: 1;
    }

    /* ─── Properties Grid ───────────────────────────────────────────────────── */
    .properties-section {
      padding: 40px 164px 80px;
    }
    .uk-grid-match > * { display: flex; }

    /* ─── Property Card ──────────────────────────────────────────────────────── */
    .prop-card {
      position: relative;
      width: 100%;
      height: 552px;
      overflow: hidden;
      cursor: pointer;
      display: block;
    }
    .prop-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .prop-card:hover .prop-card-img { transform: scale(1.2); }
    .prop-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 43%, rgba(0,0,0,0.58) 89%);
    }
    .prop-card:hover .prop-card-overlay { background:linear-gradient(to bottom, rgba(0, 0, 0, 0) 43%, rgb(0 0 0 / 0%) 89%);transition: background 0.55s}
    .prop-card-explore {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--dark-grey);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Fredoka', sans-serif;
      font-size: 18px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 9px 24px;
      opacity: 0;
      transition: opacity 0.3s ease, background 0.2s, color 0.2s;
      white-space: nowrap;
      cursor: pointer;
      border: 1px solid var(--gold);
    }
    .prop-card:hover .prop-card-explore {
      opacity: 1;
    }
    .prop-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 30px 26px;
    }
    .prop-card-name {
      font-family: 'Fredoka', sans-serif;
      font-weight: 400;
      font-size: 22px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      line-height: 1.2;
       margin-bottom: 0;
    }
    .prop-card-loc {
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: 12px;
      color: var(--white);
      text-transform: uppercase;
      opacity: 0.85;
      margin-top: 2px;
      margin-bottom: 0;
    }
    .prop-card-price {
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: 14px;
      text-transform: capitalize;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-top: 6px;
      display: inline-block;
    }


    /* ─── Responsive ─────────────────────────────────────────────────────── */
    @media (max-width: 1200px) {
      .hero-section { padding: 56px 40px 32px; }
      .properties-section { padding: 32px 40px 60px; }
    }
    @media (max-width: 900px) {
      .hero-title { font-size: 36px; }
      .hero-subtitle { font-size: 16px; }
    }
    @media (max-width: 640px) {
      .hero-section { padding: 89px 20px 24px; }
      .properties-section { padding: 24px 20px 48px; }
      .hero-title { font-size: 28px; }
    }