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

    :root {
      --navy:       #1B2E55;
      --navy-dark:  #111E3A;
      --navy-mid:   #243762;
      --blue:       #1E6BB8;
      --sky:        #0EA5E9;
      --sky-light:  #BAE6FD;
      --gold:       #C49A2D;
      --gold-light: #E6C05A;
      --gold-pale:  #FEF3C7;
      --grey:       #6B7280;
      --grey-light: #E5E7EB;
      --grey-pale:  #F9FAFB;
      --black:      #111827;
      --white:      #FFFFFF;
      --text-body:  #374151;
      --text-muted: #9CA3AF;
      --border:     #E5E7EB;
      --border-blue:rgba(30,107,184,0.15);
      --ff-display: 'Playfair Display', Georgia, serif;
      --ff-body:    'Outfit', sans-serif;
      --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
      --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
      --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
      --radius:     4px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--ff-body); background: var(--white); color: var(--text-body); overflow-x: hidden; }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--grey-pale); }
    ::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

    /* UTILITIES */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .section-pad { padding: 100px 0; }
    .section-pad-sm { padding: 70px 0; }
    .text-navy { color: var(--navy); }
    .text-gold { color: var(--gold); }
    .text-sky { color: var(--sky); }

    /* OVERLINE */
    .overline {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      font-weight: 600; color: var(--sky); font-family: var(--ff-body);
      margin-bottom: 16px;
    }
    .overline::before { content: ''; width: 28px; height: 2px; background: var(--sky); flex-shrink: 0; }

    /* SECTION TITLE */
    .section-title {
      font-family: var(--ff-display); font-size: clamp(32px, 4vw, 52px);
      font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-sub {
      font-size: 17px; line-height: 1.8; color: var(--grey); max-width: 580px; font-weight: 300;
    }

    /* DIVIDER */
    .gold-bar { width: 56px; height: 3px; background: var(--gold); margin: 20px 0; border-radius: 2px; }
    .gold-bar.center { margin: 20px auto; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.up { opacity: 1; transform: translateY(0); }
    .reveal-l { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal-l.up { opacity: 1; transform: translateX(0); }
    .reveal-r { opacity: 0; transform: translateX(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal-r.up { opacity: 1; transform: translateX(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

    /* ===== NAVIGATION ===== */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 82px; display: flex; align-items: center;
      padding: 0 48px;
      background: rgba(255,255,255,0.98);
      border-bottom: 1px solid transparent;
      transition: all 0.35s ease;
    }
    #mainNav.scrolled {
      height: 68px;
      box-shadow: 0 2px 20px rgba(27,46,85,0.10);
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.99);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo img { height: 52px; width: auto; transition: height 0.3s; }
    #mainNav.scrolled .nav-logo img { height: 44px; }

    .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
    .nav-links li a {
      font-size: 13px; letter-spacing: 0.5px; font-weight: 500;
      color: var(--text-body); text-decoration: none;
      padding: 8px 16px; border-radius: var(--radius);
      transition: all 0.25s; position: relative;
    }
    .nav-links li a:hover, .nav-links li a.active {
      color: var(--navy); background: var(--grey-pale);
    }
    .nav-links li a.active::after {
      content: ''; position: absolute; bottom: -2px; left: 16px; right: 16px;
      height: 2px; background: var(--gold); border-radius: 1px;
    }

    .nav-cta {
      background: var(--navy); color: var(--white);
      padding: 12px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
      text-decoration: none; border-radius: var(--radius); transition: all 0.3s;
      border: 2px solid var(--navy);
    }
    .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 1px; transition: all 0.3s; display: block; }

    .mobile-menu {
      display: none; position: fixed; inset: 0; top: 82px;
      background: var(--white); z-index: 899;
      flex-direction: column; padding: 40px 32px; gap: 8px;
      border-top: 2px solid var(--gold);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 18px; font-weight: 500; color: var(--navy);
      text-decoration: none; padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ===== LISTINGS DROPDOWN ===== */
    .nav-item.has-dropdown { position: relative; }

    button.nav-trigger {
      display: inline-flex; align-items: center; gap: 5px;
      background: transparent; border: none; cursor: pointer;
      font-family: var(--ff-body); font-size: 13px; font-weight: 500;
      letter-spacing: 0.5px; color: var(--text-body);
      padding: 8px 16px; border-radius: var(--radius);
      transition: all 0.25s; position: relative;
    }
    button.nav-trigger:hover,
    .nav-item.has-dropdown.is-open > button.nav-trigger {
      color: var(--navy); background: var(--grey-pale);
    }

    .nav-trigger__chevron {
      width: 10px; height: 10px;
      stroke: currentColor; fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.25s ease; flex-shrink: 0;
    }
    .nav-item.has-dropdown.is-open .nav-trigger__chevron { transform: rotate(180deg); }

    .dropdown {
      list-style: none;
      position: absolute; top: calc(100% + 6px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 210px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 2px solid var(--gold);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 8px 0;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 9999;
    }
    .nav-item.has-dropdown:hover > .dropdown,
    .nav-item.has-dropdown.is-open > .dropdown {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown__category { list-style: none; }
    .dropdown__category-label {
      display: block; padding: 10px 18px 4px;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); pointer-events: none;
      border-top: 1px solid var(--border);
    }
    .dropdown__category:first-child .dropdown__category-label { border-top: none; }

    .submenu { list-style: none; padding: 2px 0 8px; }
    .submenu__item a {
      display: block; padding: 9px 20px 9px 26px;
      font-size: 13px; font-weight: 400;
      color: var(--text-body); text-decoration: none;
      position: relative;
      transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    }
    .submenu__item a::before {
      content: ''; position: absolute;
      left: 0; top: 22%; bottom: 22%;
      width: 2px; background: var(--gold); border-radius: 2px;
      transform: scaleY(0); transition: transform 0.2s ease;
    }
    .submenu__item a:hover {
      color: var(--navy); background: var(--grey-pale); padding-left: 30px;
    }
    .submenu__item a:hover::before { transform: scaleY(1); }
    .submenu__item a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

    /* Mobile listings accordion */
    .mobile-listings { display: flex; flex-direction: column; }
    .mobile-listings__trigger {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; background: transparent; border: none; cursor: pointer;
      font-family: var(--ff-body); font-size: 18px; font-weight: 500;
      color: var(--navy); padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-listings__trigger:hover { color: var(--gold); }
    .mobile-listings__panel {
      display: flex; flex-direction: column;
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .mobile-listings__panel.is-open { max-height: 400px; }
    .mobile-listings__label {
      display: block; font-size: 10px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); padding: 12px 0 4px 16px;
    }
    .mobile-listings__panel a {
      font-size: 16px !important; padding: 12px 0 12px 28px !important;
      border-bottom: 1px solid var(--grey-light) !important;
    }

    /* ===== PAGES ===== */
    .page { display: none; }
    .page.active { display: block; }
    body { padding-top: 82px; }

    /* ===== HERO (HOME) ===== */
    #hero {
      min-height: calc(100vh - 82px);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #1a4a7a 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.04;
      background-image:
        linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    .hero-glow {
      position: absolute; top: -200px; right: -100px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
    }
    .hero-content {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .hero-text { padding-left: 40px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(196,154,45,0.15); border: 1px solid rgba(196,154,45,0.4);
      color: var(--gold-light); padding: 8px 18px; border-radius: 100px;
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
      margin-bottom: 28px;
    }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s ease infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
    .hero-title {
      font-family: var(--ff-display); font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 700; line-height: 1.1; color: var(--white);
      margin-bottom: 24px; letter-spacing: -0.5px;
    }
    .hero-title span { color: var(--gold); display: block; font-style: italic; font-weight: 400; }
    .hero-desc {
      font-size: 17px; line-height: 1.9; color: rgba(255,255,255,0.7);
      max-width: 520px; margin-bottom: 44px; font-weight: 300;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--white);
      padding: 16px 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
      text-decoration: none; border-radius: var(--radius); transition: all 0.3s;
      border: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,45,0.35); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.3); color: var(--white);
      padding: 16px 36px; font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
      text-decoration: none; border-radius: var(--radius); transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

    .hero-visual-panel {
      position: relative;
    }
    .hero-card-stack {
      position: relative; height: 500px;
    }
    .hcard {
      position: absolute; border-radius: 12px; overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .hcard-main {
      width: 100%; height: 420px; top: 0; left: 0;
      background: url('../images/image-018.jpeg') center/cover;
    }
    .hcard-accent {
      width: 65%; height: 200px; bottom: 0; right: -20px;
      background: url('../images/img-02.jpg') center/cover;
      border: 4px solid var(--white);
    }
    .hero-badge-stat {
      position: absolute; top: 40px; right: -30px;
      background: var(--white); border-radius: 12px; padding: 16px 24px;
      box-shadow: var(--shadow-lg); text-align: center; z-index: 2;
    }
    .hbs-num { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
    .hbs-label { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

    /* MARQUEE */
    .marquee-strip { background: var(--gold); padding: 16px 0; overflow: hidden; }
    .marquee-track { display: flex; gap: 0; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
    .marquee-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 24px; }
    .marquee-item span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); font-weight: 600; }
    .marquee-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }
    @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* STATS */
    .stats-band { background: var(--navy); padding: 60px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
    .stat-cell { background: var(--navy-dark); padding: 40px 32px; text-align: center; transition: background 0.3s; }
    .stat-cell:hover { background: rgba(196,154,45,0.06); }
    .stat-num { font-family: var(--ff-display); font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
    .stat-suffix { font-size: 28px; }
    .stat-label { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 10px; }

    /* HOME VALUE SECTION */
    .value-section { background: var(--white); }
    .value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .value-img-wrap { position: relative; }
    .value-img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px;
      background: url('../images/image-019.jpeg') center/cover;
      box-shadow: var(--shadow-lg);
    }
    .value-badge {
      position: absolute; bottom: -24px; right: -24px;
      background: var(--navy); color: var(--white); border-radius: 8px;
      padding: 24px 28px; text-align: center;
      box-shadow: var(--shadow-lg);
    }
    .vbadge-num { font-family: var(--ff-display); font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
    .vbadge-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.7); margin-top: 4px; }
    .value-content { padding-left: 20px; }
    .value-checks { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
    .vcheck { display: flex; align-items: flex-start; gap: 14px; }
    .vcheck-icon { width: 22px; height: 22px; background: var(--sky); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
    .vcheck-icon svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }
    .vcheck-text { font-size: 15px; color: var(--text-body); line-height: 1.6; }
    .vcheck-text strong { color: var(--navy); font-weight: 600; }

    /* HOME SERVICES OVERVIEW */
    .services-home { background: var(--grey-pale); }
    .services-home-header { text-align: center; margin-bottom: 60px; }
    .services-home-header .section-sub { margin: 0 auto; }
    .services-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .svc-card {
      background: var(--white); border-radius: 8px; padding: 36px 28px;
      border: 1px solid var(--border); transition: all 0.3s;
      cursor: default; text-decoration: none; display: block;
    }
    .svc-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .svc-icon { width: 56px; height: 56px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .svc-icon svg { width: 26px; height: 26px; stroke: var(--sky-light); fill: none; stroke-width: 1.6; }
    .svc-card-title { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
    .svc-card-text { font-size: 14px; color: var(--grey); line-height: 1.7; }
    .svc-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--sky); font-size: 13px; font-weight: 600; margin-top: 16px; text-decoration: none; transition: gap 0.2s; }
    .svc-card:hover .svc-card-link { gap: 10px; }

    /* MV SECTION (HOME) */
    .mv-section { background: var(--navy); }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .mv-cell { padding: 60px 52px; background: var(--navy-dark); }
    .mv-cell:first-child { border-right: 2px solid rgba(255,255,255,0.05); }
    .mv-icon { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .mv-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
    .mv-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
    .mv-title { font-family: var(--ff-display); font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
    .mv-text { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,0.6); font-weight: 300; }

    /* COFFEE CTA */
    .coffee-cta {
      background: linear-gradient(to right, var(--sky), var(--blue));
      padding: 80px 0;
    }
    .coffee-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
    .coffee-text h2 { font-family: var(--ff-display); font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: var(--white); margin-bottom: 10px; }
    .coffee-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
    .btn-white { background: var(--white); color: var(--navy); padding: 16px 36px; font-size: 13px; font-weight: 700; border-radius: var(--radius); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
    .btn-white:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

    /* ===== ABOUT PAGE ===== */
    .about-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
      padding: 80px 0 100px;
    }
    .about-hero-content { text-align: center; max-width: 760px; margin: 0 auto; }
    .about-hero-content .section-title { color: var(--white); }
    .about-hero-content .section-sub { margin: 0 auto; color: rgba(255,255,255,0.65); }

    .about-story { background: var(--white); }
    .about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-story-img {
      width: 100%; aspect-ratio: 4/3;
      background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&auto=format&fit=crop&q=80') center/cover;
      border-radius: 8px; box-shadow: var(--shadow-lg);
    }
    .about-story-text p { font-size: 16px; line-height: 1.9; color: var(--text-body); margin-bottom: 20px; }
    .about-story-text p:last-child { margin-bottom: 0; color: var(--grey); }

    .about-clients { background: var(--grey-pale); }
    .clients-header { text-align: center; margin-bottom: 48px; }
    .clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .client-chip {
      background: var(--white); border: 1px solid var(--border); border-radius: 8px;
      padding: 24px 28px; display: flex; align-items: center; gap: 16px;
      transition: all 0.3s;
    }
    .client-chip:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); }
    .client-chip-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .client-chip-icon svg { width: 20px; height: 20px; stroke: var(--sky-light); fill: none; stroke-width: 1.6; }
    .client-chip-label { font-size: 15px; font-weight: 600; color: var(--navy); }

    .mv-about { background: var(--white); }
    .mv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .mv-card {
      border: 1px solid var(--border); border-radius: 8px; padding: 44px 40px;
      position: relative; overflow: hidden;
    }
    .mv-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
      background: var(--gold);
    }
    .mv-card-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
    .mv-card-title { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
    .mv-card-text { font-size: 16px; line-height: 1.9; color: var(--grey); }

    /* CORE VALUES */
    .values-section { background: var(--navy); }
    .values-header { text-align: center; margin-bottom: 60px; }
    .values-header .section-title { color: var(--white); }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .value-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; padding: 36px 28px; text-align: center;
      transition: all 0.3s;
    }
    .value-card:hover { background: rgba(196,154,45,0.08); border-color: var(--gold); transform: translateY(-4px); }
    .value-card-num { font-family: var(--ff-display); font-size: 48px; font-weight: 700; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 16px; }
    .value-card-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: 1px; }
    .value-card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ===== SERVICES PAGE ===== */
    .services-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
      padding: 80px 0 100px;
    }
    .services-hero-content { text-align: center; max-width: 700px; margin: 0 auto; }
    .services-hero-content .section-title { color: var(--white); }
    .services-hero-content .section-sub { margin: 0 auto; color: rgba(255,255,255,0.65); }

    .services-main { background: var(--white); }
    .services-list { display: flex; flex-direction: column; gap: 0; }
    .service-item {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      min-height: 400px; border-bottom: 1px solid var(--border);
    }
    .service-item:last-child { border-bottom: none; }
    .service-item:nth-child(even) .service-item-img { order: 2; }
    .service-item:nth-child(even) .service-item-content { order: 1; }
    .service-item-img {
      background: #ccc; min-height: 380px;
    }
    .service-item:nth-child(1) .service-item-img {
      background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&auto=format&fit=crop&q=80') center/cover;
    }
    .service-item:nth-child(2) .service-item-img {
      background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800&auto=format&fit=crop&q=80') center/cover;
    }
    .service-item:nth-child(3) .service-item-img {
      background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&auto=format&fit=crop&q=80') center/cover;
    }
    .service-item:nth-child(4) .service-item-img {
      background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=800&auto=format&fit=crop&q=80') center/cover;
    }
    .service-item-content {
      padding: 60px 56px; display: flex; flex-direction: column; justify-content: center;
    }
    .svc-num { font-family: var(--ff-display); font-size: 72px; font-weight: 700; color: var(--navy); opacity: 0.07; line-height: 1; margin-bottom: -12px; }
    .svc-main-title { font-family: var(--ff-display); font-size: 30px; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
    .svc-main-text { font-size: 15px; line-height: 1.85; color: var(--grey); margin-bottom: 28px; }
    .svc-features { display: flex; flex-direction: column; gap: 10px; }
    .svc-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-body); }
    .svc-feat::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

    .services-cta { background: var(--grey-pale); }
    .services-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
    .services-cta-inner .section-sub { margin: 0 auto 36px; }

    /* ===== CONTACT PAGE ===== */
    .contact-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
      padding: 80px 0 100px;
    }
    .contact-hero-content { text-align: center; max-width: 640px; margin: 0 auto; }
    .contact-hero-content .section-title { color: var(--white); }
    .contact-hero-content .section-sub { margin: 0 auto; color: rgba(255,255,255,0.65); }

    .contact-main { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
    .contact-info-title { font-family: var(--ff-display); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .contact-info-sub { font-size: 15px; color: var(--grey); margin-bottom: 40px; line-height: 1.7; }
    .contact-details { display: flex; flex-direction: column; gap: 24px; }
    .cdetail { display: flex; align-items: flex-start; gap: 16px; }
    .cdetail-icon {
      width: 44px; height: 44px; background: var(--navy); border-radius: 8px;
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    }
    .cdetail-icon svg { width: 20px; height: 20px; stroke: var(--sky-light); fill: none; stroke-width: 1.6; }
    .cdetail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
    .cdetail-value { font-size: 15px; color: var(--text-body); line-height: 1.6; }
    .cdetail-value a { color: var(--navy); text-decoration: none; font-weight: 500; transition: color 0.2s; }
    .cdetail-value a:hover { color: var(--sky); }

    /* FORM */
    .form-card {
      background: var(--grey-pale); border-radius: 12px; padding: 48px 44px;
      border: 1px solid var(--border);
    }
    .form-title { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
    .form-sub { font-size: 14px; color: var(--grey); margin-bottom: 32px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .form-group label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
    .form-group input, .form-group select, .form-group textarea {
      background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
      padding: 14px 18px; font-size: 15px; font-family: var(--ff-body); color: var(--text-body);
      outline: none; transition: border-color 0.25s, box-shadow 0.25s;
      width: 100%;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { appearance: none; cursor: pointer; }
    .form-submit {
      background: var(--navy); color: var(--white); border: none; border-radius: var(--radius);
      padding: 16px 40px; font-size: 14px; font-weight: 600; font-family: var(--ff-body);
      cursor: pointer; transition: all 0.3s; width: 100%; letter-spacing: 0.5px;
    }
    .form-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,45,0.35); }
    .form-success { display: none; text-align: center; padding: 40px; }
    .form-success-icon { width: 60px; height: 60px; background: #10B981; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
    .form-success-icon svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 2.5; }

    /* MAP PLACEHOLDER */
    .map-section { background: var(--grey-pale); }
    .map-placeholder {
      width: 100%; height: 360px; border-radius: 12px; overflow: hidden;
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 16px; position: relative;
    }
    .map-placeholder svg { width: 48px; height: 48px; stroke: var(--gold); fill: none; stroke-width: 1.2; opacity: 0.7; }
    .map-placeholder p { color: rgba(255,255,255,0.6); font-size: 15px; }
    .offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
    .office-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 8px;
      padding: 28px 32px; transition: all 0.3s;
    }
    .office-card:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); }
    .office-city { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
    .office-addr { font-size: 15px; color: var(--text-body); line-height: 1.7; }

    /* ===== FOOTER ===== */
    footer { background: var(--navy-dark); border-top: 3px solid var(--gold); }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 72px 0 52px; }
    .footer-logo { display: block; margin-bottom: 20px; }
    .footer-logo img { height: 56px; width: auto; background: #fff; padding: 8px 14px; border-radius: 6px; }
    .footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 28px; max-width: 320px; }
    .footer-social { display: flex; gap: 12px; }
    .fsocial {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.3s; text-decoration: none;
    }
    .fsocial:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
    .footer-col-title { font-family: var(--ff-display); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 24px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* WHATSAPP */
    .whatsapp-float {
      position: fixed; bottom: 32px; right: 32px; z-index: 800;
      width: 56px; height: 56px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 24px;
      box-shadow: 0 6px 24px rgba(37,211,102,0.35); transition: all 0.3s;
    }
    .whatsapp-float:hover { transform: scale(1.1); }
    .wp-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37,211,102,0.35); animation: wpPulse 2s ease infinite; }
    @keyframes wpPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }

    /* PAGE LOADER */
    .page-loader { position: fixed; inset: 0; background: var(--navy-dark); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.7s ease; gap: 24px; }
    .page-loader.hide { opacity: 0; pointer-events: none; }
    .loader-logo-img { height: 80px; width: auto; background: #fff; padding: 12px 20px; border-radius: 8px; animation: loaderPulse 1.5s ease infinite; }
    @keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
    .loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
    .loader-progress { height: 100%; background: var(--gold); border-radius: 2px; animation: loadFill 1.5s ease forwards; }
    @keyframes loadFill { to { width: 100%; } }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .container { padding: 0 32px; }
      .services-cards { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual-panel { display: none; }
      .hero-title { font-size: clamp(38px, 8vw, 56px); }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .value-grid { grid-template-columns: 1fr; gap: 48px; }
      .value-badge { right: 0; }
      .value-content { padding-left: 0; }
      .mv-grid { grid-template-columns: 1fr; gap: 2px; }
      .mv-cell:first-child { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.05); }
      .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
      .clients-grid { grid-template-columns: 1fr 1fr; }
      .mv-about-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .service-item { grid-template-columns: 1fr; }
      .service-item:nth-child(even) .service-item-img { order: 0; }
      .service-item:nth-child(even) .service-item-content { order: 0; }
      .service-item-content { padding: 40px 36px; }
      .service-item-img { min-height: 280px; }
      .contact-grid { grid-template-columns: 1fr; }
      .offices-grid { grid-template-columns: 1fr; }
      .coffee-inner { flex-direction: column; gap: 28px; text-align: center; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; }
    }
    @media (max-width: 680px) {
      #mainNav { padding: 0 20px; height: 70px; }
      body { padding-top: 70px; }
      .mobile-menu { top: 70px; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .container { padding: 0 20px; }
      .section-pad { padding: 68px 0; }
      .services-cards { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { text-align: center; }
      .hero-desc { font-size: 15px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .clients-grid { grid-template-columns: 1fr; }
      .form-card { padding: 32px 24px; }
    }

    /* ===== LISTING PAGE ===== */
    .listing-hero {
      position: relative; overflow: hidden;
      padding: 120px 0 100px;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a7a 100%);
      color: var(--white); text-align: center;
    }
    .listing-hero::before {
      content:''; position:absolute; inset:0; opacity:0.05;
      background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    .listing-hero .container { position: relative; z-index: 2; }
    .listing-hero .tag {
      display:inline-block; padding:8px 18px; border-radius:100px;
      background: rgba(196,154,45,0.15); border:1px solid rgba(196,154,45,0.4);
      color: var(--gold-light); font-size:12px; letter-spacing:3px; text-transform:uppercase;
      font-weight:500; margin-bottom: 24px;
    }
    .listing-hero h1 {
      font-family: var(--ff-display); font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 700; line-height: 1.1; margin-bottom: 20px;
    }
    .listing-hero h1 em { color: var(--gold); font-weight:400; }
    .listing-hero p {
      max-width: 720px; margin: 24px auto 0; font-size: 17px;
      line-height: 1.85; color: rgba(255,255,255,0.75); font-weight: 300;
    }
    .listing-meta {
      display:flex; gap:36px; justify-content:center; flex-wrap:wrap;
      margin-top: 44px; padding-top: 36px; border-top:1px solid rgba(255,255,255,0.12);
    }
    .listing-meta div { text-align:center; }
    .listing-meta .num {
      font-family: var(--ff-display); font-size: 32px; color: var(--gold); font-weight:600;
    }
    .listing-meta .lab {
      font-size: 11px; letter-spacing:2px; text-transform:uppercase;
      color: rgba(255,255,255,0.6); margin-top:6px;
    }

    .feature-grid {
      display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .feature-card {
      background: var(--white); border:1px solid var(--border);
      padding: 32px 28px; border-radius: var(--radius);
      transition: all 0.3s; box-shadow: var(--shadow-sm);
    }
    .feature-card:hover {
      transform: translateY(-4px); box-shadow: var(--shadow-md);
      border-color: var(--border-blue);
    }
    .feature-card .ic {
      width:48px; height:48px; border-radius: var(--radius);
      background: linear-gradient(135deg, var(--navy), var(--blue));
      color: var(--gold); display:flex; align-items:center; justify-content:center;
      font-family: var(--ff-display); font-weight:600; font-size:18px;
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-family: var(--ff-display); font-size: 21px; color: var(--navy);
      margin-bottom: 10px; font-weight: 600;
    }
    .feature-card p { font-size: 14px; line-height:1.7; color: var(--grey); }

    .villa-grid {
      display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    }
    .villa-card {
      background: linear-gradient(180deg, #fafbfc 0%, var(--white) 100%);
      border:1px solid var(--border); border-radius: var(--radius);
      padding: 28px 22px; text-align:center; transition: all 0.3s;
    }
    .villa-card:hover {
      transform: translateY(-4px); border-color: var(--gold);
      box-shadow: var(--shadow-md);
    }
    .villa-card .name {
      font-family: var(--ff-display); font-size: 22px; color: var(--navy);
      font-weight:600; letter-spacing:2px;
    }
    .villa-card .tsm {
      font-size:12px; letter-spacing:1.5px; color: var(--gold);
      text-transform:uppercase; margin: 8px 0 18px; font-weight:600;
    }
    .villa-card .floors { display:flex; justify-content:space-around; padding-top:14px; border-top:1px dashed var(--border); }
    .villa-card .floors div { font-size:11px; color: var(--grey); }
    .villa-card .floors strong { display:block; color: var(--navy); font-size:13px; margin-bottom:2px; }

    .price-grid {
      display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    }
    .price-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white); padding: 44px 36px; border-radius: var(--radius);
      position: relative; overflow: hidden;
    }
    .price-card::before {
      content:''; position:absolute; top:-50px; right:-50px;
      width:200px; height:200px; border-radius:50%;
      background: radial-gradient(circle, rgba(196,154,45,0.18), transparent 70%);
    }
    .price-card .lab {
      font-size:11px; letter-spacing:3px; text-transform:uppercase; color: var(--gold-light); font-weight:500;
    }
    .price-card .amt {
      font-family: var(--ff-display); font-size: 48px; color: var(--gold);
      font-weight:700; margin: 14px 0 6px;
    }
    .price-card .unit { font-size:13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
    .price-card .desc { font-size:14px; line-height:1.75; color: rgba(255,255,255,0.78); position:relative; z-index:1; }

    .roi-strip {
      display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
      background: var(--border); border:1px solid var(--border); border-radius: var(--radius);
      overflow:hidden;
    }
    .roi-strip > div { background: var(--white); padding: 28px 20px; text-align:center; }
    .roi-strip .v { font-family: var(--ff-display); font-size: 26px; color: var(--navy); font-weight:600; }
    .roi-strip .l { font-size: 11px; letter-spacing:2px; text-transform:uppercase; color: var(--grey); margin-top:8px; }
    .roi-strip .v.gold { color: var(--gold); }

    .check-grid {
      display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px;
    }
    .check-grid li {
      list-style:none; padding-left: 32px; position:relative;
      font-size: 14px; line-height: 1.7; color: var(--text-body);
    }
    .check-grid li::before {
      content:'✓'; position:absolute; left:0; top:0;
      width:22px; height:22px; border-radius:50%;
      background: var(--navy); color: var(--gold);
      display:flex; align-items:center; justify-content:center;
      font-size:12px; font-weight:700;
    }

    /* HOME PAGE FEATURED LISTING */
    .featured-listing {
      padding: 100px 0;
      background: linear-gradient(135deg, #f5f8fc 0%, var(--grey-pale) 100%);
    }
    .fl-inner {
      display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:center;
    }
    .fl-visual {
      position: relative; aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #1a4a7a);
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .fl-visual::before {
      content:''; position:absolute; inset:0; opacity:0.08;
      background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .fl-visual-inner {
      position:absolute; inset:0; display:flex; flex-direction:column;
      justify-content:flex-end; padding: 40px; color: var(--white); z-index:1;
    }
    .fl-visual .badge {
      align-self:flex-start; padding: 6px 14px; border-radius:100px;
      background: rgba(196,154,45,0.2); border:1px solid rgba(196,154,45,0.5);
      color: var(--gold-light); font-size:11px; letter-spacing:2px;
      text-transform:uppercase; font-weight:500;
      position: absolute; top: 32px; left: 32px;
    }
    .fl-visual .name {
      font-family: var(--ff-display); font-size: 42px; font-weight:700; line-height:1.1;
    }
    .fl-visual .loc { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; letter-spacing:1px; }
    .fl-visual .sep { width:48px; height:3px; background: var(--gold); margin: 18px 0; }

    .fl-stats { display:flex; gap:32px; margin: 28px 0 32px; flex-wrap:wrap; }
    .fl-stats div { }
    .fl-stats .n { font-family: var(--ff-display); font-size: 28px; color: var(--navy); font-weight:600; }
    .fl-stats .l { font-size: 11px; letter-spacing: 2px; text-transform:uppercase; color: var(--grey); margin-top:4px; }
    .fl-features { list-style:none; margin: 18px 0 32px; }
    .fl-features li {
      padding-left: 28px; position:relative; font-size: 14px; line-height:1.85; color: var(--text-body);
    }
    .fl-features li::before {
      content:''; position:absolute; left:0; top:10px;
      width:14px; height:2px; background: var(--gold);
    }

    @media (max-width: 900px) {
      .feature-grid, .villa-grid, .price-grid, .roi-strip, .check-grid, .fl-inner {
        grid-template-columns: 1fr;
      }
      .villa-grid { grid-template-columns: repeat(2, 1fr); }
      .roi-strip { grid-template-columns: repeat(2, 1fr); }
      .listing-meta { gap: 24px; }
      .fl-visual { aspect-ratio: 16/10; }
      .fl-visual .name { font-size: 32px; }
    }
    @media (max-width: 560px) {
      .villa-grid { grid-template-columns: 1fr; }
    }
  
/* === REDESIGN: image-rich listing === */
.listing-hero{
  min-height: 92vh;
  background-image: linear-gradient(135deg, rgba(17,30,58,0.78), rgba(27,46,85,0.55) 60%, rgba(196,154,45,0.35)), url('../images/img-04.jpg');
  background-size: cover; background-position: center;
  display:flex; align-items:flex-end; padding: 140px 0 80px;
}
.listing-hero::before{ display:none; }
.listing-hero .tag{
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border:1px solid rgba(230,192,90,0.45); color: var(--gold-light);
}
.listing-hero h1{ font-size: clamp(44px, 6.4vw, 86px); line-height:1.02; }
.listing-hero p{ max-width: 640px; }
.listing-meta{
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px);
  border:1px solid rgba(255,255,255,0.12); border-radius: 6px;
  padding: 28px; margin-top: 44px; justify-content:flex-start;
}

/* Split image+text block */
.split{
  display:grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items:center;
}
.split.reverse{ grid-template-columns: 1fr 1.05fr; }
.split-img{
  position:relative; height: 540px; border-radius: 4px; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img{ width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .8s ease; }
.split-img:hover img{ transform: scale(1.04); }
.split-img .corner{
  position:absolute; bottom:18px; left:18px;
  background: rgba(17,30,58,0.85); color: var(--gold-light);
  padding: 10px 16px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight:600;
}
@media (max-width: 900px){
  .split, .split.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .split-img{ height: 360px; }
}

/* Villa cards with image */
.villa-grid{ grid-template-columns: repeat(4, 1fr); gap: 24px; }
.villa-card{
  padding: 0; background: var(--white); border:1px solid var(--border);
  overflow:hidden; transition: transform .4s ease, box-shadow .4s ease;
}
.villa-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.villa-img{
  height: 200px; overflow:hidden; position:relative;
  background: var(--grey-light);
}
.villa-img img{ width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .7s ease; }
.villa-card:hover .villa-img img{ transform: scale(1.08); }
.villa-img::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(17,30,58,0.55), transparent 55%);
}
.villa-body{ padding: 22px 22px 24px; }
.villa-card .name{ margin: 0 0 6px; }
.villa-card .tsm{ margin-bottom: 16px; }
@media (max-width: 1100px){ .villa-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .villa-grid{ grid-template-columns: 1fr; } }

/* Full-bleed image band */
.image-band{
  height: 520px;
  background-size: cover; background-position: center;
  position: relative;
}
.image-band::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(17,30,58,0.25), rgba(17,30,58,0.78));
}
.image-band .container{
  position:relative; z-index:2; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end; padding-bottom:60px;
}
.image-band h2{ color: var(--white); }
.image-band p{ color: rgba(255,255,255,0.85); max-width: 620px; }
@media (max-width: 700px){ .image-band{ height: 420px; } }

/* Homepage featured-listing image swap */
.fl-visual{
  background-image: linear-gradient(135deg, rgba(17,30,58,0.55), rgba(17,30,58,0.15)), url('../images/img-05.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}
.fl-visual::before{ display:none !important; }
.fl-visual-inner{
  background: linear-gradient(
    to bottom, 
    transparent 0%, 
    transparent 86%, 
    rgba(17, 30, 58, 0.02) 83%,    
    rgba(17, 30, 58, 0.65) 90%,
    rgba(17, 30, 58, 0.68) 91%,
    rgba(17, 30, 58, 0.72) 92%, 
    rgba(17, 30, 58, 0.74) 93%,
    rgba(17, 30, 58, 0.76) 94%,
    rgba(17, 30, 58, 0.78) 95%,
    rgba(17, 30, 58, 0.80) 96%,
    rgba(17, 30, 58, 0.88) 100%
    );
  padding: 22px 28px; border-radius: 4px; border:1px solid rgba(230,192,90,0.4);
}

/* Gallery strip */
.gallery-strip{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px;
}
.gallery-strip .g{
  height: 220px; overflow:hidden; border-radius:4px;
}
.gallery-strip .g img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s ease; filter: saturate(.95);
}
.gallery-strip .g:hover img{ transform: scale(1.07); filter: saturate(1.05); }
@media (max-width: 900px){ .gallery-strip{ grid-template-columns: repeat(2, 1fr); } }

