/* ═══════════════════════════════════════════════════════════════════
   Golden Nest — Main Stylesheet v2.0
   Developed by BBS Tech Solution · No ACF dependency
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --ink:        #1c1a17;
  --ink-deep:   #2a2520;
  --gold:       #b49a6e;
  --gold-hover: #8c7450;
  --gold-lt:    #e8dccb;
  --gold-pale:  #f7f2eb;
  --sage:       #7d8c72;
  --sage-lt:    #d4dcd0;
  --stone-50:   #faf9f7;
  --stone-100:  #f2efe9;
  --stone-200:  #e5e0d6;
  --stone-300:  #cfc8bb;
  --stone-500:  #9c9183;
  --stone-700:  #5c5347;
  --white:      #ffffff;
  --success:    #3d7a4e;
  --error:      #b03a2e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --ease: 220ms ease;
  --ease-slow: 400ms ease;

  --container: 1280px;
  --header-h:  76px;
  --cta-bar-h: 64px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-deep);
  background: var(--stone-50);
  padding-bottom: var(--cta-bar-h);
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img, svg { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
ul, ol { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--gold); color: #fff; padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 9999; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1200px) { .container { padding-inline: 3rem; } }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 400; }
p  { margin-bottom: .85rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; }
em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  padding: .8rem 1.75rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--dark    { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-deep); color: var(--gold); }
.btn--gold    { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--stone-300); }
.btn--outline:hover { border-color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; }
.btn--nav { padding: .6rem 1.35rem; font-size: .75rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: .88rem; }
.btn--sm  { padding: .5rem 1rem; font-size: .72rem; }

/* ─════════════════════════════════════════════
   SITE HEADER — Logo LEFT · Nav CENTRE · CTA RIGHT
   ════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(250,249,247,.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--stone-200);
  box-shadow: 0 2px 12px rgba(28,26,23,.07);
}
.header-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1200px) { .header-wrap { padding-inline: 3rem; } }

/* Logo — always LEFT */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img { height: 52px; width: auto; }
.logo-text-link { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.logo-name     { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: var(--ink); letter-spacing: .04em; }
.logo-tagline  { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone-500); }

/* Primary nav */
.primary-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .nav-menu { display: flex; align-items: center; gap: .15rem; }
  .nav-item { position: relative; }

  /* ━━━━ LARGE NAV FONT — matching reference image ━━━━ */
  .nav-link {
    display: flex; align-items: center; gap: .3rem;
    font-size: .9rem;          /* increased from .8rem */
    font-weight: 500;          /* medium weight */
    letter-spacing: .12em;     /* wide tracking */
    text-transform: uppercase; /* all-caps like reference */
    color: var(--ink);
    padding: .5rem .85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--ease), background var(--ease);
  }
  .nav-link:hover { color: var(--gold); }
  .nav-item.is-active > .nav-link { color: var(--gold); }
  .dropdown-arrow { font-size: .55rem; opacity: .6; transition: transform var(--ease); }
  .nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

  /* Dropdown */
  .dropdown-menu {
    position: absolute; top: calc(100% + .5rem); left: 0;
    min-width: 210px; background: var(--white);
    border: 1px solid var(--stone-200); border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(28,26,23,.1);
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    padding: .5rem;
  }
  .nav-item:hover > .dropdown-menu,
  .nav-item:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-menu .nav-link { font-size: .8rem; padding: .45rem .75rem; width: 100%; letter-spacing: .1em; }
}

.header-actions { display: none; flex-shrink: 0; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform var(--ease), opacity var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 500; visibility: hidden; }
.mobile-drawer.open { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(28,26,23,.55); opacity: 0; transition: opacity var(--ease-slow); }
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px,85vw);
  background: var(--white); padding: 2rem 1.5rem;
  transform: translateX(100%); transition: transform var(--ease-slow);
  display: flex; flex-direction: column; gap: 1.5rem; overflow-y: auto;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--stone-500); }
.drawer-logo .logo-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav .nav-link, .drawer-nav a {
  display: block; font-size: 1.1rem; font-weight: 400;
  color: var(--ink); padding: .75rem 0;
  border-bottom: 1px solid var(--stone-100); text-decoration: none;
  letter-spacing: .05em;
}
.drawer-nav .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; }
.drawer-phone { font-family: var(--font-mono); font-size: .85rem; color: var(--stone-700); display: block; margin-top: .75rem; text-align: center; }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: .5rem; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-gradient { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(28,26,23,.72) 0%, rgba(28,26,23,.38) 100%); }
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container); margin-inline: auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}
@media (min-width: 1200px) { .hero-content { padding-inline: 3rem; } }
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; font-weight: 400;
}
.hero-headline {
  font-family: var(--font-display); font-weight: 300; line-height: 1.07;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  color: var(--white); margin-bottom: 1.5rem; max-width: 720px;
}
.hero-headline em { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8; }

/* Hero search */
.hero-search {
  background: rgba(255,255,255,.1); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  max-width: 680px; margin-bottom: 2rem;
}
@media (min-width: 700px) { .hero-search { flex-direction: row; align-items: center; } }
.hero-search-fields { display: flex; gap: .5rem; flex: 1; flex-wrap: wrap; }
.hero-search-fields select {
  flex: 1; min-width: 130px; padding: .65rem .9rem;
  background: rgba(255,255,255,.88); border: none; border-radius: var(--radius-sm);
  font-size: .88rem; color: var(--ink); cursor: pointer; appearance: none;
}
.hero-search-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1.35rem; background: var(--gold); color: var(--ink);
  border: none; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: background var(--ease);
}
.hero-search-btn:hover { background: var(--gold-hover); color: #fff; }

/* Hero stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); }
.hero-stat-sep { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ─── SECTION HEADERS ─── */
.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin-inline: auto; }
.section-eyebrow {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem; font-weight: 400;
}
.section-title { margin-bottom: .85rem; }
.section-desc { color: var(--stone-700); max-width: 580px; font-size: 1rem; line-height: 1.8; }

/* ─── PROPERTY GRID & CARDS ─── */
.prop-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .prop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prop-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.prop-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(28,26,23,.07), 0 0 0 1px rgba(28,26,23,.04);
  display: flex; flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}
@media (hover: hover) {
  .prop-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(28,26,23,.14), 0 0 0 1px rgba(28,26,23,.06); }
  .prop-card:hover .prop-card-img { transform: scale(1.05); }
}

.prop-card-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--stone-100); }
.prop-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.prop-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--stone-300); }

.prop-card-status {
  position: absolute; top: 12px; left: 12px;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--radius-sm);
  background: rgba(28,26,23,.82); backdrop-filter: blur(4px); color: #fff;
}
.prop-card-status--available { background: rgba(40,110,65,.88); }
.prop-card-status--sold, .prop-card-status--under-offer { background: rgba(160,50,40,.88); }

.prop-card-verified {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #fff;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
}

.prop-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.prop-card-price-row { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.prop-price {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 400;
  color: var(--ink); line-height: 1;
}
.prop-price--por { font-size: 1rem; color: var(--stone-500); font-family: var(--font-body); }
.prop-roi-badge {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--sage-lt); color: var(--sage); padding: 2px 6px; border-radius: 2px;
}
.prop-card-title { font-family: var(--font-body); font-size: .95rem; font-weight: 500; color: var(--ink-deep); line-height: 1.35; }
.prop-card-title a { color: inherit; text-decoration: none; }
.prop-card-title a:hover { color: var(--gold); }
.prop-card-location { font-size: .78rem; color: var(--stone-500); display: flex; align-items: center; gap: 4px; }
.prop-card-specs {
  display: flex; gap: 1rem; border-top: 1px solid var(--stone-100);
  padding-top: .65rem; margin-top: auto;
}
.prop-spec { display: flex; flex-direction: column; gap: 1px; }
.prop-spec-val { font-family: var(--font-mono); font-size: .83rem; color: var(--ink-deep); }
.prop-spec-lbl { font-size: .6rem; color: var(--stone-500); letter-spacing: .08em; text-transform: uppercase; }
.prop-card-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1rem; background: var(--ink); color: var(--gold);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; transition: background var(--ease);
}
.prop-card-cta:hover { background: var(--ink-deep); color: var(--gold); }

/* ─── SECTIONS ─── */
section { padding-block: 5rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Featured Properties */
.section-featured { background: var(--stone-50); }

/* Services */
.section-services { background: var(--white); }
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card {
  padding: 2.25rem; border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover { box-shadow: 0 6px 28px rgba(28,26,23,.09); border-color: var(--gold-lt); }
.service-icon { color: var(--gold); margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .75rem; }
.service-card p { font-size: .88rem; color: var(--stone-700); margin: 0; line-height: 1.8; }

/* ROI Section */
.section-roi { background: var(--ink); }
.section-roi .section-eyebrow { color: var(--gold); }
.section-roi h2 { color: var(--white); }
.section-roi p { color: rgba(255,255,255,.65); }
.roi-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .roi-grid { grid-template-columns: 1fr 1fr; } }

/* Testimonials */
.section-testimonials { background: var(--stone-100); }
.testi-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi-card {
  background: var(--white); border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg); padding: 1.85rem;
}
.testi-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; line-height: 1.65; color: var(--ink); margin-bottom: 1.5rem;
}
.testi-quote::before { content: '\201C'; font-size: 2rem; color: var(--gold); line-height: .5; display: block; margin-bottom: .5rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name { display: block; font-size: .85rem; font-weight: 500; color: var(--ink); }
.testi-role { display: block; font-size: .72rem; color: var(--stone-500); }

/* CTA Band */
.section-cta-band { background: var(--gold-pale); }
.cta-band {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
}
.cta-band h2 { font-size: clamp(1.65rem,3vw,2.25rem); }
.cta-band p { color: var(--stone-700); }
@media (min-width: 768px) { .cta-band { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ─── ABOUT PAGE ─── */
.about-hero { background: var(--ink); padding-block: 4rem 5rem; }
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin-top: 1rem; }
.about-hero .breadcrumb-list li { color: rgba(255,255,255,.5); }
.about-hero .breadcrumb-list a { color: rgba(255,255,255,.5); }

.agent-section { padding-block: 5rem; background: var(--white); }
.agent-grid { display: grid; gap: 3.5rem; align-items: start; }
@media (min-width: 1024px) { .agent-grid { grid-template-columns: 360px 1fr; } }

.agent-photo-wrap { position: relative; }
.agent-photo-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--stone-100);
  box-shadow: 0 16px 48px rgba(28,26,23,.18);
}
.agent-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.agent-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--stone-400); background: var(--stone-100);
  padding: 2rem; text-align: center;
}
.agent-photo-placeholder .avatar-initials {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--gold-lt); color: var(--gold);
  font-family: var(--font-display); font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
}
.agent-photo-placeholder p { font-size: .82rem; color: var(--stone-500); }
.agent-verified-chip {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--stone-200);
  border-radius: 2rem; padding: .5rem 1.25rem;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(28,26,23,.12);
}
.agent-verified-chip svg { color: var(--gold); }
.agent-verified-chip span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }

.agent-info .agent-name {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
  color: var(--ink); margin-bottom: .25rem;
}
.agent-title { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.agent-bio p { color: var(--stone-700); line-height: 1.9; margin-bottom: 1rem; font-size: 1rem; }
.agent-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin: 2rem 0; }
.agent-stat { display: flex; flex-direction: column; gap: .15rem; }
.agent-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--ink); line-height: 1; }
.agent-stat-lbl { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500); }
.agent-certs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.agent-cert-badge {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold-pale); color: var(--stone-700); border: 1px solid var(--gold-lt);
  padding: .35rem .85rem; border-radius: 2rem;
}

/* Values section */
.values-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4,1fr); } }
.value-card { padding: 1.75rem; text-align: center; border: 1px solid var(--stone-200); border-radius: var(--radius-lg); }
.value-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.value-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p { font-size: .82rem; color: var(--stone-500); margin: 0; }

/* ─── CONTACT PAGE ─── */
.contact-hero { background: var(--ink); padding-block: 4rem; }
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,.65); margin-top: .75rem; }

.contact-layout { display: grid; gap: 3rem; padding-block: 4rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 420px; } }

.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.gnest-form .form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 600px) { .gnest-form .form-row--2 { grid-template-columns: 1fr 1fr; } }
.gnest-form .form-field { display: flex; flex-direction: column; gap: .3rem; }
.gnest-form label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500);
}
.gnest-form input,
.gnest-form select,
.gnest-form textarea {
  padding: .7rem .9rem; border: 1px solid var(--stone-200); border-radius: var(--radius-sm);
  background: var(--stone-50); font-size: .95rem; color: var(--ink);
  transition: border-color var(--ease); font-family: var(--font-body); font-weight: 300;
}
.gnest-form input:focus, .gnest-form select:focus, .gnest-form textarea:focus { outline: none; border-color: var(--gold); }
.gnest-form textarea { resize: vertical; min-height: 120px; }
.gnest-form .form-submit { margin-top: 1.5rem; }
.gnest-form .form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }
.form-consent { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .5rem; font-size: .8rem; color: var(--stone-700); }
.form-consent input { width: auto; margin-top: 2px; accent-color: var(--gold); }
.form-status { padding: .85rem 1rem; border-radius: var(--radius-sm); margin-top: 1rem; font-size: .85rem; display: none; }
.form-status--success { background: #d4f0dc; color: #1a5c2e; display: block; }
.form-status--error   { background: #fde8e7; color: #7a1f1a; display: block; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.contact-info-item { display: flex; gap: .85rem; padding: .75rem 0; border-bottom: 1px solid var(--stone-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-info-lbl { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500); margin-bottom: .15rem; }
.contact-info-val { font-size: .9rem; color: var(--ink); }
.contact-info-val a { color: var(--ink); }
.contact-info-val a:hover { color: var(--gold); }

.contact-agent-card {
  background: var(--ink); border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; gap: 1rem; align-items: center;
}
.contact-agent-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.contact-agent-photo-placeholder { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); border: 2px solid var(--gold); flex-shrink: 0; }
.contact-agent-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.contact-agent-title { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .5rem; }
.contact-agent-tagline { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ─── ARCHIVE PAGE ─── */
.archive-header { background: var(--ink); padding-block: 3.5rem; }
.archive-header .breadcrumb-list li, .archive-header .breadcrumb-list a { color: rgba(255,255,255,.5); }
.archive-eyebrow { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.archive-header h1 { color: var(--white); }

/* Filter bar */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--stone-200); padding: 1rem 0; position: sticky; top: var(--header-h); z-index: 50; }
.filter-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .75rem; }
.filter-field { display: flex; flex-direction: column; gap: .28rem; min-width: 140px; }
.filter-lbl { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500); }
.filter-select {
  padding: .5rem .75rem; border: 1px solid var(--stone-200); border-radius: var(--radius-sm);
  background: var(--stone-50); font-size: .88rem; color: var(--ink); cursor: pointer; appearance: none;
  transition: border-color var(--ease);
}
.filter-select:hover { border-color: var(--stone-500); }
.filter-select:focus { outline: none; border-color: var(--gold); }
.filter-check-field { justify-content: flex-end; }
.filter-check-label { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--stone-700); cursor: pointer; padding-bottom: .5rem; }
.filter-check-label input { accent-color: var(--gold); }
.filter-apply { padding: .5rem 1.25rem; background: var(--ink); color: var(--gold); border: none; border-radius: var(--radius-sm); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background var(--ease); }
.filter-apply:hover { background: var(--ink-deep); }
.filter-clear { font-size: .75rem; color: var(--stone-500); text-decoration: underline; padding: .5rem; cursor: pointer; background: none; border: none; }

.archive-results { padding-block: 3rem; }
.results-meta { margin-bottom: 1.5rem; }
.results-count { font-size: .82rem; color: var(--stone-500); }

/* Pagination */
.archive-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.archive-pagination .nav-links { display: flex; align-items: center; gap: .5rem; }
.archive-pagination .page-numbers { display: flex; align-items: center; gap: .25rem; padding: .5rem .9rem; border: 1px solid var(--stone-200); border-radius: var(--radius-sm); font-size: .8rem; color: var(--stone-700); transition: all var(--ease); }
.archive-pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.archive-pagination .page-numbers.current { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* No results */
.no-results { text-align: center; padding-block: 5rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; color: var(--stone-300); }
.no-results h2 { color: var(--ink); }
.no-results p { color: var(--stone-500); max-width: 380px; }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 1.25rem 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.breadcrumb-list li { font-size: .75rem; color: var(--stone-500); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin-left: .5rem; color: var(--stone-300); }
.breadcrumb-list a { color: var(--stone-500); }
.breadcrumb-list a:hover { color: var(--gold); }

/* ─── SINGLE PROPERTY ─── */
.single-prop-gallery { background: var(--stone-100); }
.gallery-main { aspect-ratio: 16/9; max-height: 560px; overflow: hidden; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 3px; }
.gallery-thumb { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb-overlay { position: absolute; inset: 0; background: rgba(28,26,23,.5); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-size: 1.5rem; }

.gallery-view-all { position: absolute; bottom: 1rem; right: 1rem; background: rgba(255,255,255,.92); border: 1px solid var(--stone-200); border-radius: var(--radius-sm); padding: .4rem 1rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; color: var(--ink); display: flex; align-items: center; gap: .4rem; transition: background var(--ease); }
.gallery-view-all:hover { background: #fff; }

.prop-detail-layout { display: grid; gap: 2.5rem; padding-block: 2.5rem; }
@media (min-width: 1024px) { .prop-detail-layout { grid-template-columns: 1fr 380px; } }

.prop-detail-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.prop-status-badge {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-sm);
  background: rgba(28,26,23,.82); color: #fff;
}
.prop-status-badge--available { background: rgba(40,110,65,.88); }
.prop-status-badge--sold { background: rgba(160,50,40,.88); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: #fff;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: var(--radius-sm);
}
[data-tooltip] { position: relative; cursor: help; }
[data-tooltip]:hover::after {
  content: attr(data-tooltip); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: .68rem; padding: 5px 10px; border-radius: var(--radius-sm);
  white-space: nowrap; pointer-events: none; z-index: 20;
  font-family: var(--font-body); letter-spacing: 0; text-transform: none;
}
.prop-detail-title { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: .5rem; }
.prop-detail-address { font-size: .88rem; color: var(--stone-500); display: flex; align-items: center; gap: .4rem; margin-bottom: 1.25rem; }
.prop-price-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.prop-price-row .prop-price { font-size: 2.5rem; }
.prop-roi-tag { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; background: var(--sage-lt); color: var(--sage); padding: 4px 10px; border-radius: var(--radius-sm); }

.prop-key-specs { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; background: var(--stone-100); border-radius: var(--radius-lg); margin-bottom: 2rem; }
.key-spec { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.key-spec-icon { color: var(--gold); }
.key-spec-val { font-family: var(--font-mono); font-size: 1.1rem; color: var(--ink); }
.key-spec-lbl { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-500); }

.prop-section-title { font-size: 1.35rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--stone-200); }
.prop-description, .prop-features, .prop-floor-plan, .prop-virtual-tour, .prop-map { margin-bottom: 2.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .55rem; }
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(3,1fr); } }
.feature-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--stone-700); }
.feature-item svg { color: var(--gold); flex-shrink: 0; }

.consultant-note { background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 2.5rem; }
.consultant-note p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink); margin: 0; }

.virtual-tour-wrap { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.virtual-tour-poster { position: relative; aspect-ratio: 16/9; }
.virtual-tour-poster img { width: 100%; height: 100%; object-fit: cover; }
.play-btn-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; background: rgba(28,26,23,.4); color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.virtual-tour-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.map-placeholder { height: 300px; background: var(--stone-100); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--stone-400); }
.map-placeholder iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

/* Sidebar */
.prop-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .prop-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); height: fit-content; max-height: calc(100vh - var(--header-h) - 3rem); overflow-y: auto; } }

.sidebar-card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-card-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1.25rem; }
.sidebar-rera { background: var(--stone-100); }
.rera-lbl { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500); margin-bottom: .25rem; }
.rera-num { font-family: var(--font-mono); font-size: .88rem; color: var(--ink); }

/* Book a viewing form (sidebar) */
.book-form .form-field { margin-bottom: .85rem; }
.book-form label { display: block; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-500); margin-bottom: .3rem; }
.book-form input, .book-form select, .book-form textarea { width: 100%; padding: .6rem .75rem; border: 1px solid var(--stone-200); border-radius: var(--radius-sm); background: var(--stone-50); font-size: .88rem; color: var(--ink); transition: border-color var(--ease); }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: none; border-color: var(--gold); }
.book-form textarea { resize: vertical; min-height: 80px; }
.book-form .btn { width: 100%; justify-content: center; padding: .85rem; }

/* ─── PAGE TEMPLATE ─── */
.page-hero-band { background: var(--ink); padding-block: 3rem; }
.page-hero-band h1 { color: var(--white); }
.page-content { padding-block: 4rem; max-width: 720px; margin-inline: auto; }
.entry-content h2 { font-size: 1.75rem; margin: 1.5rem 0 .85rem; }
.entry-content h3 { font-size: 1.35rem; margin: 1.25rem 0 .75rem; }
.entry-content p { color: var(--stone-700); margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; color: var(--stone-700); margin-bottom: 1rem; }
.entry-content li { margin-bottom: .35rem; }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; background: var(--gold-pale); margin: 1.5rem 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.entry-content blockquote p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink); margin: 0; }

/* ─── FOOTER ─── */
.site-footer { background: var(--ink); color: var(--stone-500); }
.footer-top { padding-block: 4rem; }
.footer-top .container { display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-top .container { grid-template-columns: 260px 1fr 1fr; } }
.footer-logo-text { margin-bottom: .75rem; }
.footer-logo-text .logo-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); display: block; }
.footer-logo-text .logo-tagline { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-700); }
.footer-desc { font-size: .82rem; color: var(--stone-500); line-height: 1.8; margin-top: .75rem; }
.footer-contact-info { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .35rem; }
.footer-info-link { font-size: .8rem; color: var(--stone-500); display: flex; align-items: center; gap: .5rem; }
.footer-info-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social a { color: var(--stone-700); transition: color var(--ease); }
.footer-social a:hover { color: var(--gold); }
.footer-brand img { height: 44px; width: auto; margin-bottom: .75rem; }
.footer-links h4, .footer-contact h4 { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-700); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 400; }
.footer-nav { display: flex; flex-direction: column; gap: .3rem; }
.footer-nav a, .footer-nav .nav-link { font-size: .82rem; color: var(--stone-500); display: block; padding: .2rem 0; transition: color var(--ease); }
.footer-nav a:hover, .footer-nav .nav-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; font-size: .72rem; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: var(--stone-500); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── MOBILE CTA BAR ─── */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  height: var(--cta-bar-h);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
.mobile-cta-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone-300); text-decoration: none; transition: color var(--ease); }
.mobile-cta-item:hover { color: #fff; }
.mobile-cta-wa { background: #25D366; color: #fff; }
.mobile-cta-wa:hover { background: #1ead56; color: #fff; }

/* ─── 404 ─── */
.error-404 { text-align: center; padding-block: 6rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.error-404 .error-num { font-family: var(--font-display); font-size: clamp(5rem,15vw,10rem); color: var(--stone-200); font-weight: 300; line-height: 1; }

/* ─── SEARCH ─── */
.search-header { background: var(--ink); padding-block: 3rem; }
.search-header h1 { color: var(--white); }
.search-header em { color: var(--gold); font-style: normal; }

/* ─── UTILITIES ─── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }

@media print {
  .site-header, .mobile-cta-bar, .footer-bottom, .prop-sidebar { display: none; }
}
