/*
Theme Name: Prime Realty — Astra Child
Theme URI: https://prime-realty.am
Description: Prime Realty-ի պաշտոնական child theme՝ հիմնված Astra-ի վրա։ "Highland Heritage" բրենդային ոճ՝ պրեմիում անշարժ գույքի համար (Եղվարդ, Կոտայք)։ Համատեղելի է Elementor Pro-ի հետ։
Author: Prime Realty
Author URI: https://prime-realty.am
Template: astra
Version: 1.0.0
Text Domain: prime-realty-astra-child
*/

/* =========================================================
   Prime Realty — Brand Design Tokens
   OFFICIAL PALETTE: Navy Blue + Gold + White ONLY.
   (No green anywhere — luxury real estate, Sotheby's/Christie's tier.)
   Fonts: Cormorant Garamond (display) + Manrope (body)
   ========================================================= */

:root {
  /* Core brand */
  --pr-navy: #0e1b2e;          /* primary brand navy */
  --pr-navy-2: #16305c;        /* lighter navy (gradients / hovers) */
  --pr-navy-dark: #0a1422;     /* deep navy */
  --pr-gold: #cda349;          /* brand gold */
  --pr-gold-dark: #b88a2f;     /* gold hover/press */
  --pr-gold-light: #e3c987;    /* soft gold */

  /* Neutrals (white system) */
  --pr-ivory: #f7f6f3;         /* off-white background */
  --pr-travertine: #ece9e3;    /* warm stone */
  --pr-charcoal: #1c2433;      /* navy-tinted text */
  --pr-muted: #6b7280;         /* cool grey muted */
  --pr-border: #e2e0d9;

  /* Brand aliases — anything that used to be emerald now maps to navy. */
  --pr-emerald: var(--pr-navy);
  --pr-emerald-dark: var(--pr-navy-dark);

  --pr-font-serif: "Cormorant Garamond", Georgia, serif;
  --pr-font-sans: "Manrope", system-ui, -apple-system, sans-serif;
}

/* ---------- Google Fonts (loaded via functions.php enqueue too) ---------- */

/* ---------- Base typography ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;   /* kill horizontal scroll on mobile (iOS Safari) */
}
body,
.ast-container {
  font-family: var(--pr-font-sans);
  color: var(--pr-charcoal);
  background-color: var(--pr-ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.entry-title,
.elementor-heading-title {
  font-family: var(--pr-font-serif) !important;
  font-weight: 600;
  color: var(--pr-charcoal);
  letter-spacing: 0.2px;
  line-height: 1.28 !important;   /* room for Armenian descenders (ը ց ի պ) */
  padding-bottom: 0.08em;
  overflow: visible !important;
}

/* ---------- Links & accents ---------- */
a {
  color: var(--pr-emerald);
  transition: color .2s ease;
}
a:hover { color: var(--pr-gold); }

/* ---------- Buttons (Astra + Elementor) ---------- */
.ast-button,
.button,
button,
.wp-block-button__link,
.elementor-button {
  background-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
  border-radius: 3px !important;
  font-family: var(--pr-font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  border: none !important;
  box-shadow: 0 12px 26px -14px rgba(205,163,73,.7);
  transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease !important;
}
.ast-button:hover,
.button:hover,
button:hover,
.wp-block-button__link:hover,
.elementor-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Gold variant button */
.pr-btn-gold .elementor-button,
.pr-btn-gold a {
  background-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
}

/* ---------- Header ---------- */
.site-header,
.ast-primary-header-bar {
  background-color: var(--pr-navy) !important;
}
.main-header-menu a,
.ast-builder-menu .menu-item > a {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
}
.main-header-menu a:hover { color: var(--pr-gold) !important; }

/* ---------- Footer ---------- */
.site-footer,
.ast-footer-overlay {
  background-color: var(--pr-navy) !important;
  color: rgba(255,255,255,.7);
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--pr-gold); }

/* ---------- Eyebrow label utility ---------- */
.pr-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--pr-emerald);
  font-family: var(--pr-font-sans);
}

/* ---------- Hairline divider ---------- */
.pr-hairline {
  height: 1px;
  width: 160px;
  background: linear-gradient(90deg, transparent, var(--pr-gold), transparent);
  margin: 1rem 0;
}

/* =========================================================
   Property Listings styles (used by Prime Realty Properties plugin)
   ========================================================= */
.pr-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.pr-property-card {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(14,27,46,.04), 0 4px 12px rgba(14,27,46,.05);
  transition: box-shadow .4s cubic-bezier(0.23,1,0.32,1), transform .4s cubic-bezier(0.23,1,0.32,1), border-color .4s ease;
}
.pr-property-card:hover {
  box-shadow: 0 2px 4px rgba(14,27,46,.05), 0 24px 48px -12px rgba(14,27,46,.22);
  transform: translateY(-6px);
  border-color: rgba(205,163,73,.45);
}
.pr-property-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: block;
}
.pr-property-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.23,1,0.32,1);
}
.pr-property-card:hover .pr-property-thumb img { transform: scale(1.07); }
.pr-property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  background: rgba(14,27,46,.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 13px;
  border: 1px solid rgba(205,163,73,.55);
  border-radius: 2px;
  text-transform: uppercase;
}
.pr-property-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pr-property-title {
  font-family: var(--pr-font-serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--pr-charcoal);
  letter-spacing: .2px;
}
.pr-property-title a {
  color: inherit;
  text-decoration: none !important;   /* remove underline */
  background-image: none !important;
  transition: color .25s ease;
}
.pr-property-title a:hover { color: var(--pr-emerald); }
.pr-property-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  color: var(--pr-muted); font-size: .85rem; margin: 10px 0 16px;
}
.pr-property-price {
  font-family: var(--pr-font-serif);
  font-size: 1.6rem;
  color: var(--pr-emerald);
  font-weight: 600;
  margin-top: auto;
}
.pr-property-location {
  color: var(--pr-muted);
  font-size: .82rem;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pr-property-location::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pr-gold);
  flex: none;
}
.pr-property-meta .pr-spec { position: relative; }
.pr-property-meta .pr-spec + .pr-spec::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%;
  width: 1px; height: 11px;
  background: var(--pr-border);
  transform: translateY(-50%);
}

/* Property search bar (expanded filter set: type/location/status/beds/price/area) */
.pr-search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(14,27,46,.06);
}
.pr-search-form .pr-search-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.pr-search-form .pr-search-field label {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--pr-muted, #6f6a61);
}
.pr-search-form .pr-search-range { display: flex; gap: 8px; }
.pr-search-form .pr-search-range input { flex: 1; min-width: 0; }
.pr-search-form .pr-search-actions {
  grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.pr-search-form select,
.pr-search-form input {
  min-width: 0;
  width: 100%;
  height: 52px;                 /* equal height for all controls */
  line-height: 1.2;
  border: 1px solid var(--pr-border);
  border-radius: 3px;
  padding: 0 40px 0 14px;        /* room for the dropdown arrow */
  font-family: var(--pr-font-sans);
  background: var(--pr-ivory);
  font-size: 15px;
  color: var(--pr-charcoal);
  text-overflow: ellipsis;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230e1b2e' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.pr-search-form button {
  height: 52px;
  padding: 0 34px;
  white-space: nowrap;
  border-radius: 3px !important;
  font-size: 15px;
  background-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 26px -14px rgba(205,163,73,.7);
}
@media (max-width: 600px) {
  .pr-search-form {
    grid-template-columns: 1fr;   /* single column on mobile */
    gap: 12px;
  }
  .pr-search-form .pr-search-actions { flex-direction: column; align-items: stretch; }
  .pr-search-form button { width: 100%; }  /* full-width CTA on mobile */
}

/* ---------- Premium Contact FAB (single expandable button) ---------- */
.pr-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
/* main toggle */
.pr-fab-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background: var(--pr-emerald) !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14,27,46,.30), 0 0 0 0 rgba(205,163,73,.55);
  padding: 0 !important;
  position: relative;
  transition: transform .25s cubic-bezier(0.23,1,0.32,1), background .25s ease, box-shadow .25s ease;
  animation: pr-fab-pulse 2.8s ease-out infinite;
}
.pr-fab-toggle:hover { transform: scale(1.06); filter: brightness(1.05); }
.pr-fab-toggle:active { transform: scale(0.95); }
.pr-fab-toggle svg { width: 28px; height: 28px; fill: #fff; position: absolute; transition: opacity .2s ease, transform .25s ease; }
.pr-fab-ic-close { opacity: 0; transform: rotate(-45deg) scale(.6); }
.pr-fab.is-open .pr-fab-toggle {
  background: var(--pr-navy) !important;
  animation: none;
}
.pr-fab.is-open .pr-fab-ic-open { opacity: 0; transform: rotate(45deg) scale(.6); }
.pr-fab.is-open .pr-fab-ic-close { opacity: 1; transform: rotate(0) scale(1); }

@keyframes pr-fab-pulse {
  0%   { box-shadow: 0 8px 24px rgba(14,27,46,.30), 0 0 0 0 rgba(205,163,73,.45); }
  70%  { box-shadow: 0 8px 24px rgba(14,27,46,.30), 0 0 0 16px rgba(205,163,73,0); }
  100% { box-shadow: 0 8px 24px rgba(14,27,46,.30), 0 0 0 0 rgba(205,163,73,0); }
}
@media (prefers-reduced-motion: reduce) { .pr-fab-toggle { animation: none; } }

/* actions stack */
.pr-fab-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.pr-fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(12px) scale(.92);
  transition: opacity .25s ease, transform .3s cubic-bezier(0.23,1,0.32,1);
}
.pr-fab.is-open .pr-fab-actions { pointer-events: auto; }
.pr-fab.is-open .pr-fab-item { opacity: 1; transform: translateY(0) scale(1); }
/* staggered reveal */
.pr-fab.is-open .pr-fab-item:nth-child(1) { transition-delay: .04s; }
.pr-fab.is-open .pr-fab-item:nth-child(2) { transition-delay: .09s; }
.pr-fab.is-open .pr-fab-item:nth-child(3) { transition-delay: .14s; }
.pr-fab.is-open .pr-fab-item:nth-child(4) { transition-delay: .19s; }

/* Labels removed for a minimal, premium look — icons only. */
.pr-fab-label { display: none !important; }
.pr-fab-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(14,27,46,.28);
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(0.23,1,0.32,1), box-shadow .22s ease, background .22s ease;
}
.pr-fab-item:hover .pr-fab-ico {
  transform: scale(1.1) translateY(-1px);
  box-shadow: 0 12px 28px rgba(14,27,46,.36);
}
.pr-fab-item:active .pr-fab-ico { transform: scale(0.96); }
.pr-fab-ico svg { width: 23px; height: 23px; fill: var(--pr-gold); transition: fill .22s ease; }
.pr-fab-ico { background: var(--pr-navy); border: 1px solid rgba(205,163,73,.35); }
/* hover: gold ring fill for tactile luxury feel */
.pr-fab-item:hover .pr-fab-ico { background: var(--pr-navy-2, #16305c); }
.pr-fab-call .pr-fab-ico svg { fill: var(--pr-navy); }
.pr-fab-call .pr-fab-ico { background: var(--pr-gold); border-color: transparent; }
.pr-fab-call:hover .pr-fab-ico { background: var(--pr-gold-light, #e3c987); }

@media (max-width: 600px) {
  .pr-fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .pr-fab-toggle { width: 56px; height: 56px; }
}

/* ---------- Navy premium header (so transparent gold+white logo reads well) ---------- */
.site-header,
.ast-primary-header-bar,
.main-header-bar {
  background-color: var(--pr-navy, #0e1b2e) !important;
}
.main-header-bar .main-navigation a,
.ast-builder-menu .menu-item a,
.main-header-menu .menu-link {
  color: #f3ede1 !important;
}
.main-header-bar .main-navigation a:hover,
.ast-builder-menu .menu-item a:hover,
.main-header-menu .menu-link:hover {
  color: var(--pr-gold, #cda349) !important;
}
.pr-custom-logo img,
.site-logo-img img { max-height: 54px; width: auto; }

/* =====================================================================
   MOBILE NAVIGATION — Astra off-canvas popup drawer (.ast-mobile-popup-drawer)
   Full-screen navy overlay, high-contrast white links, brand-colored toggle.
   ===================================================================== */

/* 1) Toggle button: navy background + gold icon (not default green) */
.ast-mobile-header-wrap .ast-button-wrap .menu-toggle,
.main-header-menu-toggle,
button.menu-toggle.main-header-menu-toggle {
  background: var(--pr-navy, #0e1b2e) !important;
  border: 1px solid rgba(205,163,73,.55) !important;
  border-radius: 8px !important;
  color: var(--pr-gold, #cda349) !important;
}
.menu-toggle .ast-mobile-svg,
.ast-mobile-menu-buttons-fill svg,
.main-header-menu-toggle svg {
  fill: var(--pr-gold, #cda349) !important;
  color: var(--pr-gold, #cda349) !important;
}

/* 2) Full-screen drawer overlay — cover the ENTIRE viewport in navy */
.ast-mobile-popup-drawer.active .ast-mobile-popup-overlay { background: rgba(8,16,28,.96) !important; }
.ast-mobile-popup-drawer .ast-mobile-popup-inner {
  background-color: var(--pr-navy, #0e1b2e) !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
}
.ast-mobile-popup-drawer .ast-mobile-popup-content {
  background-color: var(--pr-navy, #0e1b2e) !important;
  min-height: 100vh !important;
  padding-top: 8px !important;
}
.ast-mobile-popup-drawer .ast-popup-nav,
.ast-mobile-popup-drawer .ast-popup-nav .menu-item,
.ast-mobile-popup-drawer .ast-popup-nav .sub-menu {
  background-color: var(--pr-navy, #0e1b2e) !important;
}

/* 3) Links: white, fully visible, generous tap targets, separators */
.ast-mobile-popup-drawer .ast-popup-nav .menu-link,
.ast-mobile-popup-drawer .ast-popup-nav .menu-item > a {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  display: block !important;
}
.ast-mobile-popup-drawer .ast-popup-nav .menu-link:hover,
.ast-mobile-popup-drawer .ast-popup-nav .current-menu-item > .menu-link {
  color: var(--pr-gold, #cda349) !important;
}
.ast-mobile-popup-drawer .ast-popup-nav .ast-menu-toggle { color: #ffffff !important; }

/* 4) Close (X) button gold */
.ast-mobile-popup-drawer .menu-toggle-close,
.ast-mobile-popup-drawer .ast-close-svg { color: var(--pr-gold, #cda349) !important; fill: var(--pr-gold, #cda349) !important; }

/* 5) Legacy fallback selectors (older Astra inline menu) */
#ast-hf-mobile-menu,
#ast-hf-mobile-menu .main-header-menu,
#ast-hf-mobile-menu .menu-item {
  background-color: var(--pr-navy, #0e1b2e) !important;
}
#ast-hf-mobile-menu .menu-link,
#ast-hf-mobile-menu .menu-item > a {
  color: #ffffff !important; opacity: 1 !important; font-weight: 600 !important;
  padding: 16px 20px !important; border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .pr-property-grid { grid-template-columns: 1fr; }
  .pr-float-buttons a { width: 48px; height: 48px; }
  /* Logo +25% on mobile for stronger brand presence */
  .pr-custom-logo img,
  .site-logo-img img,
  .custom-logo-link img { max-height: 56px !important; width: auto !important; }
}
@media (max-width: 600px) {
  .pr-custom-logo img,
  .site-logo-img img,
  .custom-logo-link img { max-height: 52px !important; width: auto !important; }
}

/* ---------- Mobile hero (wp-block-cover) clipping fix ---------- */
@media (max-width: 782px) {
  .home .wp-block-cover,
  .page-id-front .wp-block-cover,
  .wp-block-cover {
    min-height: 80vh !important;
    padding-top: 88px !important;   /* clear the sticky header */
    padding-bottom: 40px !important;
  }
  /* Scale down oversized hero headings so nothing is cut off */
  .wp-block-cover .wp-block-cover__inner-container h1,
  .wp-block-cover .wp-block-heading {
    font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  .wp-block-cover .wp-block-cover__inner-container { padding-left: 6px !important; padding-right: 6px !important; }
}
@media (max-width: 480px) {
  .wp-block-cover { min-height: 78vh !important; padding-top: 80px !important; }
  .wp-block-cover .wp-block-heading { font-size: clamp(1.7rem, 8.5vw, 2.2rem) !important; }
}

/* ---------- Hero: equal-size CTAs + perfect mobile centering ---------- */
.wp-block-cover .wp-block-buttons {
  gap: 14px;
}
.wp-block-cover .wp-block-button__link {
  min-width: 210px;
  text-align: center;
  padding: 15px 26px !important;
  font-size: 1rem !important;
  border-radius: 3px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wp-block-cover .is-style-outline .wp-block-button__link {
  border: 1.5px solid rgba(255,255,255,.85) !important;
  background: transparent !important;
}
@media (max-width: 782px) {
  /* Center the entire hero content stack on mobile */
  .wp-block-cover .wp-block-cover__inner-container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .wp-block-cover .wp-block-cover__inner-container > * { margin-left: auto !important; margin-right: auto !important; }
  .wp-block-cover .wp-block-buttons {
    flex-direction: column !important;
    width: 100%;
    max-width: 320px;
    align-items: stretch !important;
  }
  .wp-block-cover .wp-block-button { width: 100%; }
  .wp-block-cover .wp-block-button__link { width: 100%; min-width: 0; }
}


/* =========================================================
   Custom mobile menu — full-screen navy overlay
   Replaces Astra free mobile menu. Toggle = navy/gold.
   ========================================================= */

/* Hamburger toggle button — hidden on desktop. Premium navy + gold (#D4AF37). */
.pr-mnav-toggle {
  display: none;
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 10000;
  width: 46px;
  height: 46px;
  padding: 0 !important;
  border: 1px solid rgba(212,175,55,.55) !important;
  border-radius: 10px !important;
  background: rgba(14,27,46,.55) !important;   /* translucent navy, matches header */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: transform .18s cubic-bezier(0.23,1,0.32,1), background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pr-mnav-toggle:hover {
  background: rgba(14,27,46,.85) !important;
  border-color: var(--pr-gold) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
}
.pr-mnav-toggle:active { transform: scale(0.92); }
/* Hide hamburger while overlay is open (minimal gold X inside takes over) */
body.pr-mnav-active .pr-mnav-toggle {
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.pr-mnav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #D4AF37;   /* gold icon */
  border-radius: 2px;
  transition: transform 0.22s cubic-bezier(0.23,1,0.32,1), opacity 0.18s ease, width .22s ease;
}
.pr-mnav-toggle:hover span:nth-child(1) { width: 22px; }
.pr-mnav-toggle:hover span:nth-child(2) { width: 16px; }
.pr-mnav-toggle:hover span:nth-child(3) { width: 22px; }

/* Premium glass / blurred overlay — page stays slightly visible behind */
.pr-mnav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 9999;
  background: rgba(10, 20, 35, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border-left: 1px solid rgba(205, 163, 73, 0.18);
  display: flex;
  flex-direction: column;
  padding: 22px 26px 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: transform 0.30s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.30s ease, visibility 0s linear 0.30s;
  overflow-y: auto;
}
.pr-mnav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.32s ease;
}

/* Header row: logo + close */
.pr-mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(205, 163, 73, 0.25);
}
.pr-mnav-logo {
  height: 46px;
  width: auto;
}
/* Minimal gold X close */
.pr-mnav-close {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 6px !important;
  margin: 0 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: transform .25s cubic-bezier(0.23,1,0.32,1), background .2s ease;
}
.pr-mnav-close svg {
  width: 22px;
  height: 22px;
  stroke: var(--pr-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
  transition: stroke .2s ease;
}
.pr-mnav-close:hover,
.pr-mnav-close:focus {
  background: rgba(205,163,73,.12) !important;
  transform: rotate(90deg);
}
.pr-mnav-close:hover svg { stroke: #ffffff; }

/* Links — vertically centered, elegant spacing */
.pr-mnav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  margin: 18px 0;
}
.pr-mnav-link {
  display: block;
  color: #ffffff;
  font-family: var(--pr-font-display, var(--pr-font-sans));
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 12px 8px;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s cubic-bezier(0.23,1,0.32,1);
  /* staggered entrance */
  opacity: 0;
  transform: translateY(14px);
}
.pr-mnav-overlay.is-open .pr-mnav-link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.2s ease, opacity .4s ease, transform .4s cubic-bezier(0.23,1,0.32,1);
}
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(1) { transition-delay: .08s; }
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(2) { transition-delay: .13s; }
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(3) { transition-delay: .18s; }
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(4) { transition-delay: .23s; }
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(5) { transition-delay: .28s; }
.pr-mnav-overlay.is-open .pr-mnav-link:nth-child(6) { transition-delay: .33s; }
.pr-mnav-link:hover,
.pr-mnav-link:focus,
.pr-mnav-link.is-active {
  color: var(--pr-gold);
  transform: scale(1.04);
}
.pr-mnav-link.is-active {
  position: relative;
}

/* CTA block — smaller, elegant phone buttons */
.pr-mnav-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(205,163,73,.18);
}
.pr-mnav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: var(--pr-font-sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.16s cubic-bezier(0.23, 1, 0.32, 1), background 0.18s ease, color .18s ease;
}
.pr-mnav-btn-ic { width: 15px; height: 15px; flex: 0 0 auto; }
.pr-mnav-btn:active {
  transform: scale(0.97);
}
.pr-mnav-btn-gold {
  background: var(--pr-gold);
  color: var(--pr-navy);
}
.pr-mnav-btn-gold .pr-mnav-btn-ic { fill: var(--pr-navy); }
.pr-mnav-btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(205,163,73,.5);
}
.pr-mnav-btn-outline .pr-mnav-btn-ic { fill: var(--pr-gold); }
.pr-mnav-btn-outline:hover {
  border-color: var(--pr-gold);
  color: #ffffff;
}
.pr-mnav-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
}
/* smaller circular social in mobile menu */
.pr-mnav-social .pr-social-btn {
  width: 40px;
  height: 40px;
}
.pr-mnav-social .pr-social-btn svg { width: 17px; height: 17px; }

/* Show custom toggle + hide Astra's default toggle on mobile */
@media (max-width: 782px) {
  .pr-mnav-toggle {
    display: flex;
  }
  .ast-mobile-menu-buttons,
  .main-header-menu-toggle,
  .ast-button-wrap .menu-toggle,
  .ast-mobile-menu-trigger-fill,
  .ast-mobile-menu-trigger-minimal,
  .ast-header-navigation-arrow {
    display: none !important;
  }
}

/* Always hide our overlay/toggle on desktop */
@media (min-width: 783px) {
  .pr-mnav-toggle,
  .pr-mnav-overlay {
    display: none !important;
  }
}


/* =========================================================
   Premium rich footer
   ========================================================= */
.pr-footer {
  background: var(--pr-navy);
  color: rgba(255,255,255,.72);
  padding: 56px 20px 30px;
  border-top: 3px solid var(--pr-gold);
}
/* Compact, centered single luxury block */
.pr-footer--compact .pr-footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.pr-footer-logo { display: inline-block; margin: 0; }
.pr-footer-logo img { height: 40px; width: auto; }
.pr-footer--compact .pr-footer-tagline {
  font-family: var(--pr-font-sans);
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
  max-width: 44ch;
}
/* Inline meta row: phone · email · address */
.pr-footer-meta {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.pr-footer-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pr-font-sans);
  font-size: .9rem;
  color: rgba(255,255,255,.74);
}
.pr-footer-meta a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s ease; }
.pr-footer-meta a:hover { color: var(--pr-gold); }
.pr-footer--compact .pr-footer-addr { color: rgba(255,255,255,.62) !important; }
.pr-footer--compact .pr-footer-social { justify-content: center; margin-top: 4px; }
.pr-footer-h {
  font-family: var(--pr-font-sans) !important;
  color: #fff !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 18px !important;
  padding: 0 !important;
}
.pr-footer-list { list-style: none; margin: 0; padding: 0; }
.pr-footer-list li {
  font-family: var(--pr-font-sans);
  font-size: .94rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: rgba(255,255,255,.72);
}
.pr-footer-list a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s ease;
}
.pr-footer-list a:hover { color: var(--pr-gold); }
.pr-footer-addr { color: rgba(255,255,255,.58) !important; }

/* Contact / hours rows with luxury inline icons */
.pr-footer-contact li,
.pr-footer-hours li { display: flex; align-items: center; gap: 11px; }
.pr-fic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 17px; height: 17px; flex: 0 0 17px; color: var(--pr-gold);
}
.pr-fic svg { width: 17px; height: 17px; fill: var(--pr-gold); opacity: .9; }
.pr-footer-hours .pr-hrs { margin-left: auto; color: rgba(255,255,255,.55); white-space: nowrap; }
.pr-footer-nav a { color: rgba(255,255,255,.72); }

/* Footer social — elegant outlined circular icons */
.pr-footer-social { display: flex; flex-direction: row; gap: 12px; margin-top: 4px; }
.pr-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(212,175,55,.4);
  color: var(--pr-gold); text-decoration: none;
  transition: transform .28s cubic-bezier(0.23,1,0.32,1), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.pr-footer-social a svg { width: 19px; height: 19px; fill: var(--pr-gold); transition: fill .25s ease; }
.pr-footer-social a span { display: none; }
.pr-footer-social a:hover {
  transform: translateY(-3px);
  background: var(--pr-gold); border-color: var(--pr-gold);
  box-shadow: 0 10px 24px -8px rgba(212,175,55,.55);
}
.pr-footer-social a:hover svg { fill: var(--pr-navy); }
.pr-footer-social a:active { transform: translateY(-1px) scale(.96); }

/* =========================================================
   Premium circular social icon buttons (footer + mobile menu)
   Luxury style: navy fill, gold icon, subtle hover lift + glow
   ========================================================= */
.pr-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.42);
  color: var(--pr-gold);
  text-decoration: none;
  transition: transform .28s cubic-bezier(0.23,1,0.32,1), background .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.pr-social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--pr-gold);
  transition: fill .25s ease;
}
.pr-social-btn:hover {
  transform: translateY(-3px);
  background: var(--pr-gold);
  border-color: var(--pr-gold);
  box-shadow: 0 10px 24px -8px rgba(212,175,55,.55);
}
.pr-social-btn:hover svg { fill: var(--pr-navy); }
.pr-social-btn:active { transform: translateY(-1px) scale(.96); }

/* Astra small copyright bar — fully removed; copyright now lives inside .pr-footer */
.pr-footer + .site-footer,
.pr-footer ~ .site-footer,
.ast-small-footer-wrap,
.ast-small-footer,
.site-footer .ast-small-footer,
footer.site-footer {
  display: none !important;
}

/* Copyright row inside the dark footer */
.pr-footer-bottom {
  max-width: 640px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.pr-footer-copyright {
  margin: 0;
  text-align: center;
  font-size: .8rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.45);
}

/* Mobile: ~40-50% shorter footer */
@media (max-width: 600px) {
  .pr-footer { padding: 32px 20px 20px; }
  .pr-footer--compact .pr-footer-inner { gap: 12px; }
  .pr-footer-logo img { height: 34px; }
  .pr-footer--compact .pr-footer-tagline { font-size: .85rem; max-width: 34ch; }
  .pr-footer-meta { flex-direction: column; gap: 8px; }
  .pr-footer-meta li { font-size: .88rem; }
  .pr-footer--compact .pr-footer-social a { width: 38px; height: 38px; }
  .pr-footer--compact .pr-footer-social a svg { width: 17px; height: 17px; }
  .pr-footer-bottom { margin-top: 18px; padding: 14px 12px 0; max-width: 100%; }
  .pr-footer-copyright { font-size: .74rem; line-height: 1.5; }
}


/* =========================================================
   Header: trim height ~12% + guarantee logo is fully clickable
   ========================================================= */
.ast-primary-header-bar .site-header-primary-section-left,
.main-header-bar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Reduce vertical padding around the header content row */
.main-header-bar-wrap .main-header-bar {
  --header-pad: 10px;
}
.ast-primary-header-bar .ast-container,
.site-primary-header-wrap .ast-container {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
/* Logo slightly smaller for a leaner, more premium bar */
.site-logo-img img,
.custom-logo-link img,
.pr-custom-logo img {
  max-height: 48px !important;
  width: auto !important;
  transition: opacity .2s ease;
}
.custom-logo-link:hover img,
.pr-custom-logo:hover img,
.site-logo-img:hover img { opacity: .88; }
/* Make the whole logo anchor a comfortable click/tap target */
.custom-logo-link,
.pr-custom-logo,
.site-logo-img {
  display: inline-flex !important;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 782px) {
  .ast-primary-header-bar .ast-container,
  .site-primary-header-wrap .ast-container { padding-top: 6px !important; padding-bottom: 6px !important; }
  .site-logo-img img, .custom-logo-link img, .pr-custom-logo img { max-height: 46px !important; }
}
@media (max-width: 600px) {
  .site-logo-img img, .custom-logo-link img, .pr-custom-logo img { max-height: 42px !important; }
}

/* =========================================================
   Premium micro-interactions: scroll reveal
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .pr-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(0.23,1,0.32,1), transform .7s cubic-bezier(0.23,1,0.32,1);
    will-change: opacity, transform;
  }
  .pr-reveal-in {
    opacity: 1;
    transform: none;
  }
  /* gentle stagger for grouped cards/columns */
  .wp-block-columns > .pr-reveal:nth-child(2) { transition-delay: .06s; }
  .wp-block-columns > .pr-reveal:nth-child(3) { transition-delay: .12s; }
  .wp-block-columns > .pr-reveal:nth-child(4) { transition-delay: .18s; }
}

/* Button press feedback site-wide (premium tactile feel) */
.wp-block-button__link,
.elementor-button,
.pr-search-form button,
.pr-form-submit {
  transition: transform .16s cubic-bezier(0.23,1,0.32,1), background .22s ease, box-shadow .22s ease, color .22s ease !important;
}
.wp-block-button__link:active,
.elementor-button:active,
.pr-search-form button:active,
.pr-form-submit:active {
  transform: scale(0.975);
}

/* =========================================================
   Property card specs — clear labels with icons (no abbreviations)
   ========================================================= */
.pr-property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
.pr-property-meta .pr-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .9rem;
  color: var(--pr-charcoal, #2a2722);
  white-space: nowrap;
}
.pr-property-meta .pr-spec-ico {
  font-size: 1rem;
  line-height: 1;
  filter: grayscale(0.1);
}


/* ============================================================
   PREMIUM OVERHAUL v2 — Luxury hierarchy (Sotheby's / Christie's)
   Brand: Navy #0e1b2e · Gold #cda349 · Ivory #f7f6f3
   ============================================================ */

/* ---- Global type scale & rhythm -------------------------------------- */
:root{
  --pr-shadow-card: 0 1px 2px rgba(14,27,46,.04), 0 12px 32px -12px rgba(14,27,46,.18);
  --pr-shadow-card-hover: 0 2px 6px rgba(14,27,46,.06), 0 28px 60px -20px rgba(14,27,46,.32);
  --pr-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Constrain content width for luxury proportions */
.pr-stats-grid,
.pr-search-intro,
.pr-listings-intro,
.pr-about-inner,
.pr-property-grid{ max-width:1200px; margin-left:auto; margin-right:auto; }

/* Eyebrow (shared) */
.pr-eyebrow{
  color:var(--pr-gold) !important;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-size:.74rem;
  font-weight:700;
  text-align:inherit;
  margin:0 0 .6rem;
  font-family:var(--pr-font-sans) !important;
}

/* Section titles (one consistent rule across all pages) */
.pr-section-title{
  font-size:clamp(2rem, 4.5vw, 2.9rem) !important;
  line-height:1.12 !important;
  letter-spacing:-.01em;
  margin:0 auto;
  max-width:18ch;
  padding-bottom:.12em;
}

/* ---- HERO ------------------------------------------------------------ */
.pr-hero .wp-block-cover__inner-container{ width:100%; max-width:1200px; margin:0 auto; padding-left:1.25rem; padding-right:1.25rem; }
.pr-hero-eyebrow{
  color:var(--pr-gold) !important;
  letter-spacing:.22em; text-transform:uppercase;
  font-size:.8rem; font-weight:700; margin:0 0 1rem;
}
.pr-hero-title{
  color:#fff !important;
  font-size:clamp(2.4rem, 6.5vw, 4rem) !important;
  line-height:1.08 !important;
  max-width:14ch;
  margin:0 0 1.1rem;
  letter-spacing:-.015em;
  text-shadow:0 2px 24px rgba(0,0,0,.28);
}
.pr-hero-sub{
  color:#eef0f3 !important;
  font-size:clamp(1rem,2.4vw,1.2rem) !important;
  max-width:46ch; margin:0 0 1.8rem; line-height:1.55;
}
.pr-hero-btns{ gap:.85rem; flex-wrap:wrap; }
.pr-hero-btns .wp-block-button__link{ padding:.95rem 1.9rem; font-size:.95rem; }

/* Gold + ghost buttons (consistent CTAs everywhere) */
.pr-btn-gold .wp-block-button__link,
a.pr-about-cta{
  background:var(--pr-gold) !important; color:var(--pr-navy) !important;
  border:1px solid var(--pr-gold) !important; font-weight:700;
  letter-spacing:.01em; border-radius:2px;
  transition:transform .16s var(--pr-ease), background .2s var(--pr-ease), box-shadow .2s var(--pr-ease);
}
.pr-btn-gold .wp-block-button__link:hover,
a.pr-about-cta:hover{ background:var(--pr-gold-light) !important; transform:translateY(-2px); box-shadow:0 12px 26px -10px rgba(205,163,73,.6); }
.pr-btn-gold .wp-block-button__link:active,
a.pr-about-cta:active{ transform:scale(.98); }

.pr-btn-ghost .wp-block-button__link{
  background:transparent !important; color:#fff !important;
  border:1px solid rgba(255,255,255,.55) !important; font-weight:600; border-radius:2px;
  transition:transform .16s var(--pr-ease), border-color .2s, background .2s;
}
.pr-btn-ghost .wp-block-button__link:hover{ border-color:var(--pr-gold) !important; color:var(--pr-gold) !important; transform:translateY(-2px); }

/* ---- STATS — 2/4 col elegant cards ---------------------------------- */
.pr-stats{ padding:clamp(3rem,6vw,4.5rem) 1.25rem !important; }
.pr-stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem;
}
.pr-stat-card{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:1.9rem 1.1rem;
  border:1px solid rgba(205,163,73,.22);
  border-radius:4px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  transition:transform .25s var(--pr-ease), border-color .25s, background .25s;
}
.pr-stat-card:hover{ transform:translateY(-4px); border-color:rgba(205,163,73,.5); background:rgba(205,163,73,.06); }
.pr-stat-num{
  font-family:var(--pr-font-serif);
  color:var(--pr-gold); font-size:clamp(2rem,5vw,2.8rem); font-weight:600; line-height:1;
}
.pr-stat-label{ color:#cfd6df; font-size:.85rem; margin-top:.7rem; line-height:1.45; max-width:22ch; }

/* ---- Search / listings intro spacing -------------------------------- */
.pr-search-intro{ padding:clamp(3.5rem,7vw,5rem) 1.25rem 1.5rem !important; }
.pr-listings-intro{ padding:clamp(3rem,6vw,4.5rem) 1.25rem 1.5rem !important; }

/* ---- ABOUT storytelling block --------------------------------------- */
.pr-about{ padding:clamp(4rem,8vw,6rem) 1.25rem !important; }
.pr-about-inner{ max-width:980px; margin:0 auto; text-align:center; }
.pr-about-eyebrow{
  color:var(--pr-gold); letter-spacing:.24em; text-transform:uppercase;
  font-size:.74rem; font-weight:700; margin:0 0 1.25rem;
}
.pr-about-title{
  color:#fff !important; font-family:var(--pr-font-serif);
  font-size:clamp(1.9rem,4.5vw,2.8rem); line-height:1.18; letter-spacing:-.01em;
  max-width:20ch; margin:0 auto 1.2rem;
}
.pr-about-text{
  color:#cfd6df; font-size:clamp(1.05rem,2.4vw,1.25rem); line-height:1.65;
  font-family:var(--pr-font-serif); font-weight:400;
  max-width:52ch; margin:0 auto 3rem;
}
.pr-about-values{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
  text-align:left; margin:0 auto 2.8rem; max-width:900px;
}
.pr-value{
  padding:1.6rem 1.4rem; border:1px solid rgba(205,163,73,.2); border-radius:4px;
  background:rgba(255,255,255,.03); transition:transform .25s var(--pr-ease), border-color .25s;
}
.pr-value:hover{ transform:translateY(-4px); border-color:rgba(205,163,73,.5); }
.pr-value-icon{ color:var(--pr-gold); font-size:1rem; display:block; margin-bottom:.7rem; }
.pr-value-h{ color:#fff !important; font-family:var(--pr-font-serif); font-size:1.3rem; margin:0 0 .5rem; }
.pr-value-p{ color:#aeb8c4; font-size:.92rem; line-height:1.6; margin:0; }
a.pr-about-cta{ display:inline-block; padding:1rem 2.2rem; font-size:.95rem; text-decoration:none; }

/* ---- MOBILE ---------------------------------------------------------- */
@media (max-width:900px){
  .pr-stats-grid{ grid-template-columns:repeat(2,1fr); gap:1rem; }
  .pr-about-values{ grid-template-columns:1fr; gap:1rem; max-width:480px; }
}
@media (max-width:600px){
  .pr-stat-card{ padding:1.5rem .8rem; }
  .pr-hero-btns{ flex-direction:column; align-items:stretch; }
  .pr-hero-btns .wp-block-button{ width:100%; }
  .pr-hero-btns .wp-block-button__link{ display:block; text-align:center; }
}


/* ============================================================
   CONTACT PAGE — premium contact list + map
   ============================================================ */
.pr-contact-list { list-style: none; margin: 0; padding: 0; }
.pr-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 27, 46, 0.08);
  font-size: 1.02rem;
  color: #2a2722;
}
.pr-contact-list li:last-child { border-bottom: 0; }
.pr-ci-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9892f;
  font-weight: 700;
}
.pr-contact-list a { color: #0e1b2e; text-decoration: none; transition: color .2s ease; }
.pr-contact-list a:hover { color: #cda349; }

.pr-map-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(14, 27, 46, 0.4);
  border: 1px solid rgba(14, 27, 46, 0.08);
  margin-top: 6px;
}
.pr-map-wrap iframe { display: block; width: 100%; height: 100%; }

@media (max-width: 600px) {
  .pr-map-wrap { aspect-ratio: 4 / 3; }
}


/* ============================================================
   ABOUT / SERVICES — premium value & service cards
   ============================================================ */
/* Default WP columns inside page content become elegant cards */
.entry-content .wp-block-columns {
  gap: 28px;
  margin: 28px 0;
}
/* Consecutive columns blocks (e.g. 2+2 value cards) keep even vertical rhythm */
.entry-content .wp-block-columns + .wp-block-columns { margin-top: 28px; }
.entry-content .wp-block-columns .wp-block-column {
  background: #ffffff;
  border: 1px solid rgba(14, 27, 46, 0.07);
  border-radius: 6px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px -32px rgba(14, 27, 46, 0.45);
  transition: transform .35s cubic-bezier(0.23,1,0.32,1), box-shadow .35s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.entry-content .wp-block-columns .wp-block-column::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, #cda349, #b9892f);
  transition: height .4s cubic-bezier(0.23,1,0.32,1);
}
.entry-content .wp-block-columns .wp-block-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -28px rgba(14, 27, 46, 0.5);
}
.entry-content .wp-block-columns .wp-block-column:hover::before { height: 100%; }
.entry-content .wp-block-columns .wp-block-column > h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #0e1b2e;
  margin: 0 0 10px;
  line-height: 1.2;
}
.entry-content .wp-block-columns .wp-block-column > p {
  color: #5d5950;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Service card images — uniform proportion */
.entry-content .wp-block-columns .wp-block-column .wp-block-image {
  margin: -30px -28px 22px;
}
.entry-content .wp-block-columns .wp-block-column .wp-block-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Contact page columns should NOT become cards (they hold list + form) */
.pr-contact-page .wp-block-columns .wp-block-column,
body.page-id-107 .wp-block-columns .wp-block-column {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.pr-contact-page .wp-block-columns .wp-block-column::before,
body.page-id-107 .wp-block-columns .wp-block-column::before { display: none; }
.pr-contact-page .wp-block-columns .wp-block-column:hover,
body.page-id-107 .wp-block-columns .wp-block-column:hover { transform: none; box-shadow: none; }

@media (max-width: 781px) {
  /* Stacked cards: uniform vertical rhythm whether 1 block or multiple */
  .entry-content .wp-block-columns {
    gap: 16px !important;
    margin: 16px 0 !important;
    row-gap: 16px !important;
  }
  .entry-content .wp-block-columns:not(:first-child) { margin-top: 16px !important; }
  .entry-content .wp-block-columns .wp-block-column {
    padding: 24px 22px;
    margin-bottom: 0 !important;
    flex-basis: 100% !important;
  }
}


/* ============================================================
   SINGLE PROPERTY — badge & location refinements
   ============================================================ */
.pr-single-badge {
  display: inline-block;
  background: #0e1b2e;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(205,163,73,.55);
  border-radius: 2px;
}
.pr-single-location {
  color: #6f6a61;
  font-size: .98rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 0;
}
.pr-single-location::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pr-gold);
  flex: none;
}

/* =========================================================
   Front page: remove white gap between header and hero
   (Astra adds default top padding/margin to the content area;
   on the home page the hero must sit flush under the sticky header)
   ========================================================= */
.home .site-content > .ast-container,
.page-id-104 .site-content > .ast-container {
  padding-top: 0 !important;
}
.home #primary,
.page-id-104 #primary,
.home .site-main,
.page-id-104 .site-main,
.home .ast-article-single,
.page-id-104 .ast-article-single {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.home .entry-content > .pr-hero:first-child,
.page-id-104 .entry-content > .pr-hero:first-child {
  margin-top: 0 !important;
}

/* Stronger front-page gap fix: Astra applies margin-top:60px to #primary
   on separate-container layouts. Override with high specificity on home. */
body.home #primary,
body.page-id-104 #primary,
html body.home .content-area.primary,
html body.page-id-104 .content-area.primary {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.home .ast-separate-container .ast-article-single,
body.page-id-104 .ast-separate-container .ast-article-single {
  padding: 0 !important;
}

/* Definitive front-page gap fix: Astra separate-container applies
   padding:4em 0 to #primary. Remove top padding on home so hero is flush. */
body.home .ast-separate-container #primary,
body.page-id-104 .ast-separate-container #primary {
  padding-top: 0 !important;
}

/* Front-page: also kill the 60px (#primary { margin:4em 0 }) top margin so hero is flush. */
body.home #primary.content-area,
body.page-id-104 #primary.content-area {
  margin-top: 0 !important;
}
