  :root {
    --gold: var(--site-accent);
    --gold-light: var(--site-accent);
    --gold-dark: var(--site-accent);
    --black: #080808;
    --dark: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #242424;
    --white: #F8F5EF;
    --white-2: #EDE9E0;
    --gray: #888880;
    --gray-light: #BDBDB5;
    --accent: var(--site-accent);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-luxury: cubic-bezier(0.77, 0, 0.175, 1);
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--site-accent);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
  }
  .cursor-follower {
    width: 36px; height: 36px;
    border: 1px solid var(--site-accent);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.25s var(--ease-smooth), width 0.4s ease, height 0.4s ease, border-color 0.3s ease;
    opacity: 0.7;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; }
  body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 60px; height: 60px; opacity: 0.4; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--site-accent); }

  /* NAVIGATION */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease;
  }
  nav.scrolled {
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.15);
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 0;
  }
  .nav-logo img {
    height: 46px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  .nav-logo::before,
  .loader-logo::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260%;
    height: 180%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.34) 36%, rgba(255,255,255,0.10) 62%, rgba(255,255,255,0.00) 86%);
    pointer-events: none;
    z-index: 0;
  }
  .nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
  }
  .nav-mobile-only {
    display: none;
  }
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(8,8,8,0.5);
    color: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle i {
    font-size: 18px;
    line-height: 1;
  }
  .nav-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-2);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--site-accent);
    transition: width 0.4s var(--ease-smooth);
  }
  .nav-links a:hover { color: var(--site-accent); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    color: var(--black) !important;
    background: var(--site-accent);
    padding: 12px 28px;
    border-radius: 0;
    transition: background 0.3s ease, transform 0.3s ease !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); color: var(--black) !important; }
  .nav-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
  }
  .nav-lang-switch a {
    font-size: 10px;
    letter-spacing: 1px;
    border: 1px solid rgba(var(--site-accent-rgb),0.24);
    padding: 6px 8px;
    min-width: 34px;
    text-align: center;
  }
  .nav-lang-switch a::after {
    display: none;
  }
  .nav-lang-switch a.is-active {
    border-color: var(--site-accent);
    color: var(--site-accent);
  }
  html[dir='rtl'] .nav-links {
    direction: rtl;
  }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.4) 0%,
      rgba(8,8,8,0.2) 40%,
      rgba(8,8,8,0.65) 80%,
      rgba(8,8,8,1) 100%
    );
  }
  .hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
  }
  .hero-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-smooth) 0.3s forwards;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 48px; height: 1px;
    background: var(--site-accent);
    opacity: 0.6;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 10vw, 148px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s var(--ease-smooth) 0.5s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--site-accent);
    font-weight: 400;
  }
  .hero-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-smooth) 0.8s forwards;
  }

  /* HERO SEARCH BAR */
  .hero-search {
    background: rgba(8,8,8,0.75);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(var(--site-accent-rgb),0.3);
    padding: 8px 8px 8px 32px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 900px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-smooth) 1.1s forwards;
  }
  .hero-search::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(var(--site-accent-rgb),0.5), transparent, rgba(var(--site-accent-rgb),0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .hero-search:focus-within::before { opacity: 1; }
  .search-divider { width: 1px; height: 36px; background: rgba(var(--site-accent-rgb),0.2); flex-shrink: 0; }
  .search-field {
    display: flex;
    flex-direction: column;
    padding: 10px 24px;
    flex: 1;
    cursor: pointer;
  }
  .search-field label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 4px;
    pointer-events: none;
  }
  .search-field input, .search-field select {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
  }
  .search-field select option { background: var(--dark-2); color: var(--white); }
  .search-btn {
    background: var(--site-accent);
    border: none;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 22px 36px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .search-btn:hover { background: var(--gold-light); transform: scale(1.02); }
  .search-btn svg { width: 16px; height: 16px; }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
  }
  .scroll-indicator span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--site-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }

  /* STATS BAR */
  .stats-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(var(--site-accent-rgb),0.1);
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.1);
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 0 40px;
    position: relative;
  }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(var(--site-accent-rgb),0.15);
  }
  .stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1;
  }
  .stat-number-value {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    color: var(--site-accent);
    line-height: 1;
  }
  .stat-number-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--site-accent);
    line-height: 1;
    letter-spacing: 0.5px;
  }
  .stat-number-text-prefix {
    margin-right: 2px;
  }
  .stat-number sup { font-size: 22px; vertical-align: super; }
  .stat-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* SECTION HEADER */
  .section-header {
    padding: 0 60px;
    margin-bottom: 60px;
  }
  .section-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-eyebrow::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--site-accent);
    opacity: 0.5;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    letter-spacing: -1px;
  }
  .section-title em { font-style: italic; color: var(--site-accent); }
  .section-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 12px;
    max-width: 480px;
  }

  /* LISTINGS SECTION */
  .listings-section {
    padding: 120px 0;
    background: var(--black);
  }
  .listings-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px;
    margin-bottom: 64px;
  }
  .listings-filters {
    display: flex;
    gap: 0;
    border: 1px solid rgba(var(--site-accent-rgb),0.2);
  }
  .filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(var(--site-accent-rgb),0.2);
  }
  .filter-btn:last-child { border-right: none; }
  .filter-btn.active, .filter-btn:hover {
    background: var(--site-accent);
    color: var(--black);
  }

  /* LISTINGS GRID */
  .listings-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 2px;
    padding: 0 60px;
  }

  /* PROPERTY CARD */
  .property-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-2);
  }
  .property-card:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 620px; }
  .property-card:nth-child(2) { grid-column: span 5; min-height: 310px; }
  .property-card:nth-child(3) { grid-column: span 5; min-height: 310px; }
  .property-card:nth-child(4) { grid-column: span 4; min-height: 380px; }
  .property-card:nth-child(5) { grid-column: span 4; min-height: 380px; }
  .property-card:nth-child(6) { grid-column: span 4; min-height: 380px; }

  .card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
    display: block;
    min-height: inherit;
  }
  .card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(26, 31, 42, 0.95), rgba(18, 22, 30, 0.95));
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .property-card:hover .card-img { transform: scale(1.08); }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(8,8,8,0.92) 0%,
      rgba(8,8,8,0.4) 40%,
      transparent 70%
    );
    transition: background 0.5s ease;
  }
  .property-card:hover .card-overlay {
    background: linear-gradient(
      to top,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.6) 50%,
      rgba(8,8,8,0.2) 100%
    );
  }

  .card-badge {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--site-accent);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 2;
  }
  .card-badge.rent { background: rgba(var(--site-accent-rgb),0.15); color: var(--site-accent); border: 1px solid rgba(var(--site-accent-rgb),0.4); background: transparent; }

  .card-fav {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(8,8,8,0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--white);
  }
  .card-fav:hover { border-color: var(--site-accent); color: var(--site-accent); background: rgba(var(--site-accent-rgb),0.1); }
  .card-fav svg { width: 16px; height: 16px; }

  .card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s var(--ease-smooth);
  }
  .card-location {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-location::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--site-accent);
  }
  .card-name {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.1vw, 30px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow:
      -1px -1px 0 rgba(0, 0, 0, 0.95),
      1px -1px 0 rgba(0, 0, 0, 0.95),
      -1px 1px 0 rgba(0, 0, 0, 0.95),
      1px 1px 0 rgba(0, 0, 0, 0.95);
  }
  .card-price {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    color: var(--site-accent);
    margin-bottom: 20px;
  }
  .card-price span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 2px;
  }
  .card-specs {
    display: flex;
    gap: 24px;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .card-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .card-specs svg { width: 14px; height: 14px; opacity: 0.6; }

  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--site-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.3);
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-smooth);
  }
  .property-card:hover .card-cta { opacity: 1; transform: translateY(0); }
  .card-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
  .card-cta:hover svg { transform: translateX(4px); }

  /* FEATURED PROPERTY - CINEMATIC */
  .featured-section {
    padding: 160px 0;
    background: var(--dark);
    overflow: hidden;
    position: relative;
  }
  .featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
  }
  .featured-visual {
    position: relative;
    overflow: hidden;
  }
  .featured-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
  }
  .featured-section:hover .featured-img { transform: scale(1.04); }
  .featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
  }
  .featured-badge {
    position: absolute;
    top: 48px; left: 48px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--site-accent);
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .featured-badge::before {
    content: '';
    width: 1px; height: 48px;
    background: var(--site-accent);
    opacity: 0.5;
  }
  .featured-content {
    padding: 80px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    position: relative;
  }
  .featured-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .featured-tag::before { content: ''; width: 32px; height: 1px; background: var(--site-accent); opacity: 0.5; }
  .featured-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
  }
  .featured-title em { font-style: italic; color: var(--site-accent); }
  .featured-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
  }
  .featured-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(var(--site-accent-rgb),0.1);
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.1);
  }
  .meta-item label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-bottom: 8px;
  }
  .meta-item value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    display: block;
  }
  .meta-item value small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 1px;
  }
  .featured-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--site-accent);
    margin-bottom: 8px;
    line-height: 1;
  }
  .featured-price-note {
    font-size: 11px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 2px;
    margin-bottom: 40px;
  }
  .featured-actions {
    display: flex;
    gap: 16px;
  }
  .btn-primary {
    background: var(--site-accent);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 36px;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .btn-outline:hover { border-color: var(--site-accent); color: var(--site-accent); transform: translateY(-2px); }
  html[dir='rtl'] a[href^='tel:'] {
    direction: ltr;
    unicode-bidi: isolate;
  }
  html[dir='rtl'] .phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
  }

  /* SWIPER SLIDER */
  .slider-section {
    padding: 120px 0 120px 60px;
    background: var(--black);
    overflow: hidden;
  }
  .slider-section .section-header { padding: 0; margin-bottom: 48px; }
  .swiper {
    overflow: visible !important;
    padding-right: 60px !important;
  }
  .swiper-slide { width: 380px !important; }
  .slide-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
  }
  .slide-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
  }
  .slide-card:hover img { transform: scale(1.07); }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
    z-index: 1;
  }
  .slide-info,
  .slide-card .card-info {
    position: absolute;
    bottom: 32px; left: 32px; right: 32px;
    z-index: 2;
    padding: 0;
  }
  .slide-card .card-location,
  .slide-location {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 8px;
  }
  .slide-card .card-location::before {
    display: none;
  }
  .slide-card .card-name,
  .slide-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
  }
  .slide-card .card-price,
  .slide-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--site-accent);
    margin-bottom: 0;
  }
  .swiper-navigation {
    display: flex;
    gap: 12px;
    margin-top: 48px;
    padding-right: 60px;
  }
  .swiper-btn {
    width: 52px; height: 52px;
    border: 1px solid rgba(var(--site-accent-rgb),0.3);
    background: transparent;
    color: var(--site-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .swiper-btn:hover { background: var(--site-accent); color: var(--black); border-color: var(--site-accent); }
  .swiper-btn svg { width: 18px; height: 18px; }

  /* MAP SECTION */
  .map-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
  }
  .map-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    height: 700px;
  }
  .map-sidebar {
    background: var(--dark-2);
    border: 1px solid rgba(var(--site-accent-rgb),0.1);
    border-right: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .map-sidebar-header {
    padding: 32px;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.1);
    flex-shrink: 0;
  }
  .map-sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
  }
  .map-sidebar-header p {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
  }
  .map-list {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--site-accent) transparent;
  }
  .map-list-item {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.07);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .map-list-item:hover, .map-list-item.active { background: rgba(var(--site-accent-rgb),0.05); }
  .map-list-item.active { border-left: 2px solid var(--site-accent); }
  .map-list-thumb {
    width: 72px; height: 64px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .map-list-info { flex: 1; min-width: 0; }
  .map-list-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .map-list-loc {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 6px;
  }
  .map-list-price {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
  }
  #map-container {
    position: relative;
    flex: 1;
    z-index: 1;
  }
  #map {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3) contrast(1.1);
  }
  /* Leaflet dark override */
  .leaflet-tile { filter: brightness(0.7) sepia(0.2); }
  .leaflet-control-zoom a {
    background: var(--dark-2) !important;
    color: var(--site-accent) !important;
    border-color: rgba(var(--site-accent-rgb),0.3) !important;
  }

  /* Custom map marker */
  .custom-marker {
    width: 40px; height: 40px;
    border-radius: 50% 50% 50% 0;
    background: var(--site-accent);
    border: 3px solid var(--dark);
    transform: rotate(-45deg);
    box-shadow: 0 4px 20px rgba(var(--site-accent-rgb),0.4);
  }

  /* TESTIMONIALS */
  .testimonials-section {
    padding: 160px 60px;
    background: var(--black);
    text-align: center;
    overflow: hidden;
  }
  .testimonials-section .section-header {
    padding: 0;
    text-align: center;
    margin-bottom: 80px;
  }
  .testimonials-section .section-eyebrow {
    justify-content: center;
  }
  .testimonials-section .section-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--site-accent);
    opacity: 0.5;
  }
  .testimonials-section .section-eyebrow::after { display: none; }
  .testimonials-section .section-eyebrow::before { display: block; }
  .testi-swiper { padding: 0 40px; }
  .testi-slide {
    padding: 60px;
    background: var(--dark-2);
    border: 1px solid rgba(var(--site-accent-rgb),0.1);
    position: relative;
    text-align: left;
  }
  .testi-quote {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: var(--site-accent);
    line-height: 0.5;
    margin-bottom: 32px;
    opacity: 0.4;
  }
  .testi-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .testi-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .testi-role { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }
  .testi-stars {
    position: absolute;
    top: 40px; right: 60px;
    color: var(--site-accent);
    font-size: 16px;
    letter-spacing: 4px;
  }

  /* AGENTS SECTION */
  .agents-section {
    padding: 120px 60px;
    background: var(--dark);
  }
  .agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
  }
  .agent-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 480px;
  }
  .agent-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
    transition: all 0.7s var(--ease-smooth);
  }
  .agent-card:hover img { transform: scale(1.07); filter: grayscale(0); }
  .agent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
    transition: background 0.5s ease;
  }
  .agent-card:hover .agent-overlay {
    background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.5) 60%, rgba(var(--site-accent-rgb),0.15) 100%);
  }
  .agent-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
  }
  .agent-dept {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 8px;
  }
  .agent-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
  }
  .agent-props {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .agent-contact {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-smooth);
  }
  .agent-card:hover .agent-contact { opacity: 1; transform: translateY(0); }
  .agent-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .agent-social:hover { border-color: var(--site-accent); color: var(--site-accent); background: rgba(var(--site-accent-rgb),0.1); }

  /* CTA SECTION */
  .cta-section {
    position: relative;
    padding: 180px 60px;
    overflow: hidden;
    text-align: center;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.5s ease;
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.78);
  }
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 32px;
  }
  .cta-title em { font-style: italic; color: var(--site-accent); }
  .cta-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 56px;
    letter-spacing: 0.5px;
  }
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* FOOTER */
  footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(var(--site-accent-rgb),0.1);
    padding: 80px 60px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 0;
    margin-bottom: 16px;
    text-decoration: none;
  }
  .footer-brand .logo img {
    height: 46px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  .footer-brand .logo::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260%;
    height: 180%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.34) 36%, rgba(255,255,255,0.10) 62%, rgba(255,255,255,0.00) 86%);
    pointer-events: none;
    z-index: 0;
  }
  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 32px;
  }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(var(--site-accent-rgb),0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .footer-social a:hover { border-color: var(--site-accent); color: var(--site-accent); background: rgba(var(--site-accent-rgb),0.08); }
  .footer-col h4 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.15);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--site-accent);
    transition: width 0.3s ease;
  }
  .footer-col ul li a:hover { color: var(--site-accent); }
  .footer-col ul li a:hover::before { width: 12px; }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(var(--site-accent-rgb),0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom p { font-size: 11px; font-weight: 300; color: var(--gray); letter-spacing: 1px; }
  .footer-bottom-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .footer-bottom-links a {
    font-size: 11px;
    font-weight: 300;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  .footer-bottom-links a:hover { color: var(--site-accent); }

  /* UTILITIES */
  .gold-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--site-accent), transparent);
    margin: 0 auto;
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  /* PAGE LOADER */
  #loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  #loader.hidden { opacity: 0; visibility: hidden; }
  .loader-logo {
    position: relative;
    animation: float 3s ease infinite;
  }
  .loader-logo img {
    height: 56px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  .loader-bar {
    width: 200px; height: 1px;
    background: rgba(var(--site-accent-rgb),0.15);
    position: relative;
    overflow: hidden;
  }
  .loader-progress {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--site-accent);
    width: 0%;
    transition: width 0.1s ease;
  }
  .loader-text {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* PROPERTY MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 40px;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    background: var(--dark-2);
    border: 1px solid rgba(var(--site-accent-rgb),0.15);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s var(--ease-smooth);
    position: relative;
  }
  .modal-overlay.open .modal { transform: scale(1) translateY(0); }
  .modal-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border: 1px solid rgba(var(--site-accent-rgb),0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
  }
  .modal-close:hover { border-color: var(--site-accent); color: var(--site-accent); }
  .modal-close svg { width: 20px; height: 20px; }
  .modal-img {
    width: 100%; height: 400px;
    object-fit: cover;
    display: block;
  }
  .modal-body {
    padding: 48px;
  }
  .modal-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .modal-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
  }
  .modal-price {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--site-accent);
    text-align: right;
  }
  .modal-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(var(--site-accent-rgb),0.1);
  }
  .modal-spec { text-align: center; }
  .modal-spec-val {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    display: block;
  }
  .modal-spec-key {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-top: 4px;
  }
  .modal-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .modal-actions { display: flex; gap: 16px; }

  /* FLOATING CONTACT */
  .float-contact {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .float-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .float-contact.is-open .float-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .float-btn {
    width: 34px; height: 34px;
    background: #ffffff;
    border: 1px solid rgba(8, 8, 8, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .float-btn:hover { transform: translateY(-3px); }
  .float-btn svg { width: 30px; height: 30px; color: var(--site-accent); }
  .float-btn .float-icon-close {
    display: none;
  }
  .float-contact.is-open .float-btn .float-icon-message {
    display: none;
  }
  .float-contact.is-open .float-btn .float-icon-close {
    display: block;
  }
  .float-link {
    min-height: 36px;
    padding: 0 12px 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(8, 8, 8, 0.1);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--site-accent);
    text-decoration: none;
    transform: translateX(14px);
    opacity: 0;
    transition: transform 0.24s ease, color 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
  }
  .float-contact.is-open .float-link {
    transform: translateX(0);
    opacity: 1;
  }
  .float-contact.is-open .float-link:nth-child(1) { transition-delay: 0.03s; }
  .float-contact.is-open .float-link:nth-child(2) { transition-delay: 0.07s; }
  .float-contact.is-open .float-link:nth-child(3) { transition-delay: 0.11s; }
  .float-contact.is-open .float-link:nth-child(4) { transition-delay: 0.15s; }
  .float-link .float-link-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #111827;
    white-space: nowrap;
  }
  .float-link:hover {
    transform: translateY(-2px);
    color: var(--site-accent);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
  }
  .float-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
  }
  /* RESPONSIVE BASICS */
  @media (max-width: 1200px) {
    nav { padding: 24px 40px; }
    .listings-grid { padding: 0 40px; }
    .featured-content { padding: 60px 60px 60px 40px; }
  }
  @media (max-width: 900px) {
    body {
      cursor: auto;
    }
    .cursor,
    .cursor-follower {
      display: none;
    }
    nav {
      padding: 16px 20px;
    }
    nav.scrolled {
      padding: 16px 20px;
    }
    .nav-toggle {
      display: inline-flex;
    }
    #mainNav .nav-links {
      position: absolute;
      top: calc(100% + 8px);
      left: 16px;
      right: 16px;
      display: none !important;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(8,8,8,0.96);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 10px 0;
      z-index: 1001;
    }
    #mainNav.open .nav-links {
      display: flex !important;
    }
    .nav-links li {
      width: 100%;
    }
    .nav-lang-switch {
      width: 100%;
      justify-content: flex-start;
      padding: 10px 14px;
    }
    .nav-lang-switch a {
      width: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 10px;
    }
    .nav-mobile-only {
      display: list-item;
    }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 10px 14px;
    }
    .nav-cta {
      margin: 6px 12px 0;
      text-align: center;
      font-size: 9px !important;
      letter-spacing: 2px !important;
      padding: 10px 14px;
    }
    .listings-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
    }
    .listings-filters {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      overflow: visible;
    }
    .filter-btn {
      flex: initial;
      white-space: normal;
      text-align: center;
      padding: 10px 8px;
      font-size: 9px;
      letter-spacing: 1.5px;
    }
    .listings-grid {
      grid-template-columns: 1fr 1fr;
      padding: 0 16px;
    }
    .card-info {
      padding: 24px 14px 18px;
    }
    .card-name {
      font-size: 12px;
      line-height: 1.18;
      margin-top: 8px;
      margin-bottom: 10px;
      color: #ffffff;
      text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 1),
        1px -1px 0 rgba(0, 0, 0, 1),
        -1px 1px 0 rgba(0, 0, 0, 1),
        1px 1px 0 rgba(0, 0, 0, 1);
      max-width: 95%;
    }
    .hero-content {
      padding: 110px 16px 0;
    }
    .hero-eyebrow {
      font-size: 9px;
      letter-spacing: 2px;
      gap: 8px;
      margin-bottom: 16px;
      white-space: normal;
      line-height: 1.4;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      width: 18px;
    }
    .hero-search {
      max-width: 100%;
      padding: 6px 6px 6px 14px;
      gap: 0;
      flex-wrap: nowrap;
      overflow: hidden;
    }
    .search-field {
      min-width: 0;
      padding: 8px 10px;
    }
    .search-field label {
      font-size: 8px;
      letter-spacing: 1.5px;
    }
    .search-field input,
    .search-field select {
      font-size: 11px;
      letter-spacing: 0.3px;
    }
    .search-divider {
      height: 28px;
    }
    .search-btn {
      width: auto;
      justify-content: center;
      padding: 14px 12px;
      font-size: 8px;
      letter-spacing: 1.5px;
      gap: 6px;
    }
    .section-header {
      padding: 0 16px;
    }
    .listings-header {
      padding: 0 16px;
      margin-bottom: 36px;
    }
    .slider-section {
      padding: 80px 0 80px 16px;
    }
    .swiper {
      padding-right: 16px !important;
    }
    .swiper-navigation {
      padding-right: 16px;
    }
    .map-section .section-header {
      padding: 0 16px !important;
    }
    .map-layout {
      margin: 0 16px !important;
    }
    .property-card:nth-child(1) { grid-column: span 2; }
    .property-card:nth-child(2),
    .property-card:nth-child(3) { grid-column: span 1; }
    .property-card:nth-child(4),
    .property-card:nth-child(5),
    .property-card:nth-child(6) { grid-column: span 1; min-height: 300px; }
    .property-card:nth-child(6) { display: none; }
    .featured-inner { grid-template-columns: 1fr; }
    .featured-visual { height: 400px; }
    .map-layout { grid-template-columns: 1fr; height: auto; }
    .map-sidebar { height: 300px; }
    #map-container { height: 400px; }
    .agents-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-section,
    .agents-section,
    .cta-section,
    footer {
      padding-left: 16px;
      padding-right: 16px;
    }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .footer-bottom-links {
      gap: 16px;
      flex-wrap: wrap;
    }
    .stats-bar {
      padding: 24px 16px;
      gap: 20px;
    }
    .stat-item {
      padding: 0;
    }
    .stat-item:not(:last-child)::after {
      display: none;
    }
    .stats-bar { grid-template-columns: 1fr 1fr; }

    .testiSwiper .swiper-slide {
      width: 100% !important;
    }
    .testi-slide {
      padding: 32px 24px;
    }
  }
