/*
Theme Name: JPI Realty
Theme URI: https://jpirealty.ae
Author: JPI Group
Author URI: https://jpigroup.ae
Description: Custom luxury real estate theme for JPI Realty Dubai. Built from scratch — no page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: jpi-realty
*/

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #A8833F;
  --deep:       #0B0B0B;
  --charcoal:   #161616;
  --mid-grey:   #6B6B6B;
  --light-grey: #F5F4F1;
  --border:     #E8E6E0;
  --white:      #FFFFFF;
  --nav-h:      80px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--deep);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.site-nav {
  /*position: fixed;*/ top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  /*background: rgba(11,11,11,0.40);*/
  background: #000;	
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(11,11,11,0.97);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
/* Non-hero pages: always solid */
.site-nav.solid {
  background: rgba(11,11,11,0.97);
  position: relative;
}
.nav-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 32px; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; /*filter: brightness(0) invert(1);*/ }
.nav-logo-fallback {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}
.nav-logo-fallback span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li:last-child > a {text-transform:uppercase;}
.nav-links > li > a {font-size: 13px; font-weight: 400; letter-spacing: 1.8px; text-transform: none;color: rgba(255,255,255,0.85); padding: 8px 13px; display: block;transition: color 0.2s; white-space: nowrap;}
.nav-links > li > a:hover { color: var(--gold); }
.nav-links .has-drop { position: relative; }
.nav-links .has-drop > a::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg); margin-left: 7px; vertical-align: middle; position: relative; top: -2px;
}
.drop-panel {
  opacity: 0; pointer-events: none;
  position: absolute; top: calc(80% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--charcoal); border: 1px solid rgba(201,169,110,0.2); border-top: 2px solid var(--gold);
  min-width: 210px; padding: 8px 0; box-shadow: 0 24px 56px rgba(0,0,0,0.6);
  transition: opacity 0.22s, transform 0.22s;
}
.has-drop:hover .drop-panel { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.drop-panel a {
  display: block; padding: 11px 22px; font-size: 11.5px; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.72); transition: color 0.18s, background 0.18s;
}
.drop-panel a:hover { color: var(--gold); background: rgba(201,169,110,0.07); }
.nav-cta {
  font-size: 10.5px !important; font-weight: 500 !important; letter-spacing: 2.2px !important;
  color: var(--gold) !important; border: 1px solid var(--gold);
  padding: 9px 20px !important; transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--deep) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.25s, opacity 0.25s; }

.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 999; overflow-y: auto; padding: 0 0 48px;
}
.mobile-nav.open { display: block; }
.mob-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mob-item-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; cursor: pointer;
}
.mob-item-header a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.80); flex: 1;
}
.mob-item-header a:hover, .mob-item-header:hover a { color: var(--gold); }
.mob-chevron { font-size: 11px; color: rgba(255,255,255,0.4); transition: transform 0.25s; }
.mob-item.open .mob-chevron { transform: rotate(180deg); color: var(--gold); }
.mob-sub { display: none; background: rgba(0,0,0,0.25); padding: 4px 0 8px; }
.mob-item.open .mob-sub { display: block; }
.mob-sub a {
  display: block; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.52); padding: 10px 32px 10px 48px; transition: color 0.2s;
}
.mob-sub a:hover { color: var(--gold); }
.mob-cta-wrap { padding: 28px 32px; }
.mob-cta {
  display: inline-block; color: var(--gold); border: 1px solid var(--gold);
  padding: 13px 30px; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  transition: background 0.2s;
}
.mob-cta:hover { background: var(--gold); color: var(--deep); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--deep);
  padding: 100px 0 60px;
  position: relative;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
}
.page-hero-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  color: var(--white); line-height: 1.08;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* ═══════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8,8,8,0.93) 0%, rgba(8,8,8,0.42) 48%, rgba(8,8,8,0.12) 100%),
    linear-gradient(105deg, rgba(8,8,8,0.35) 0%, transparent 55%);
}
.hero-gold-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1360px; margin: 0 auto; padding: 0 32px 92px;
}
.hero-eyebrow {
  font-size: 14px; font-weight: 500; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 100px); font-weight: 300; line-height: 1.04;
  color: var(--white); margin-bottom: 28px; max-width: 820px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: #fff; max-width: 520px; margin-bottom: 48px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 36px; right: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue span {
  font-size: 8.5px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); writing-mode: vertical-rl;
}
.scroll-cue .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.55), transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scaleY(1); } 50% { opacity:0.3; transform:scaleY(0.5); } }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-gold {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--deep); border: none; padding: 16px 38px;
  transition: background 0.22s, transform 0.18s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--deep); }
.btn-outline-light {
  font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.42);
  padding: 15px 34px; transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--deep); border: 1px solid var(--deep);
  padding: 14px 34px; transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-outline-dark:hover { background: var(--deep); color: var(--white); }

/* ═══════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════ */
.search-wrap { background: var(--white); box-shadow: 0 8px 48px rgba(0,0,0,0.11); position: relative; z-index: 10; }
.s-tabs { display: flex; border-bottom: 1px solid var(--border); }
.s-tab {
  font-size: 11.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 34px; cursor: pointer; border: none; background: none; color: var(--mid-grey);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.s-tab.active { color: var(--deep); border-bottom-color: var(--gold); }
.s-fields { display: flex; align-items: stretch; flex-wrap: wrap; }
.s-field { flex: 1; min-width: 160px; padding: 20px 24px; border-right: 1px solid var(--border); }
.s-field:last-of-type { border-right: none; }
.s-field label { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.s-field select, .s-field input {
  width: 100%; border: none; outline: none; font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--deep); background: transparent; appearance: none;
}
.s-submit {
  background: var(--gold); border: none; padding: 0 40px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--deep);
  transition: background 0.2s; display: flex; align-items: center; gap: 10px; white-space: nowrap; min-height: 72px;
}
.s-submit:hover { background: var(--gold-light); }
.s-submit i { font-size: 16px; }

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.sec { padding: 110px 0; }
.container-xl { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.sec-label { font-size: 14px; /*font-weight: 600;*/ letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.sec-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  line-height: 1.1; color: var(--deep); margin-bottom: 18px;
}
.sec-title em { font-style: normal; color: var(--gold); }
.sec-title.light { color: var(--white); }
.sec-title.light em { color: var(--gold-light); }
.sec-body { font-size: 16px; line-height: 1.9; color: var(--mid-grey); max-width: 580px; }
.sec-body.light { color: rgba(255,255,255,0.58); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 52px; flex-wrap: wrap; }
.sec-head .sec-body { margin-bottom: 0; }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 22px 0 30px; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 40px; border-top: 1px solid var(--border); margin-top: 42px; display:none !important; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--deep); line-height: 1; }
.stat-num sup { font-size: 18px; color: var(--gold); vertical-align: super; }
.stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-grey); margin-top: 7px; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 560px; object-fit: cover; }
.img-badge { display:none; position: absolute; bottom: -28px; left: -28px; background: var(--gold); padding: 28px 34px; }
.img-badge .b-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--deep); line-height: 1; }
.img-badge .b-lbl { font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--deep); margin-top: 4px; }

/* ═══════════════════════════════════════════
   MISSION & VISION
═══════════════════════════════════════════ */
.mv-section { background: var(--deep); padding: 96px 0; position: relative; overflow: hidden; }
.mv-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mv-card { padding: 56px 52px; border: 1px solid rgba(201,169,110,0.12); position: relative; transition: background 0.3s; }
.mv-card:hover { background: rgba(201,169,110,0.04); }
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: height 0.4s ease;
}
.mv-card:hover::before { height: 100%; }
.mv-icon {
  width: 52px; height: 52px; border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--gold); font-size: 22px;
}
.mv-tag { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.mv-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.mv-body { font-size: 15.5px; line-height: 1.9; color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════
   PROPERTY CARDS
═══════════════════════════════════════════ */
.featured-grid { display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: auto auto; gap: 24px; }
.feat-main { grid-row: 1 / 3; }
.feat-main .prop-img img { height: 460px; }
.feat-sub .prop-img img { height: 200px; }
.feat-sub .prop-body { padding: 18px 20px; }
.feat-sub .prop-name { font-size: 18px; margin-bottom: 10px; }
.feat-sub .prop-meta { margin-bottom: 12px; }

.prop-card {
  background: var(--white); border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.28s, transform 0.28s; position: relative;
}
.prop-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); transform: translateY(-3px); }
.prop-img { position: relative; overflow: hidden; }
.prop-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-img img { transform: scale(1.04); }
.prop-badge {
  position: absolute; top: 16px; left: 16px; background: var(--gold);
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); padding: 5px 13px;
}
.prop-card-link { position: absolute; inset: 0; z-index: 1; }
.prop-heart {
  position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; z-index: 2;
  background: rgba(255,255,255,0.90); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s;
}
.prop-heart:hover { background: var(--white); }
.prop-heart i { font-size: 16px; color: var(--mid-grey); }
.prop-body { padding: 24px 24px 22px; }
.prop-loc { font-size: 11px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-card:hover .prop-name { color: var(--gold-dark); }
.prop-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.prop-meta span { font-size: 13px; color: var(--mid-grey); display: flex; align-items: center; gap: 6px; }
.prop-meta i { color: var(--gold); font-size: 13px; }
.prop-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 18px; }
.prop-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--deep); }
.prop-price small { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-grey); display: block; margin-bottom: 3px; }
.prop-link { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.prop-link:hover { gap: 10px; }
.prop-link i { font-size: 14px; }

/* Property archive grid */
.prop-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Property single */
.property-single { padding: 80px 0; }
.prop-single-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }

/*.prop-gallery { position: relative; }
.prop-gallery-main img { width: 100%; height: 480px; object-fit: cover; }
.prop-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.prop-gallery-thumbs img { width: 100%; height: 90px; object-fit: cover; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.prop-gallery-thumbs img:hover { opacity: 1; }*/

.prop-gallery { position: relative; }
.prop-gallery-main { position: relative; overflow: hidden; }
.prop-gallery-main img { width: 100%; height: 480px; object-fit: cover; display: block; }

.prop-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.85); color: var(--deep); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; z-index: 2;
}
.prop-gal-arrow:hover { background: var(--white); }
.prop-gal-prev { left: 16px; }
.prop-gal-next { right: 16px; }

.prop-gal-counter {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,0.55); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 20px;
}

.prop-gal-dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 8px;
}
.prop-gal-dot {
  width: 8px; height: 8px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.prop-gal-dot:hover { background: rgba(255,255,255,0.85); }
.prop-gal-dot.active { background: var(--gold); transform: scale(1.2); }

.prop-single-info { position: sticky; top: 100px; }
.prop-single-badge { display: inline-block; background: var(--gold); font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--deep); padding: 5px 13px; margin-bottom: 16px; }
.prop-single-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--deep); line-height: 1.15; margin-bottom: 8px; }
.prop-single-loc { font-size: 11.5px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.prop-single-price { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--deep); margin-bottom: 28px; }
.prop-single-price small { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-grey); display: block; margin-bottom: 4px; }
.prop-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; border: 1px solid var(--border); }
.prop-spec { padding: 18px 16px; border-right: 1px solid var(--border); text-align: center; }
.prop-spec:last-child { border-right: none; }
.prop-spec i { font-size: 20px; color: var(--gold); display: block; margin-bottom: 6px; }
.prop-spec-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--deep); display: block; }
.prop-spec-lbl { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-grey); margin-top: 3px; display: block; }
.prop-desc-title { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--deep); margin-bottom: 12px; }
.prop-desc-body { font-size: 15px; line-height: 1.85; color: var(--mid-grey); margin-bottom: 28px; }
.prop-enquire-form { background: var(--light-grey); border: 1px solid var(--border); padding: 28px; margin-top: 32px; }
.prop-enquire-form h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--deep); margin-bottom: 20px; }
.prop-enquire-form input, .prop-enquire-form textarea {
  width: 100%; border: 1px solid var(--border); background: var(--white);
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 300;
  padding: 12px 14px; outline: none; margin-bottom: 12px; transition: border-color 0.2s;
}
.prop-enquire-form input:focus, .prop-enquire-form textarea:focus { border-color: var(--gold); }
.prop-enquire-form textarea { height: 100px; resize: vertical; }

/* ═══════════════════════════════════════════
   OUR SERVICES
═══════════════════════════════════════════ */
.services-section { background: var(--light-grey); padding: 110px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); padding: 40px 36px 36px;
  position: relative; overflow: hidden; transition: box-shadow 0.28s, transform 0.28s;
}
.svc-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.10); transform: translateY(-4px); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300;
  color: rgba(201,169,110,0.15); line-height: 1; position: absolute; top: 20px; right: 28px; user-select: none;
}
.svc-icon { width: 48px; height: 48px; background: rgba(201,169,110,0.10); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; margin-bottom: 24px; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--deep); line-height: 1.2; margin-bottom: 14px; }
.svc-desc { font-size: 14.5px; line-height: 1.85; color: var(--mid-grey); margin-bottom: 24px; }
.svc-link { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 7px; transition: gap 0.2s; }
.svc-link:hover { gap: 11px; }
.svc-link i { font-size: 13px; }
.svc-card.wide { grid-column: span 2; }
.svc-card.wide .svc-desc { max-width: 640px; }

/* ═══════════════════════════════════════════
   AS SEEN IN
═══════════════════════════════════════════ */
.rec-section { background: var(--deep); padding: 100px 0; position: relative; overflow: hidden; display:none; }
.rec-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.rec-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.rec-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 200px; font-weight: 300;
  color: rgba(201,169,110,0.04); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: 10px;
}
.rec-top { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.rec-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.rec-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.rec-sub { font-size: 15px; color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.rec-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; position: relative; z-index: 1; }
.rec-logo-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 20px; border: 1px solid rgba(201,169,110,0.10); text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s; text-align: center; position: relative;
}
.rec-logo-item:hover { background: rgba(201,169,110,0.07); border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
.rec-logo-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0); width: 40px; height: 2px;
  background: var(--gold); transition: transform 0.25s;
}
.rec-logo-item:hover::after { transform: translateX(-50%) scaleX(1); }
.rec-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: rgba(255,255,255,0.70); letter-spacing: 1px; display: block; margin-bottom: 10px; transition: color 0.25s; }
.rec-logo-item:hover .rec-name { color: var(--gold); }
.rec-desc { font-size: 9.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); display: block; transition: color 0.25s; }
.rec-logo-item:hover .rec-desc { color: rgba(201,169,110,0.65); }

/* ═══════════════════════════════════════════
   PRIVATE LISTINGS
═══════════════════════════════════════════ */
.private-section { background: var(--charcoal); padding: 110px 0; }
.private-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.priv-card { position: relative; overflow: hidden; height: 420px; cursor: pointer; }
.priv-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.72); }
.priv-card:hover img { transform: scale(1.06); filter: brightness(0.58); }
.priv-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 30px;
}
.priv-type { font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.priv-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.priv-detail { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.priv-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold-light); }

/* ═══════════════════════════════════════════
   INTERNATIONAL
═══════════════════════════════════════════ */
.intl-section { background: var(--deep); padding: 110px 0; }
.intl-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 52px; flex-wrap: wrap; }
.intl-tab {
  font-size: 11.5px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.40); padding: 14px 28px; cursor: pointer; border: none;
  background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.intl-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.intl-panel { display: none; }
.intl-panel.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.intl-img { width: 100%; height: 460px; object-fit: cover; }
.intl-body .sec-body { color: rgba(255,255,255,0.55); margin-bottom: 36px; }

/* ═══════════════════════════════════════════
   NEW DEVELOPMENTS
═══════════════════════════════════════════ */
.dev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dev-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.28s, transform 0.28s; }
.dev-card:hover { box-shadow: 0 14px 42px rgba(0,0,0,0.1); transform: translateY(-3px); }
.dev-img { position: relative; overflow: hidden; }
.dev-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s; }
.dev-card:hover .dev-img img { transform: scale(1.04); }
.dev-badge { position: absolute; bottom: 0; left: 0; background: var(--gold); font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--deep); padding: 6px 14px; }
.dev-body { padding: 24px; }
.dev-loc { font-size: 11px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; display: flex; align-items: center; gap: 4px; }
.dev-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--deep); margin-bottom: 12px; line-height: 1.2; }
.dev-price { font-size: 13px; color: var(--mid-grey); }
.dev-price strong { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--deep); display: block; margin-top: 4px; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-section { background: var(--light-grey); padding: 110px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.28s, transform 0.28s; }
.blog-card:hover { box-shadow: 0 14px 42px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-img { position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-cat {
  position: absolute; top: 16px; left: 16px; background: var(--gold);
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--deep); padding: 5px 13px;
}
.blog-body { padding: 26px 24px 22px; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.blog-meta span { font-size: 11.5px; color: var(--mid-grey); display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--gold); font-size: 12px; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--deep); line-height: 1.3; margin-bottom: 14px; }
.blog-excerpt { font-size: 14.5px; color: var(--mid-grey); line-height: 1.8; margin-bottom: 22px; }
.blog-link { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-link:hover { gap: 10px; }
.blog-link i { font-size: 13px; }

/* Blog Single */
.blog-single { padding: 80px 0; }
.blog-single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.blog-single-content .post-thumbnail img { width: 100%; height: 460px; object-fit: cover; margin-bottom: 40px; }
.blog-single-content .entry-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 300; line-height: 1.1; color: var(--deep); margin-bottom: 20px; }
.blog-single-content .entry-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.blog-single-content .entry-meta span { font-size: 11.5px; color: var(--mid-grey); display: flex; align-items: center; gap: 6px; }
.blog-single-content .entry-meta span i { color: var(--gold); }
.blog-single-content .entry-content { font-size: 16px; line-height: 1.9; color: var(--mid-grey); }
.blog-single-content .entry-content h2, .blog-single-content .entry-content h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--deep); margin: 36px 0 16px; }
.blog-single-content .entry-content h2 { font-size: 36px; }
.blog-single-content .entry-content h3 { font-size: 28px; }
.blog-single-content .entry-content p { margin-bottom: 20px; }
.blog-single-content .entry-content blockquote {
  border-left: 3px solid var(--gold); padding: 20px 28px; margin: 32px 0;
  background: var(--light-grey); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--deep);
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { margin-bottom: 40px; border: 1px solid var(--border); padding: 28px; }
.sidebar-widget h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(201,169,110,0.22);
}
.sidebar-recent li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-recent li:last-child { border-bottom: none; }
.sidebar-recent a { font-size: 14px; color: var(--deep); line-height: 1.4; transition: color 0.2s; }
.sidebar-recent a:hover { color: var(--gold); }
.sidebar-recent .s-date { font-size: 10.5px; color: var(--mid-grey); margin-top: 4px; display: block; }
.sidebar-cats a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--deep); transition: color 0.2s; }
.sidebar-cats a:hover { color: var(--gold); }
.sidebar-cats a span { font-size: 11px; color: var(--mid-grey); }

/* Pagination */
.pagination-wrap { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.pagination-wrap a, .pagination-wrap span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--deep);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pagination-wrap a:hover, .pagination-wrap .current {
  border-color: var(--gold); background: var(--gold); color: var(--deep);
}

/* ═══════════════════════════════════════════
   FAQS
═══════════════════════════════════════════ */
.faq-section { background: var(--white); padding: 110px 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-q span { font-size: 16px; font-weight: 400; color: var(--deep); line-height: 1.4; font-family: 'Cormorant Garamond', serif; }
.faq-icon {
  width: 30px; height: 30px; border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gold); transition: background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--mid-grey); line-height: 1.85; }
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════
   LIST WITH US FORM
═══════════════════════════════════════════ */
.list-section { background: var(--charcoal); padding: 110px 0; position: relative; overflow: hidden; }
.list-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 260px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.list-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.list-intro .sec-body { color: rgba(255,255,255,0.55); margin-top: 16px; }
.list-highlights { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.list-highlights li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.60); line-height: 1.6; }
.list-highlights li i { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.list-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.18); padding: 44px 40px; }
.list-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.list-form p { font-size: 13px; color: rgba(255,255,255,0.40); margin-bottom: 32px; letter-spacing: 0.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  padding: 13px 16px; outline: none; appearance: none; transition: border-color 0.2s, background 0.2s;
}
.nav-links .has-drop > a::after {display:none;}
.form-group input::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus, .form-group select:focus { border-color: rgba(201,169,110,0.55); background: rgba(201,169,110,0.05); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group select optgroup {background: var(--deep); color: var(--gold); font-weight: 700; font-style: normal;}
.form-submit {
  width: 100%; margin-top: 10px; background: var(--gold); border: none;
  color: var(--deep); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; padding: 17px 32px;
  transition: background 0.22s, transform 0.18s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-submit i { font-size: 15px; }
.form-row.single label {font-size: 12px !important;}
/* WordPress form (comment / CF7 reset) */
.wpcf7-form input, .wpcf7-form select, .wpcf7-form textarea { width: 100%; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--deep); padding: 80px 0 0; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { margin-bottom: 24px; }
.footer-logo-wrap img { height: 60px; width: auto; /*filter: brightness(0) invert(1);*/ }
.footer-logo-fallback { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--gold); letter-spacing: 2px; }
.footer-about { font-size: 14px; line-height: 1.85; margin-bottom: 28px; margin-top: 4px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.50); font-size: 15px; transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 16px; border-bottom: 1px solid rgba(201,169,110,0.22); margin-bottom: 24px;
}
.footer-col ul { list-style: none; padding-left: 0; }
.footer-col ul li { margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-col ul li::before {
  content: ''; display: block; width: 7px; height: 7px; min-width: 7px;
  background: transparent; border: 1.5px solid var(--gold); transform: rotate(45deg); margin-top: 5px; opacity: 0.75;
}
.footer-col ul li:hover::before { background: var(--gold); opacity: 1; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.50); transition: color 0.2s; line-height: 1.4; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bar { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bar p { font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.25); margin: 0; }
.footer-bar p span { color: var(--gold); }
.footer-bar a { color: rgba(255,255,255,0.25); margin: 0 12px; transition: color 0.2s; font-size: 12px; }
.footer-bar a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   NOTICES
═══════════════════════════════════════════ */
.notice-success {
  background: rgba(201,169,110,0.12); border: 1px solid var(--gold);
  color:#fff; padding: 14px 20px; font-size: 14px; margin-bottom: 20px;
}
.footer-col:last-child li:last-child {display: none;}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-main { grid-row: auto; }
  .feat-main .prop-img img, .feat-sub .prop-img img { height: 260px; }
  .feat-sub .prop-body { padding: 20px; }
  .dev-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intl-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .intl-img { height: 300px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .rec-logos { grid-template-columns: repeat(3, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card.wide { grid-column: span 2; }
  .list-grid { grid-template-columns: 1fr; gap: 48px; }
  .prop-single-grid { grid-template-columns: 1fr; }
  .prop-single-info { position: static; }
  .blog-single-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .prop-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap { padding-bottom: 30px; }
  .img-badge { left: 12px; bottom: 12px; }
  .private-grid, .blog-grid, .dev-grid, .services-grid { grid-template-columns: 1fr; }
  .svc-card.wide { grid-column: span 1; }
  .list-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .container-xl { padding: 0 20px; }
  .sec { padding: 72px 0; }
  .about-stats {  grid-template-columns: repeat(2, 1fr); }
  .scroll-cue { right: 16px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .hero-sub { font-size: 15px; }
  .prop-archive-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .rec-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   COMMENTS
═══════════════════════════════════════════ */
.jpi-comments { margin-top: 0; }

.jpi-comments-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 28px;
}

.jpi-comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.jpi-comment-list .children { list-style: none; margin: 0; padding: 0 0 0 40px; }

.jpi-comment-list li.comment {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.comment-body { display: flex; gap: 16px; }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.comment-author .avatar { border-radius: 50%; flex-shrink: 0; }
.comment-author .fn { font-weight: 600; color: var(--deep); font-style: normal; font-size: 15px; }
.comment-metadata { font-size: 12px; color: var(--mid-grey); margin-bottom: 10px; }
.comment-metadata a { color: var(--mid-grey); }
.comment-content p { font-size: 15px; line-height: 1.8; color: var(--mid-grey); margin-bottom: 10px; }
.reply a {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid var(--border); padding: 6px 14px; display: inline-block;
  transition: border-color .2s, color .2s;
}
.reply a:hover { border-color: var(--gold); color: var(--gold); }

.jpi-comments-closed {
  font-size: 14px; color: var(--mid-grey); font-style: italic; margin-bottom: 30px;
}

#respond { margin-top: 20px; }
#respond .comment-reply-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--deep); margin-bottom: 20px; display: block;
}
.jpi-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.jpi-comment-field { margin-bottom: 16px; }
.jpi-comment-field label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.jpi-comment-field input,
.jpi-comment-field textarea {
  width: 100%; border: 1px solid var(--border); padding: 11px 13px; font-size: 14px;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s; resize: vertical;
}
.jpi-comment-field input:focus,
.jpi-comment-field textarea:focus { border-color: var(--gold); }
#respond .form-submit { margin-top: 8px; }
#respond .form-submit input[type="submit"] {
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}

@media (max-width: 576px) {
  .jpi-form-row { grid-template-columns: 1fr; gap: 0; }
  .jpi-comment-list .children { padding-left: 20px; }
}

body.page-template-default h2.wp-block-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--deep);
    margin-bottom: 18px;	
}

div#respond {
    display: none;
}
/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════ */
.jpi-wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: jpiWaPulse 2.4s infinite;
}
.jpi-wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.32);
}
.jpi-wa-fab i {
  font-size: 30px;
  color: var(--white);
}

@keyframes jpiWaPulse {
  0%   { box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 576px) {
  .jpi-wa-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .jpi-wa-fab i { font-size: 26px; }
}






/* ═══════════════════════════════════════════
   AMENITIES GRID (responsive)
═══════════════════════════════════════════ */
.prop-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.prop-amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--deep);
  line-height: 1.3;
}
.prop-amenity-icon {
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .prop-amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .prop-amenity-item { padding: 10px 12px; font-size: 12.5px; }
}

@media (max-width: 480px) {
  .prop-amenities-grid { grid-template-columns: 1fr; gap: 8px; }
  .prop-amenity-item { padding: 12px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   ENQUIRY FORM ROWS (responsive)
═══════════════════════════════════════════ */
.prop-enquire-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .prop-enquire-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.drop-panel {
    display: none;
}

/* ═══════════════════════════════════════════
   DOWNLOAD AS PDF — button + lead-gate modal
═══════════════════════════════════════════ */
.prop-pdf-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.prop-pdf-btn:hover {
  background: var(--gold);
  color: var(--deep);
}

.jpi-pdf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jpi-pdf-modal-overlay.active { display: flex; }

.jpi-pdf-modal {
  background: var(--white);
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.jpi-pdf-modal h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 8px;
}
.jpi-pdf-modal p {
  font-size: 13px;
  color: var(--mid-grey);
  margin-bottom: 22px;
  line-height: 1.6;
}
.jpi-pdf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--light-grey);
  color: var(--deep);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.jpi-pdf-modal-close:hover { background: var(--border); }

@media (max-width: 480px) {
  .jpi-pdf-modal { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════
   PDF EXPORT MODE
   Applied temporarily to #jpiPrintArea only while
   generating the "Download as PDF" file — forces a
   clean single-column layout and prevents images/
   blocks from being sliced across page breaks.
═══════════════════════════════════════════ */
#jpiPrintArea.pdf-mode .prop-single-grid {
  display: block !important;
}
#jpiPrintArea.pdf-mode .prop-single-info {
  position: static !important;
  margin-top: 32px !important;
}
#jpiPrintArea.pdf-mode .prop-gallery-main,
#jpiPrintArea.pdf-mode .prop-specs,
#jpiPrintArea.pdf-mode .prop-single-price,
#jpiPrintArea.pdf-mode .prop-agent-box,
#jpiPrintArea.pdf-mode .prop-desc-body p,
#jpiPrintArea.pdf-mode .prop-amenity-item,
#jpiPrintArea.pdf-mode table tr {
  page-break-inside: avoid;
  break-inside: avoid;
}


/* ═══════════════════════════════════════════
   PRINT / "DOWNLOAD AS PDF"
   Uses the browser's native print-to-PDF instead of
   a JS screenshot library — far more reliable. These
   rules hide site chrome and non-essential UI, and
   keep the property content readable on paper.
═══════════════════════════════════════════ */
@media print {
  /* Hide site chrome and anything not relevant on paper */
  .site-nav,
  .mobile-nav,
  .site-footer,
  .jpi-wa-fab,
  .prop-breadcrumb,
  .prop-pdf-btn,
  .prop-enquire-form,
  .prop-similar-section,
  .prop-gal-arrow,
  .prop-gal-dots,
  .prop-gal-counter,
  .prop-heart,
  .jpi-pdf-modal-overlay {
    display: none !important;
  }

  /* Stack the two-column layout into one clean column for paper */
  .prop-single-grid {
    display: block !important;
  }
  .prop-single-info {
    position: static !important;
    margin-top: 24px !important;
  }

  /* Prevent images/tables/cards from being sliced across a page break */
  .prop-gallery-main,
  .prop-specs,
  .prop-single-price,
  .prop-agent-box,
  .prop-desc-body p,
  .prop-amenity-item,
  table tr {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  body {
    background: #FFFFFF !important;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
  }
}
.prop-single-price small {
    display: none;
}