/* =========================================================
   THEME + BASE
========================================================= */
:root{
  --brand: #998473;
  --text: #1b1b1b;
  --muted: #5b6472;
  --line: rgba(0,0,0,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.12);
  --radius: 18px;
  --section-spacing: 50px;
  --page-bg: #fcfbfa;

  --max: 1100px;
  --wide: 1500px;

  --header-h: 76px;
  --page-hero-h: 450px;

  /* NEW – Home hero sizing */
  --home-hero-h: 100vh;
  --home-hero-pad-top: calc(var(--header-h) + 28px);

  --font-body: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-head: "Cinzel", Georgia, "Times New Roman", serif;
}

@supports (height: 100svh){
  :root{ --home-hero-h: 100svh; }
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.5;
}

h1,h2,h3,h4{
  font-family: var(--font-head);
  letter-spacing: .02em;
  margin: 0;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.dc-wide{
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 18px;
}

.page-section{
  margin: 0;
  padding: 0;
  padding-top: var(--section-spacing);
}

.page-section:first-of-type{
  padding-top: 0;
}

/* =========================================================
   HEADER (single source of truth)
========================================================= */
.brand{ display:flex; align-items:center; }

.site-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;

  background: transparent;
  border: 0;
  box-shadow: none;

  height: var(--header-h);
}

/* Make .container and .dc-wide behave identically in header */
.site-header .container,
.site-header .dc-wide{
  max-width: var(--wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo{
  height: 56px;
  width: auto;
  display: block;
  transition: transform .2s ease;
}
.site-header:hover .brand-logo{ transform: scale(1.02); }

/* Nav */
.site-nav{
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
}

.site-nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 16px;

  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;

  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  line-height: 1;

  transition: background .2s ease, border-color .2s ease;
}

.site-nav a:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.18);
}

.site-nav a.active{
  background: var(--brand);
  border-color: rgba(255,255,255,.20);
}

/* Optional contact-link pill */
.contact-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 16px;
  border-radius: 999px;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
}
.contact-link:hover{
  background: rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.30);
}

/* Home-specific */
.home .brand-logo{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.home .contact-link{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

/* =========================================================
   HOME HERO (full screen)
========================================================= */
.hero{
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--section-spacing);
}

.hero--full{
  min-height: var(--home-hero-h);
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 0;
}

.hero-content{
  transform: translateY(-50px);
}

.hero-bg{
  position: absolute;
  inset: 0;
  background: url("https://pub-ab596235a0b44f2d8d40325dcf71ff74.r2.dev/homepage/Hero.png") center / cover no-repeat;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.25));
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

.hero-kicker{
  font-family: var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-title{
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 76px);
  margin: 0 0 14px;
  line-height: 1.05;
}

.hero-sub{
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   FIND BAR OVER HERO
========================================================= */
.hero-findbar{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hero-findbar .findbar{
  background: linear-gradient(
    135deg,
    #a38c7b 0%,
    #8b7668 45%,
    #6e5d51 100%
  );
  backdrop-filter: blur(6px);
  padding: 34px 0;
}

.hero-findbar .findbar__inner{
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-findbar .findbar__btn{
  font-family: var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;

  padding: 18px 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);

  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.hero-findbar .findbar__btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.28);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.hero-findbar .findbar__btn:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

@media (max-width: 768px){
  :root{
    --home-hero-pad-top: calc(var(--header-h) + 24px);
  }

  .hero-title{
    font-size: clamp(32px, 8vw, 52px);
  }
}


/* =========================================================
   FORMS (global)
========================================================= */
.field{
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #444;
  font-family: var(--font-body);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: #111;
  outline: none;
  font-family: var(--font-body);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(153,132,115,.55);
  box-shadow: 0 0 0 3px rgba(153,132,115,.18);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(153,132,115,.18);
  border: 1px solid rgba(153,132,115,.35);
  font-weight: 650;
  font-family: var(--font-body);
  cursor: pointer;
}

.btn-ghost{
  background: transparent;
  border: 1px solid var(--line);
}

.btn-primary{
  background: #998471;
  color: #fff;
  border: none;
}
.btn-primary:hover{ background: #887260; }

/* =========================================================
   FIND MODAL
========================================================= */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}

.modal.is-open{ display: block; }

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__panel{
  position: relative;
  margin: 72px auto;
  width: min(920px, calc(100% - 28px));
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow: visible;
}

.modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 10px;
}

.modal__title{
  margin: 0;
  font-size: 26px;
  font-family: var(--font-head);
  letter-spacing: .02em;
}

.modal__close{
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
}

.modal__form{ padding: 10px 26px 26px; }

.modal__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 10px;
}

.modal__form .field{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #666;
}

.modal__form input,
.modal__form select{
  appearance: none;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.modal__form select{
  padding-right: 52px;
  background:
    #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23998473'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 18px center;
  background-size: 16px;
  cursor: pointer;
}

.modal__form input:focus,
.modal__form select:focus{
  outline: none;
  border-color: rgba(153,132,115,.65);
  box-shadow: 0 0 0 4px rgba(153,132,115,.25);
  transform: translateY(-1px);
}

.modal__actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.modal__actions .btn{
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 750;
}

.modal__actions .btn-primary{
  background: #998473;
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.modal__actions .btn-primary:hover{
  background: #887260;
  transform: translateY(-1px);
}

.modal__actions .btn-ghost{
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  color: #222;
}
.modal__actions .btn-ghost:hover{ background: rgba(0,0,0,.05); }

@media (max-width: 680px){
  .modal__grid{ grid-template-columns: 1fr; }

  .modal__panel{
    margin: calc(var(--header-h) + 12px) auto 12px;
    max-height: calc(100svh - var(--header-h) - 24px);

    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .modal__head{ flex: 0 0 auto; }

  .modal__form{
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal__head{ padding: 18px 18px 8px; }
  .modal__form{ padding: 8px 18px 18px; }
  .modal__actions{ justify-content: center; }
}

.modal__panel{
  --dc-pill-h: 48px;             
  --dc-pill-px: 18px;              
  --dc-pill-fs: 14px;            
  --dc-pill-fw: 400;
  --dc-pill-color: #111;

  --dc-pill-border: rgba(0,0,0,.12); 
  --dc-pill-bg: #fff;              
  --dc-pill-shadow: none;       
  --dc-arrow-color: rgba(153,132,115,.9);

  --dc-focus-ring: 0 0 0 4px rgba(153,132,115,.25); 
}

.modal__panel .dc-select__btn:hover{
  transform: none;
  box-shadow: none;
}

.modal__panel .dc-select__btn:focus,
.modal__panel .dc-select__btn[aria-expanded="true"]{
  transform: translateY(-1px);
}

/* =========================================================
   PROFILE — SECTION HEADING
========================================================= */
.section-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 18px;
}

.section-kicker{
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(17,17,17,.55);
}

.section-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: #111;
}

.section-sub{
  margin: 12px auto 0;
  max-width: 70ch;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(17,17,17,.70);
  line-height: 1.75;
}

/* =========================================================
   PROFILE — FIXED PREMIUM CARD (no lift)
========================================================= */
.profile-card{
  margin: 0;
  background: transparent;
  font-family: var(--font-body);
}

.profile-card-surface{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.profile-card-surface:hover{
  box-shadow: 0 22px 64px rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.10);
}

.profile-card-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 36px;
}

.profile-image{ 
  flex: 1 1 320px; 
  text-align: center; 
}

.profile-image img{
  width: 420px;
  height: 420px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Only image subtly scales */
.profile-card-surface:hover .profile-image img{
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.profile-content{ flex: 2 1 420px; }

.profile-content h2{
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-content h3{
  font-weight: 400;
  color: #555;
  margin-top: 0;
  font-family: var(--font-body);
}

.profile-content p{
  font-size: 16px;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin: 20px 0;
  font-family: var(--font-body);
}

.profile-content a{ 
  color: var(--brand); 
  text-decoration: none; 
}

.profile-social a{ margin-right: 10px; }

.profile-social img{
  width: 24px;
  height: 24px;
  filter: invert(36%) sepia(8%) saturate(626%)
          hue-rotate(353deg) brightness(91%) contrast(88%);
}

@media (max-width: 768px){
  .profile-image img{
    width: 320px;
    height: 320px;
  }
}

/* =========================
   SHARED MODULE CARD (same as Areas panel)
========================= */
.module-card{
  max-width: var(--wide);
  margin: 32px auto 0;

  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);

  padding: 48px 36px;
  overflow: visible;
}

/* Mobile */
@media (max-width: 640px){
  .module-card{ padding: 20px; border-radius: 18px; }
}

/* =========================================================
   AREA SECTION
========================================================= */

/* Section */
.areas-section{
  background: transparent;

  /* DC Select pill size for this section */
  --dc-pill-h: 64px;
  --dc-pill-px: 24px;
  --dc-pill-fs: 16px;
  --dc-pill-fw: 400;
}

/* Headings */
.areas-section .map-title,
.areas-section .map-sub{
  text-align: center;
}
.areas-section .map-sub{
  margin-left: auto;
  margin-right: auto;
  max-width: 65ch;
}

.areas-panel{
  margin: 18px auto 0;
  max-width: var(--wide);

  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);

  padding: 48px 36px;
  position: relative;
  overflow: visible;
  text-align: center;
}

/* Label above pill */
.areas-label{
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(17,17,17,.62);
  margin: 0 0 12px;
  text-align: center;
}

/* Width of the select pill inside the panel */
.areas-selectWrap{
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Force the upgraded DC button to use the section variables */
.areas-section .dc-select__btn{
  height: var(--dc-pill-h);
  padding: 0 var(--dc-pill-px);
  font-size: var(--dc-pill-fs);
  font-weight: var(--dc-pill-fw);
}

/* Optional helper text below (if you use it) */
.area-selected{
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(17,17,17,.55);
}
.area-selected span{ color: #111; }

/* =========================================================
   AREA REVEAL — Premium Single Card (keep your HTML)
========================================================= */

.area-card--full{
  margin-top: 18px;
  padding: 0;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}

.area-card--full.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.area-card__inner{
  margin: 0;
  padding: 26px 10px 10px;

  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;

  border-top: 1px solid rgba(0,0,0,.08);
}

.area-kicker{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(17,17,17,.55);
  margin-bottom: 14px;
}

.area-title{
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  margin: 0 0 18px;
  color: #111;
}

.area-intro{
  max-width: 72ch;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(17,17,17,.72);
  font-weight: 300;
}

.area-text{
  max-width: 72ch;
  margin: 0 auto 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(17,17,17,.70);
  font-weight: 300;
}

/* Bottom area is NOT a separate card */
.area-bottomCard{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.area-availability{
  margin: 0 auto 18px;
  max-width: 70ch;
  font-size: 14px;
  color: rgba(17,17,17,.62);
}

.area-availability a{
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,.35);
  padding-bottom: 1px;
}
.area-availability a:hover{
  border-color: rgba(17,17,17,.65);
}

.area-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 22px;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;

  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);

  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.area-cta:hover{
  transform: translateY(-1px);
  background: #887260;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}

.area-cta::after{ content: none; }

@media (max-width: 640px){
  .areas-panel{ padding: 20px; border-radius: 18px; }
  .area-card__inner{ padding: 18px 6px 8px; }
}

/* =========================================================
   DC SELECT (Reusable Premium Dropdown)
========================================================= */
:root{
  /* Defaults = light pages / modal */
  --dc-pill-h: 44px;
  --dc-pill-px: 16px;
  --dc-pill-fs: 15px;
  --dc-pill-fw: 400;
  --dc-pill-color: #111;

  --dc-pill-border: rgba(0,0,0,.14);
  --dc-pill-bg: linear-gradient(180deg,#fff 0%, #f7f7f7 100%);
  --dc-pill-shadow: 0 10px 30px rgba(0,0,0,.06);

  --dc-arrow-color: rgba(0,0,0,.55);
  --dc-focus-ring: 0 0 0 6px rgba(0,0,0,.06);
}

.dc-select{ position: relative; width: 100%; }

.dc-native-select{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.dc-select__btn{
  width: 100%;
  height: var(--dc-pill-h);
  padding: 0 var(--dc-pill-px);

  border-radius: 999px;
  border: 1px solid var(--dc-pill-border);
  background: var(--dc-pill-bg);
  box-shadow: var(--dc-pill-shadow);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;

  font-family: var(--font-body);
  font-size: var(--dc-pill-fs);
  font-weight: var(--dc-pill-fw);
  color: var(--dc-pill-color);
  text-align: left;
}

.dc-select__btn:hover{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

.dc-select__btn:focus{
  outline: none;
  border-color: rgba(0,0,0,.38);
  box-shadow: 0 14px 44px rgba(0,0,0,.12), var(--dc-focus-ring);
}

.dc-select__value{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dc-select__arrow{
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dc-arrow-color);
  border-bottom: 2px solid var(--dc-arrow-color);
  transform: rotate(45deg);
  opacity: .9;
  flex: 0 0 auto;
}

/* Keep dropdown list globally consistent */
.dc-select__list{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 2000;

  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);

  padding: 8px;
  max-height: 320px;
  overflow: auto;
}

.dc-select__opt{
  width: 100%;
  text-align: left;
  padding: 12px 12px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;

  font-family: var(--font-body);
  font-size: 15px;
  color: #111;

  transition: background .15s ease;
}

.dc-select__opt:hover,
.dc-select__opt:focus{
  outline: none;
  background: rgba(0,0,0,.06);
}

.dc-select__opt[aria-selected="true"]{
  background: rgba(0,0,0,.08);
}


/* =========================================================
   LISTINGS (WordPress match)
========================================================= */
.dc-custom-section{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: stretch;

  width: 100%;
  max-width: 100%;
  margin: 0;
}

.home-explore .dc-listing > .dc-wide{
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.dc-left-panel{
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
  background: none !important;
}

.dc-left-top{
  background: #998471 !important;
  background-image: none !important;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.dc-left-top h2{
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.dc-left-top p{
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 25px;
}

.dc-left-top .dc-button{
  font-family: var(--font-body);
  display: inline-block;
  background: #ffffff;
  color: #998471;

  padding: 14px 32px;       
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;     
  transition: 0.25s ease;

  width: fit-content;
  white-space: nowrap;      
}

.dc-left-top .dc-button:hover{
  background: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.dc-left-bottom{ flex: 1; }
.dc-left-bottom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dc-right-panel{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.dc-property-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.dc-property-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.dc-property-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s;
}
.dc-property-card:hover img{ transform: scale(1.05); }

.dc-card-content{
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dc-card-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.dc-card-type{
  font-size: 14px;
  color: #998471;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.dc-card-price{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  font-family: var(--font-body);
}

.dc-card-features{
  font-size: 14px;
  color: #555;
  font-family: var(--font-body);
}

.dc-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: #998471;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-body);
}

@media (max-width: 900px){
  .dc-custom-section{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
  .dc-right-panel{ grid-template-columns: 1fr !important; }
}

/* =========================================================
   CALLOUT + TRUST
========================================================= */

.callout{
  padding: var(--section-spacing) 0 20px;
}

.trust{
  padding: 20px 0 var(--section-spacing);
}

/* =========================
   CALLOUT (Oops section)
========================= */
.callout-card{
  width: 100%;
  margin: 0 auto;
  text-align: center;

  background: #fff;
  border-radius: 18px;
  padding: 38px 34px;

  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.callout-card h2{
  font-family: var(--font-head);
  margin: 0 0 12px;
  color: #333;
}

.callout-card p{
  font-family: var(--font-body);
  color: #555;
  line-height: 1.6;
  margin: 0 0 18px;
}


/* =========================
   TRUST SECTION
========================= */
.trust-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  padding: 38px 34px;
  border-radius: 18px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover{
  box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}

.trust-left h2{
  font-family: var(--font-head);
  margin: 0 0 8px;
  color: #333;
}

.trust-left p{
  margin: 0;
  font-family: var(--font-body);
  color: #555;
}

.trust-right{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust-rating{
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-body);
}

.trust-left .trust-rating{
  margin: 12px 0 8px;
}

.trust-stars{
  letter-spacing: 0.18em;
  font-size: 18px;
  color: #f2b01e;
}

.trust-score{
  font-weight: 800;
  font-size: 18px;
  color: #333;
}

.trust-count{
  font-size: 14px;
  color: #666;
}

.trust-text{
  margin: 0 0 14px;
  line-height: 1.6;
  color: #333;
}

.trust-author{
  margin: 0;
  font-weight: 600;
  color: #333;
  opacity: 0.85;
}

@media (max-width: 900px){
  .trust-card{
    flex-direction: column;
    text-align: center;
  }

  .trust-right{
    justify-content: center;
  }
}

/* =========================
   TRUST SECTION — REVIEWS LAYOUT EXTENSION
========================= */

.trust-card--reviews{
  align-items: stretch;
}

.trust-card--reviews .trust-left{
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-card--reviews .trust-rating{
  margin-top: 6px;
}

.trust-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

.trust-link:hover{
  text-decoration: underline;
}

.trust-reviews{
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.trust-review{
  margin: 0;
  padding: 22px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);

  transition: border-color 0.25s ease;
  border-top: 3px solid #998473;
}

.trust-review:hover{
  border-color: rgba(0,0,0,0.12);
}

.trust-review blockquote{
  position: relative;
  margin: 0 0 14px;
  padding: 12px 0;
  line-height: 1.6;
}

.trust-review figcaption{
  font-family: var(--font-body);
  font-weight: 600;
  color: #333;
  opacity: 0.8;
}

/* Responsive: stack + single column */
@media (max-width: 900px){
  .trust-card--reviews .trust-left{
    flex: 1 1 auto;
    align-items: center;
  }

  .trust-reviews{
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* Mobile: swipeable cards (premium feel, less tall) */
@media (max-width: 560px){
  .trust-reviews{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;

    padding: 2px 2px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .trust-review{
    scroll-snap-align: start;
  }

  /* optional: hide scrollbar but keep scroll */
  .trust-reviews::-webkit-scrollbar{
    height: 0;
  }
}

/* =========================
   TRUST CAROUSEL DOTS
========================= */

.trust-dots{
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.trust-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.trust-dot.active{
  background: #333;
  transform: scale(1.2);
}

/* Show only on mobile */
@media (max-width: 560px){
  .trust-dots{
    display: flex;
  }
}

/* =========================
   TRUST — STACKED LAYOUT (keeps mobile carousel + dots)
   Add this at the END of your trust CSS
========================= */

.trust-card--stack{
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
}

.trust-card--stack .trust-head{
  max-width: 760px; /* optional: keeps header readable */
}

.trust-card--stack .trust-rating{
  margin: 12px 0 0;
}

/* Desktop grid of cards */
.trust-card--stack .trust-reviews{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Cards: premium, no shadow, consistent height feel */
.trust-card--stack .trust-review{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px; /* tweak if you want */
}

/* CTA row under cards (still inside main card) */
.trust-card--stack .trust-foot{
  display: flex;
  justify-content: flex-end;
}

/* Tablet: single column */
@media (max-width: 900px){
  .trust-card--stack{
    text-align: center;
  }

  .trust-card--stack .trust-foot{
    justify-content: center;
  }

  .trust-card--stack .trust-reviews{
    grid-template-columns: 1fr;
  }
}

/* Mobile: keep carousel (1 card at a time) */
@media (max-width: 560px){
  .trust-card--stack .trust-reviews{
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 8px;
  }

  .trust-card--stack .trust-review{
    scroll-snap-align: start;
    min-height: 190px;
  }
}


/* =========================================================
   BRAND HERO — Premium Gradient
   Mortgages + Properties
========================================================= */
.mort-hero,
.props-hero{
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255,255,255,0.08),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #998473 0%,
      #7e6a5d 50%,
      #5f4e43 100%
    );

  color: #fff;

  min-height: var(--page-hero-h);
  padding: 0px;

  display: flex;
  align-items: center;
  text-align: center;

  position: relative;
}


.mort-hero__content,
.props-hero > .dc-wide,
.props-hero > .hero-inner,
.days-hero > .dc-wide{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

.mort-hero__content,
.props-hero > .dc-wide,
.props-hero > .hero-inner,
.days-hero > .dc-wide{
  padding-top: calc(var(--header-h) + 18px);
}

/* =========================================================
   90 DAYS HERO tweaks
   Bigger heading + white primary + white outline ghost
========================================================= */

.days-hero .days-title{
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  margin: 0;
  max-width: 980px;
}

.days-hero .days-kicker{
  letter-spacing: .18em;
  opacity: .9;
  margin: 0 0 10px;
}

.days-hero .days-sub{
  margin: 10px 0 0;
  max-width: 760px;
  opacity: .92;
}

/* Center subtitle + push actions lower */
.days-hero .days-sub{
  max-width: 680px;
}

.days-hero .days-actions{
  display: flex;             
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  margin-top: 18px;
  gap: 12px;                  
}

.days-hero > .dc-wide,
.days-hero .days-hero__inner{
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
}

/* =========================================================
   INVESTMENTS PAGE
========================================================= */
.invest-hero .invest-actions{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  margin-top: 18px;   
  gap: 12px;         
}

/* Center inner content, not the whole card */
.enquiry-card__inner.enquiry-card--center{
  max-width: 520px;
  margin: 120px auto 0;
  text-align: center;
}

.enquiry-card__inner.enquiry-card--center .enquiry-actions{
  justify-content: center;
}

/* Optional: nice spacing on the note */
.enquiry-note{
  margin: 0 auto 18px;
  color: #555;
}

/* =========================================================
   MORTGAGES PAGE
========================================================= */
.mort-hero__kicker{
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: .92;
}

.mort-hero__title{
  font-family: var(--font-head);
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
}

.mort-hero__sub{
  font-family: var(--font-body);
  margin: 0 auto;
  max-width: 75ch;
  opacity: .92;
}

.mort-hero__actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO BUTTONS (Mortgages + 90 Days) */
.mort-hero .btn-primary,
.days-hero .btn-primary{
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(255,255,255,.35);
}
.mort-hero .btn-primary:hover,
.days-hero .btn-primary:hover{
  background: rgba(255,255,255,.92);
}

.mort-hero .btn-ghost,
.days-hero .btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.mort-hero .btn-ghost:hover,
.days-hero .btn-ghost:hover{
  background: rgba(255,255,255,.14);
}

.mort-quote{
  margin: 0 auto;
  max-width: 85ch;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

.mort-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.mort-card{
  background:#fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 22px 20px;
}

.mort-card h2{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 20px;
  color: #333;
}

.mort-card p{
  margin: 0;
  font-family: var(--font-body);
  color:#555;
  line-height: 1.7;
}

.mort-center{ text-align: center; }

.mort-center__sub{
  margin: 0 auto 24px;
  max-width: 70ch;
  color: #555;
  font-family: var(--font-body);
}

.mort-center__box{
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
  padding: 26px;
}

.mort-highlight{
  display:flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.mort-highlight:first-of-type{ border-top: 0; padding-top: 0; }

.mort-pill{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(153,132,115,.18);
  border: 1px solid rgba(153,132,115,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #998471;
  flex: 0 0 auto;
}

.mort-highlight h3{
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-weight: 800;
}

.mort-highlight p{
  margin: 0;
  color:#555;
  line-height: 1.7;
  font-family: var(--font-body);
}

.mort-link{
  display:inline-block;
  margin-top: 10px;
  color:#998471;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
}

@media (max-width: 900px){
  .mort-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   LUXURY GET IN TOUCH (existing)
========================================================= */
.lux-contact{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.14);
  overflow: hidden;
}

.lux-contact__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.lux-contact__details{
  background: var(--brand);
  color: #fff;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lux-contact__details a{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.lux-contact__details a:hover{ text-decoration: underline; }

.lux-item{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.lux-item:last-of-type{ border-bottom: 0; }

.lux-label{
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255,255,255,.85);
}

.lux-left-title{
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: .05em;
}

.lux-left-sub{
  margin: 0 0 26px;
  font-family: var(--font-body);
  color: rgba(255,255,255,.92);
  line-height: 1.65;
  max-width: 42ch;
}

.lux-note{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.lux-contact__form{
  background: #fcfbfa;
  padding: 30px 28px;
}

.lux-contact__form .field{
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #666;
}

.lux-contact__form input,
.lux-contact__form select,
.lux-contact__form textarea{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px 14px;
  font-family: var(--font-body);
  transition: border .2s ease, box-shadow .2s ease, transform .15s ease;
}

.lux-contact__form input:focus,
.lux-contact__form select:focus,
.lux-contact__form textarea:focus{
  border-color: rgba(153,132,115,.70);
  box-shadow: 0 0 0 4px rgba(153,132,115,.22);
  outline: none;
}

.lux-contact__actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
  flex-wrap: wrap;
}

.lux-contact__actions .btn-primary{
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  border-radius: 999px;
  padding: 12px 18px;
}
.lux-contact__actions .btn-primary:hover{
  background: #8a7566;
  transform: translateY(-1px);
}

.lux-contact__actions .btn-ghost{
  background: #fff;
  color: #333;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 12px 18px;
}
.lux-contact__actions .btn-ghost:hover{ background: rgba(0,0,0,.04); }

@media (max-width: 900px){
  .lux-contact__grid{ grid-template-columns: 1fr; }
  .lux-contact__actions{ justify-content: center; }
}

/* =========================================================
   PROPERTIES PAGE
========================================================= */
.props-kicker{
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: .9;
}

.props-title{
  font-family: var(--font-head);
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.props-sub{
  margin: 0 auto;
  max-width: 75ch;
  font-family: var(--font-body);
  opacity: .92;
}

.props-filter__label{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
  font-family: var(--font-body);
}

.props-filter__select{
  width: 100%;
  appearance: none;

  height: 44px;
  padding: 0 44px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);

  background:
    rgba(255,255,255,.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  background-size: 16px;

  color: #fff;
  font-family: var(--font-body);
  cursor: pointer;

  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.props-filter__select option{ color: #111; }

.props-controls{
  margin: 26px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: 220px 220px 1fr;
  gap: 14px;
  align-items: end;
  text-align: left;
}

.props-controls__row{ display: grid; gap: 8px; }
.props-controls__search{ min-width: 240px; }

.props-search{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-family: var(--font-body);
  outline: none;
}
.props-search::placeholder{ color: rgba(255,255,255,.78); }

.props-controls__count{
  font-family: var(--font-body);
  opacity: .92;
  padding-bottom: 6px;
}

@media (max-width: 980px){
  .props-controls{
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
  }

  .props-controls__search{
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px){
  .props-controls{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

.props-resultsbar{
  max-width: 980px;
  margin: 32px auto 18px;
  padding: 0 10px;

  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #777;
}

.props-resultsbar #resultsCount{
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.props-resultsbar #resultsCount strong{
  color: #222;
  font-weight: 800;
  letter-spacing: 0;
}

.props-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.props-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.props-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

/* Fixed image container */
.props-card__media{
  position: relative;
  height: 280px;        /* your chosen size */
  overflow: hidden;
  background: #f3f3f3;  /* fallback colour */
}

/* Force image to fill perfectly */
.props-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .25s ease;
}

.props-card:hover .props-card__media img{
  transform: scale(1.04);
}

.props-card__media{
  width: 100%;
  flex: 0 0 auto; 
  height: 280px;
  overflow: hidden;
  background: #f3f3f3;
  position: relative;
}

.props-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.props-card:hover img{ transform: scale(1.04); }

.props-card__body{
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.props-card__bottom{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.props-card__price,
.props-card__meta,
.props-card__location{
  font-family: var(--font-body);
  color: rgba(17,17,17,.70);
}

.props-card__title{
  font-family: var(--font-head);
  font-size: 18px;
  margin: 0 0 6px;
  color: #222;
}

.props-card__meta{
  margin: 0;            
  display: flex;
  gap: 18px;
  font-size: 12px;
  align-items: center;
}

.props-meta-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(17,17,17,.75);
  font-weight: 500;
}

.props-icon{
  font-size: 15px;
  opacity: .85;
}

.props-card__location{
  margin: 0;           
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.props-pin{
  font-size: 14px;
  line-height: 1;
}

.props-card__price{
  margin: 0;       
  font-weight: 650;
  color: rgba(17,17,17,.80); 
}

.props-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}

@media (max-width: 980px){
  .props-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .props-grid{ grid-template-columns: 1fr; }
}

/* Let the custom dropdown list escape the grid/hero */
.props-controls,
.props-controls__row,
.props-hero,
.props-hero .hero-inner{
  overflow: visible;
}

/* Properties hero: frosted dark theme pills */
.props-hero{
  --dc-pill-h: 44px;
  --dc-pill-px: 16px;
  --dc-pill-fs: 14px;
  --dc-pill-fw: 400;
  --dc-pill-color: #fff;

  --dc-pill-border: rgba(255,255,255,.28);
  --dc-pill-bg: rgba(255,255,255,.14);
  --dc-pill-shadow: none;

  --dc-arrow-color: rgba(255,255,255,.85);
  --dc-focus-ring: 0 0 0 3px rgba(255,255,255,.18);
}

/* Optional: ensure dropdown sits above cards */
.dc-select__list{
  z-index: 2000;
}

/* =========================================================
   ENQUIRY / CONTACT PAGE (new)
========================================================= */

/* -------------------------
   HERO
-------------------------- */
.page-hero{
  background: var(--brand);
  color: #fff;
  height: var(--page-hero-h);
  display: flex;
  align-items: center;
  text-align: center;
}

.page-hero__content{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
  padding-top: calc(var(--header-h) + 18px);
}

.page-hero__kicker{
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: .92;
}

.page-hero__title{
  font-family: var(--font-head);
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
}

.page-hero__sub{
  font-family: var(--font-body);
  margin: 0 auto;
  max-width: 75ch;
  opacity: .92;
}

/* -------------------------
   ENQUIRY LAYOUT
-------------------------- */
.enquiry-shell{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.14);
}

.enquiry-aside{
  background: var(--brand);
  color: #fff;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-aside a{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.enquiry-aside a:hover{ text-decoration: underline; }

.enquiry-aside__title{
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: .05em;
}

.enquiry-aside__sub{
  margin: 0 0 26px;
  font-family: var(--font-body);
  color: rgba(255,255,255,.92);
  line-height: 1.65;
  max-width: 42ch;
}

.enquiry-aside__item{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  display: grid;
  gap: 6px;
}
.enquiry-aside__item:last-of-type{ border-bottom: 0; }

.enquiry-aside__label{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.enquiry-aside__note{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.enquiry-card{
  background: #fcfbfa;
  padding: 34px 32px;                
}

/* -------------------------
   TYPOGRAPHY CONSISTENCY
-------------------------- */
.enquiry-form .field,
.enquiry-legend{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #555;
}

.enquiry-form :is(input, select, textarea, .dc-select__btn, .dc-select__value){
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
}


/* -------------------------
   INPUTS
-------------------------- */
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px 14px;
  transition: border .2s ease, box-shadow .2s ease, transform .15s ease;
}

/* normal selects (not JS-enhanced) get a clean arrow */
.enquiry-form select:not(.dc-native-select){
  appearance: none;
  padding-right: 44px;
  background:
    #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555555'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  background-size: 16px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus{
  border-color: rgba(153,132,115,.70);
  box-shadow: 0 0 0 4px rgba(153,132,115,.22);
  outline: none;
  transform: translateY(-1px);
}

/* -------------------------
   SPACING / RHYTHM (NEW)
   makes the form feel less crowded
-------------------------- */
.enquiry-form .field{
  margin-bottom: 20px;         
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.enquiry-form .dc-select__btn{
  margin-top: 6px;                
}

.enquiry-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;             
  margin-bottom: 6px;                
}

.enquiry-group{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px;          
  margin: 0 0 22px;     
}

.enquiry-inline{ margin-top: 12px; }

.enquiry-form textarea{
  min-height: 140px;     
  padding: 16px;
}

/* -------------------------
   PREMIUM RADIO (NO MINI CARDS)
   (keeps fieldset as the single card)
-------------------------- */
.enquiry-radio{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 6px;             
  font-family: var(--font-body);
  font-size: 15px;
  color: #222;
}

.enquiry-radio label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 6px;             
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}

.enquiry-radio label:hover{
  background: rgba(153,132,115,.08);
  color: #111;
}

.enquiry-radio input[type="radio"]{
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

/* -------------------------
   ACTIONS
-------------------------- */
.enquiry-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 26px;                   /* ↑ more separation before buttons */
  flex-wrap: wrap;
}

.enquiry-response{
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: #333;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 900px){
  .enquiry-shell{ grid-template-columns: 1fr; }
  .enquiry-card{ padding: 26px 20px; } /* keep comfy on mobile */
  .enquiry-actions{ justify-content: center; }
  .enquiry-grid{ grid-template-columns: 1fr; }
}


/* =========================================================
   90 DAYS (form-width content block)
   Makes the sales text match the form width (900px)
========================================================= */
.form-width{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.form-width + .form-width{ margin-top: 30px; } /* if you stack blocks */

.campaign-copy{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(0,0,0,.10);
  padding: 34px 34px;
}

.campaign-copy p{
  margin: 0 0 14px;
  color: #444;
  line-height: 1.75;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
}

.campaign-copy p:last-child{ margin-bottom: 0; }

.campaign-copy h2{
  margin: 26px 0 12px;
  font-family: var(--font-head);
  color: #333;
  font-size: 22px;
}

.campaign-copy ul,
.campaign-copy ol{
  margin: 0 0 18px 18px;
  color: #444;
  line-height: 1.75;
}

.campaign-copy li{ margin: 8px 0; }

.campaign-copy .highlight{
  background: #f1ebe4;
  border-left: 5px solid #998471;
  border-radius: 14px;
  padding: 18px 18px;
  margin: 18px 0 20px;
}

@media (max-width: 768px){
  .campaign-copy{ padding: 22px 18px; }
}

/* ============================
   BLOG PAGE — Premium Styling
   ============================ */

.blog-hero .mort-hero__content {
  text-align: center;           
  margin: 0 auto;
  max-width: 820px;            
}

.blog-hero .mort-hero__sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

/* Main content shell */
.blog-shell {
  padding: 28px 0 64px;
}

/* Controls row */
.blog-topbar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 18px;
}

/* Search bar */
.blog-search {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.blog-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  font: inherit;
}

.blog-search input::placeholder {
  opacity: 0.75;
}

/* Controls inside hero */
.blog-hero__controls {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;

  /* animation */
  animation: heroFadeUp .4s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search bar (premium glass style) */
.blog-hero__controls .blog-search {
  width: 100%;
  max-width: 520px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.blog-hero__controls .blog-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
}

.blog-hero__controls .blog-search input::placeholder {
  color: rgba(255,255,255,0.8);
}

/* Filter chips */
.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-chip {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: inherit;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.blog-chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.blog-chip[aria-pressed="true"] {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.24);
}

/* Sections */
.blog-section {
  margin-top: 26px;
}

.blog-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.blog-section__title {
  font-family: "Cinzel", serif;
  font-size: 22px;
  margin: 0;
}

.blog-section__hint {
  font-size: 13px;
  opacity: 0.72;
}

/* Status / empty */
.blog-status,
.blog-empty {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  opacity: 0.92;
  line-height: 1.6;
}

/* Grid layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Cards */
.blog-card {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  min-height: 240px;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}

/* Featured: wider card */
.blog-card--featured {
  grid-column: span 6;
  min-height: 320px;
}

/* Media */
.blog-card__media {
  width: 100%;
  height: 300px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* No-image placeholder */
.blog-card__media--noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.blog-card__media--noimg .noimg {
  width: 100%;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  padding: 18px;
  text-align: left;
}

.noimg__kicker {
  letter-spacing: 0.18em;
  font-size: 11px;
  opacity: 0.8;
}

.noimg__title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  margin: 8px 0 0;
  opacity: 0.95;
}

/* Body */
.blog-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Meta row */
.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 12px;
  opacity: 0.75;
}

/* Category pill */
.blog-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  white-space: nowrap;
}

.blog-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}

/* Category accents */
.blog-pill--market_insights .blog-dot { background: #998471; }
.blog-pill--area_guides .blog-dot { background: #6b7c93; }
.blog-pill--buying_selling .blog-dot { background: #b08968; }
.blog-pill--legal_updates .blog-dot { background: #9c6644; }
.blog-pill--lifestyle .blog-dot { background: #52796f; }
.blog-pill--personal_insights .blog-dot { background: #6d597a; }

/* Title & excerpt */
.blog-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  margin: 0;
  line-height: 1.18;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
}

.blog-title a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-excerpt {
  margin: 0;
  opacity: 0.85;
  line-height: 1.55;
  font-size: 14px;
}

/* CTA */
.blog-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.92;
  text-decoration: none;
  color: inherit;
}

.blog-cta:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 980px) {
  .blog-card { grid-column: span 6; }
  .blog-card--featured { grid-column: span 12; }
}

@media (max-width: 640px) {
  .blog-card { grid-column: span 12; }
  .blog-search { min-width: 100%; }
}


/* =========================================================
   FOOTER (Premium)
========================================================= */
.footer{
  background: linear-gradient(
    135deg,
    #a38c7b 0%,
    #8b7668 45%,
    #6e5d51 100%
  );
  color: #fff;
  padding: 54px 0 18px;
  margin-top: 50px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo{
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

.footer-title{
  font-family: var(--font-head);
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: .03em;
  color: #fff;
}

.footer-text{
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 52ch;
}

.footer-link{
  display: block;
  color: rgba(255,255,255,.92);
  font-family: var(--font-body);
  margin: 9px 0;
  text-decoration: none;
}

.footer-link.inline{ display: inline; margin: 0; }

.footer-link:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
}

.footer-social img{
  width: 18px;
  height: 18px;
  filter: invert(100%);
  opacity: .95;
}

.footer-bottom{
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-family: var(--font-body);
  color: rgba(255,255,255,.90);
  font-size: 13px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.footer-legal a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-legal .dot{ opacity: .6; }

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-text{ max-width: 65ch; }
  .brand-logo{ height: 56px; }

  /* Center footer on mobile */
  .footer{ text-align: center; }

  .footer-grid{ justify-items: center; }

  .footer-col{
    align-items: center;
  }

  .footer-logo{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-text{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social{
    justify-content: center;
  }
}

/* ==============================
   PREMIUM MOBILE NAV
================================ */

/* Toggle button (premium) */
.nav-toggle{
  display: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.nav-toggle:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.38);
  transform: translateY(-1px);
}

.nav-toggle:active{
  transform: translateY(0);
}

/* hamburger icon */
.nav-toggle__icon{
  width: 20px;
  height: 2px;
  background: currentColor;
  color: #fff;
  position: relative;
  display: block;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle__icon::before{ top: -6px; }
.nav-toggle__icon::after{ top: 6px; }

/* animate hamburger into an X when open */
.site-header.nav-open .nav-toggle__icon{
  background: transparent;
}
.site-header.nav-open .nav-toggle__icon::before{
  top: 0;
  transform: rotate(45deg);
}
.site-header.nav-open .nav-toggle__icon::after{
  top: 0;
  transform: rotate(-45deg);
}

/* screen reader utility */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Mobile dropdown ===== */
@media (max-width: 900px){
  .nav-toggle{ display: inline-flex; }

  /* anchor dropdown to header layout */
  .header-inner{ position: relative; }

  /* hide by default (but keep animatable when open) */
  .site-nav{
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 12px);
    z-index: 9999;

    /* FIXED premium panel (no glass effect) */
    background: #e6e6e6 !important;       
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);

    /* REMOVE glass */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    padding: 12px;

    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;

    display: grid;
    gap: 6px;

    transition: opacity .18s ease, transform .18s ease;
  }

  /* open state */
  .site-header.nav-open .site-nav{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 14px;
    border-radius: 14px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;

    /* glass pill effect */
    background: rgba(245,245,245,.80);
    border: 1px solid rgba(255,255,255,.35);

    transition:
      background .15s ease,
      transform .15s ease,
      box-shadow .15s ease;
  }

  .site-nav a:hover{
    background: rgba(255,255,255,.75);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
  }

  /* active page: subtle premium indicator */
  .site-nav a.active{
    background: rgba(153,132,115,.14);
    box-shadow: inset 0 0 0 1px rgba(153,132,115,.20);
  }

  /* optional: small dot indicator for active link */
  .site-nav a.active::after{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(153,132,115,.85);
  }
}

@media (max-width: 900px){
  .site-header.nav-open::after{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.28);
    z-index: 9998;
  }
}


/* =========================================================
   FORM CONTROLS — FORCE TYPOGRAPHY MATCH (wins last)
   Put this at the VERY BOTTOM of main.css
========================================================= */

.enquiry-form :is(input, select, textarea, button),
.lux-contact__form :is(input, select, textarea, button){
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* DC Select specific (button text + dropdown options) */
.enquiry-form :is(.dc-select__btn, .dc-select__value, .dc-select__opt),
.lux-contact__form :is(.dc-select__btn, .dc-select__value, .dc-select__opt){
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}

/* Keep DC Select shape consistent with inputs in forms */
.enquiry-form .dc-select__btn,
.lux-contact__form .dc-select__btn{
  border-radius: 14px !important;
  height: 48px !important;
  padding: 0 14px !important;
  box-shadow: none !important;
  transform: none !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.10) !important;
}

.enquiry-form .dc-select__btn:hover,
.lux-contact__form .dc-select__btn:hover{
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(153,132,115,.55) !important;
}


/* Force all text inside the DC select button to match */
.dc-select__btn,
.dc-select__btn *{
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.dc-select__list,
.dc-select__list *{
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ===== Consistent placeholder typography everywhere ===== */
:root{
  --placeholder-size: 15px;  /* set once */
  --placeholder-color: rgba(0,0,0,.45);
}

input::placeholder,
textarea::placeholder{
  font-family: var(--font-body) !important;
  font-size: var(--placeholder-size) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--placeholder-color);
  opacity: 1; /* fixes Safari making it lighter/smaller */
}

/* If any placeholders are inside your “props hero” dark area */
.props-hero input::placeholder,
.props-hero textarea::placeholder{
  color: rgba(255,255,255,.75);
}

/* =====================================
   Make placeholder text match DC Select
===================================== */
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder,
.lux-contact__form input::placeholder,
.lux-contact__form textarea::placeholder,
.modal__form input::placeholder{
  color: #111;
  opacity: 1; /* prevents Safari from fading it */
}

/* =====================================
   CONTACT — Light, premium hero
   Only affects pages with .page--hero-light
===================================== */
.page--hero-light .page-hero,
.page--hero-light .mort-hero,
.page--hero-light .props-hero,
.page--hero-light .days-hero{
  background: #fcfbfa;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Make any “hero” text inside go dark */
.page--hero-light .page-hero__kicker,
.page--hero-light .mort-hero__kicker,
.page--hero-light .props-kicker,
.page--hero-light .days-kicker{
  color: rgba(17,17,17,.60);
}

.page--hero-light .page-hero__title,
.page--hero-light .mort-hero__title,
.page--hero-light .props-title,
.page--hero-light .days-title{
  color: #111;
}

.page--hero-light .page-hero__sub,
.page--hero-light .mort-hero__sub,
.page--hero-light .props-sub,
.page--hero-light .days-sub{
  color: rgba(17,17,17,.72);
}

.page--hero-light .props-filter__select,
.page--hero-light .props-search,
.page--hero-light .dc-select__btn{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.12);
}

.page--hero-light .props-search::placeholder{
  color: rgba(0,0,0,.45);
}

/* =====================================
   CONTACT — smaller hero (only Contact)
===================================== */
.page--contact .page-hero{
  height: 300px;
  min-height: 260px;
}

.page--contact .page-hero__content{
  padding-top: calc(var(--header-h) + 6px);
}

/* Optional: reduce type slightly so it fits nicely */
.page--contact .page-hero__title{
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 8px;
}

.page--contact .page-hero__sub{
  max-width: 62ch;
}

/* =====================================
   Brand header on light hero pages
===================================== */

.page--hero-light .site-header{
  background: var(--brand);
}

@media (min-width: 901px){
  .page--hero-light .site-nav a{ color:#fff; }

  .page--hero-light .site-nav a:hover{
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.18);
  }

  .page--hero-light .site-nav a.active{
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.28);
  }
}


/* =====================================
   90 DAYS — Light, premium smaller hero
===================================== */

.page--90days .days-hero{
  height: 360px;         
  min-height: 360px;
}

.page--90days .days-hero > .dc-wide{
  padding-top: calc(var(--header-h) + 55px);
}

.page--90days .days-title{
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.page--90days .days-sub{
  max-width: 60ch;
  opacity: .75;
}

/* Slightly refine buttons so they’re less “landing page” */
.page--90days .days-actions .btn-primary{
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: none;
}

.page--90days .days-actions .btn-ghost{
  border-radius: 999px;
  padding: 10px 20px;
}

/* =====================================
   90 DAYS + MORTGAGES — Refined Buttons
===================================== */

.page--90days .days-actions .btn-primary,
.page--mortgages .mort-hero__actions .btn-primary{
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.page--90days .days-actions .btn-primary:hover,
.page--mortgages .mort-hero__actions .btn-primary:hover{
  background: #8a7566;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.page--90days .days-actions .btn-ghost,
.page--mortgages .mort-hero__actions .btn-ghost{
  background: transparent;
  color: #111;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  padding: 10px 22px;
}

.page--90days .days-actions .btn-ghost:hover,
.page--mortgages .mort-hero__actions .btn-ghost:hover{
  background: rgba(0,0,0,.05);
}

/* =====================================
   BLOG — Editorial Light Hero
===================================== */

.page--blog .mort-hero{
  height: 300px;          
  min-height: 300px;
}

.page--blog .mort-hero__content{
  padding-top: calc(var(--header-h) + 6px);
  max-width: 820px;
}

.page--blog .mort-hero__title{
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .02em;
}

.page--blog .mort-hero__sub{
  max-width: 60ch;
  opacity: .75;
}

.page--blog .mort-hero{
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.page--blog .blog-hero__controls .blog-search{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: none;
}

.page--blog .blog-hero__controls .blog-search input{
  color: #111;
}

.page--blog .blog-hero__controls .blog-search input::placeholder{
  color: rgba(0,0,0,.45);
}

/* =====================================
   BLOG POST — Match Blog Hero Style
===================================== */

.page--blog-post .mort-hero{
  height: 320px;
  min-height: 320px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.page--blog-post .mort-hero__content{
  padding-top: calc(var(--header-h) + 12px);
  max-width: 820px;
}

.page--blog-post .mort-hero__title{
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .02em;
}

/* -------------------------
   META ROW (Category + Date)
   Uses your existing HTML:
   <div class="post-meta"> ... </div>
-------------------------- */

.page--blog-post .post-meta{
  margin-top: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;

  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(17,17,17,.55);
}

/* Make BOTH items look consistent */
.page--blog-post .post-pill,
.page--blog-post #postDate{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  min-height: 34px;

  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);

  line-height: 1;
}

/* Dot */
.page--blog-post .post-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,17,17,.55);
}

/* Slight hierarchy on the category label */
.page--blog-post #postCategoryLabel{
  font-weight: 700;
  color: rgba(17,17,17,.65);
}

/* Optional: subtle divider line under meta (like a journal masthead) */
.page--blog-post .post-meta::after{
  content:"";
  display:block;
  width: min(520px, 92%);
  height: 1px;
  background: rgba(0,0,0,.08);
  margin-top: 18px;
}

/* =====================================
   Gradient Header — Selected Pages
===================================== */

.page--properties .site-header,
.page--property .site-header,
.page--mortgages .site-header,
.page--90days .site-header,
.page--contact .site-header,
.page--blog .site-header,
.page--blog-post .site-header{
  background:
    linear-gradient(
      135deg,
      #a38c7b 0%,
      #8b7668 45%,
      #6e5d51 100%
    );
}

/* Property page — force gradient header */
.page--property.page--hero-light .site-header{
  background: linear-gradient(
    135deg,
    #a38c7b 0%,
    #8b7668 45%,
    #6e5d51 100%
  );
}


/* =====================================
   Mortgages — Clean Light Hero
===================================== */

.page--mortgages .mort-hero{
  height: 340px;
  min-height: 340px;
  background: #f8f6f4;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Adjust content spacing */
.page--mortgages .mort-hero__content{
  padding-top: calc(var(--header-h) + 6px);
}

/* Kicker */
.page--mortgages .mort-hero__kicker{
  color: rgba(17,17,17,.55);
}

/* Title */
.page--mortgages .mort-hero__title{
  color: #111;
  letter-spacing: .02em;
  font-size: clamp(30px, 4vw, 46px);
}

/* Subtitle */
.page--mortgages .mort-hero__sub{
  color: rgba(17,17,17,.75);
  max-width: 65ch;
}

/* =====================================
   PROPERTIES — Clean Light Hero
===================================== */

.page--properties .props-hero{
  min-height: 360px;   
  height: auto;      
  background: #f8f6f4;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding-bottom: 20px;
}

@media (min-width: 1024px){
  .page--properties .props-hero{
    min-height: 360px;
  }
}

.page--properties .props-hero > .dc-wide,
.page--properties .props-hero > .hero-inner{
  padding-top: calc(var(--header-h) + 36px);  
  padding-bottom: 20px;         
}

.page--properties .props-controls{
  margin-top: 18px;  /* was 26px */
}

.page--properties .props-title{
  color: #111;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .02em;
}

.page--properties .props-kicker{
  color: rgba(17,17,17,.55);
}

.page--properties .props-sub{
  color: rgba(17,17,17,.75);
  max-width: 65ch;
}

/* =====================================
   PROPERTIES — Center Results Count
===================================== */

.page--properties .props-resultsbar{
  max-width: 980px;
  margin: 26px auto 18px;
  padding: 0 18px;
  text-align: center;
}

.page--properties .props-resultsbar #resultsCount{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}

.page--properties .props-resultsbar #resultsCount strong{
  color: #111;
  font-weight: 800;
  letter-spacing: 0;
}

.page--properties .props-resultsbar #resultsCount{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}


/* =====================================
   PROPERTIES — Refined Light Filters
===================================== */

.page--properties .props-hero{
  --dc-pill-h: 44px;
  --dc-pill-px: 16px;
  --dc-pill-fs: 14px;
  --dc-pill-fw: 500;

  --dc-pill-color: #111;

  --dc-pill-border: rgba(0,0,0,.12);
  --dc-pill-bg: #fff;
  --dc-pill-shadow: 0 4px 14px rgba(0,0,0,.06);

  --dc-arrow-color: rgba(0,0,0,.55);
  --dc-focus-ring: 0 0 0 3px rgba(0,0,0,.08);
}

/* Search input */
.page--properties .props-search{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.page--properties .props-search::placeholder{
  color: rgba(0,0,0,.45);
}

/* Properties hero — make placeholder black */
.page--properties .props-search::placeholder{
  color: #111;
  opacity: 1;
}

/* =====================================
   PROPERTY LIGHTBOX
===================================== */

.prop-main{ position: relative; }

.prop-view-btn{
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.68);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.prop-view-btn:hover{
  background: rgba(0,0,0,.82);
  border-color: rgba(255,255,255,.40);
  transform: translateY(-1px);
}

.prop-lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.prop-lightbox.active{
  opacity: 1;
  visibility: visible;
}

.prop-lightbox img{
  max-width: min(1200px, 100%);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.prop-lightbox-close{
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* =========================================================
   HOMEPAGE — make props cards fit the homepage right panel
========================================================= */

.home-explore .dc-right-panel.props-grid{
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.home-explore .props-card__media{
  height: 180px;
}

@media (max-width: 480px){
  .home-explore .dc-right-panel.props-grid{
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   90 DAYS — Hero spacing fix (ONLY this page)
   Put this at the very bottom of main.css
========================================================= */
body.page--90days .days-hero{
  min-height: auto !important;
  height: auto !important;
}

body.page--90days .days-hero__inner{
  padding-bottom: 50px !important;
}

