/* Digs by Michelle - cleaned site stylesheet */

:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --cream: #f8f3ed;
  --warm-cream: #efe6da;
  --gray: #afafaf;
  --soft-gray: #e7e3de;
  --text: #111111;
  --text-muted: rgba(17, 17, 17, 0.68);
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
section { padding: 80px 24px; }
.container { width: min(100%, var(--max)); margin: 0 auto; }

/* Header include */
.topbar {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.topbar-inner {
  width: min(100%, var(--max));
  min-height: 128px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mini-wordmark {
  display: block;
  flex: 0 0 150px;
  max-width: 150px;
  text-decoration: none;
}

.mini-wordmark img { width: 100%; height: auto; }

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu a { position: relative; text-decoration: none; }
.menu a.is-active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
}

.topbar.is-scrolled {
  background: rgba(248, 243, 237, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: none;
}

/* Home hero */

.hero-nav {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(calc(100% - 48px), var(--max));
  display: flex;
  justify-content: flex-end;
}

.hero-nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: 0;

  background: rgba(248, 243, 237, 0.78);
  backdrop-filter: blur(14px);
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(17,17,17,0.035);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.hero-nav .menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-nav .menu a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.hero-nav .menu a:hover {
  opacity: 1;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 243, 237, 0.88) 0%, rgba(248, 243, 237, 0.65) 45%, rgba(248, 243, 237, 0.35) 100%),
url("../assets/images/hero-living-room.jpg") left center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.08));
}

.hero-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 22px 72px;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 800px; }
.logo { width: clamp(230px, 35vw, 390px); margin-bottom: 28px; filter: drop-shadow(0 10px 22px rgba(255,255,255,.35)); }
.logo img { width: 100%; height: auto; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(17,17,17,.82);
}

.cta-note { margin-top: 14px; font-size: 14px; line-height: 1.5; opacity: .7; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,17,17,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(10px);
  font-size: 20px;
  text-decoration: none;
}

/* Buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-row--primary { gap: 16px; }
.cta-row--secondary { margin-top: 14px; }
.cta-row--secondary .button { width: 100%; max-width: 420px; }

.button,
.button:link,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 22px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); color: var(--white); }

/* Section headers */
.section-head { max-width: 680px; margin-bottom: 30px; }
.section-head h2 { margin-bottom: 10px; font-size: clamp(28px, 4vw, 46px); line-height: 1; letter-spacing: -.045em; }
.section-head p { margin: 0; color: var(--text-muted); line-height: 1.65; font-size: 16px; }

/* Guides */
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.guide-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.guide-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.guide-card h3 { margin-bottom: 10px; font-size: 26px; letter-spacing: -.03em; }
.card-copy { min-height: 48px; margin-bottom: 10px; line-height: 1.6; color: var(--text-muted); }
.card-cta { margin-top: auto; }
.card-cta .button { width: 100%; margin-top: 18px; }
.card-note { margin: 0; padding-top: 15px; font-size: 14px; line-height: 1.45; color: rgba(17,17,17,.65); }
.card-note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Listings */
.idx { background: var(--white);}
.area-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.area-tabs a { padding: 12px 16px; border: 1px solid rgba(17,17,17,.13); background: var(--white); text-decoration: none; text-transform: uppercase; letter-spacing: .09em; font-size: 12px; font-weight: 800; }
.area-tabs a:first-child { background: var(--black); color: var(--white); }
.listing-shell { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.listing-card { min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: var(--soft-gray); border: 1px solid rgba(17,17,17,.08); }
.listing-card span { color: rgba(17,17,17,.54); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.listing-card h3 { margin: 8px 0 0; font-size: 22px; letter-spacing: -.03em; }

.listing-search-frame {
  width: min(100%, 1120px);
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(115,113,113,1);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  height: auto;
}

.fields { border-radius: 4px; border: 1px solid #cbcbcb; font-size: 18px; color: #666666; font-weight: 400; padding: 4px 10px; line-height: 50px; font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"; height: 50px;  box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease;}

.listing-search-button {
  min-width: 260px;
  height: 56px;
  font-size: 15px;
}

.listing-search-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: #999;
}


/* Market Report */
.guide-grid--three {
  grid-template-columns: repeat(3, 1fr);
}


/* Bio */
.bio { background: var(--soft-gray); }
.bio-grid { display: grid; grid-template-columns: .9fr 1.45fr; gap: 44px; align-items: center; }
.portrait-card { aspect-ratio: 4/5; display: grid; place-items: center; margin: 0; padding: 14px; background: linear-gradient(145deg, rgba(255,255,255,.55), rgba(17,17,17,.08)), var(--warm-cream); border: 1px solid rgba(17,17,17,.08); color: rgba(17,17,17,.52); font-size: 14px; text-align: center; }
.portrait-card img { width: 100%; height: auto; }
.portrait-card figcaption { margin-top: 14px; }
.bio-copy h2 { margin-bottom: 18px; font-size: clamp(32px, 4.5vw, 54px); line-height: 1; letter-spacing: -.055em; }
.bio-copy p { max-width: 680px; margin-top: 18px; line-height: 1.7; color: rgba(17,17,17,.76); font-size: 16px; }
.bio-highlight { color: var(--black); }
.bio-copy p + p { margin-top: 18px; }

/* Contact */
.contact-section { background: var(--soft-gray); }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(320px, 1.25fr); gap: 44px; align-items: start; }
.contact-copy h2 { margin-bottom: 28px; font-size: clamp(32px, 4.5vw, 54px); line-height: 1; letter-spacing: -.055em; }
.contact-copy p { margin-bottom: 18px; line-height: 1.6; }
.contact-copy p a,
.contact-copy p a:link,
.contact-copy p a:visited { color: inherit; text-decoration: none; text-underline-offset: 3px; opacity: 1; }
.contact-copy p a:hover {border-bottom: 1px solid rgba(0,0,0,0.6);}
.qr-code { max-width: 150px; height: auto; margin-top: 10px; }
.contact-cta { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 360px; margin-top: 24px; }
.contact-cta .button { width: 100%; margin: 0; }

/* Subpages */
body.subpage .page { padding-top: 20px; }
body.subpage .lead-page { padding: 20px 24px 80px; }
body.subpage .schedule-section { padding: 20px 24px 80px; }
.lead-copy { max-width: 760px; }
.lead-copy h1 {line-height: 1.05; margin-bottom: 14px;}
.lead-copy p { margin-top: 16px; color: rgba(17,17,17,.76); font-size: 16px; line-height: 1.7;}
.lead-copy p:nth-of-type(3) { color: var(--black); }
.lead-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 38px; align-items: start; }
.lead-layout--single { grid-template-columns: 1fr; }
.lead-layout--single .lead-copy { max-width: 760px; }
.form-card { padding: 26px; background: rgba(255,255,255,.78); border: 1px solid rgba(17,17,17,.10); box-shadow: 0 24px 60px rgba(17,17,17,.10); }
.form-card .button { width: 100%; }
label { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 700; }
input[type="text"],
input[type="email"],
input[type="tel"],
input:not([type]) { width: 100%; min-height: 46px; margin: 0 0 14px; padding: 10px 12px; border: 1px solid rgba(17,17,17,.22); background: var(--white); font: inherit; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 10px 0 18px; color: #333; font-size: 12px; line-height: 1.45; }
.form-status { margin: 14px 0 0; font-size: 14px; }

.valuation-tool {
  padding: 60px 20px;
}

.valuation-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.valuation-inner .eyebrow {
  margin-bottom: 10px;
}

.valuation-inner h1 {
  margin-bottom: 16px;
  line-height: 1.1;
}

.valuation-inner .subhead {
  font-size: 18px;
  margin-bottom: 12px;
}

.valuation-inner .body-copy {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 28px;
}

.valuation-inner iframe {
  width: 100%;
  height: 220px;
  border-radius: 8px;
}

.valuation-widget {
  margin-top: 34px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-radius: 10px;
	backdrop-filter: blur(6px);
}

.valuation-widget iframe {
  width: 100%;
  height: 70px;
  border: 0;
  display: block;
}

.valuation-note {
	padding-top: 10px;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(17,17,17,.55);
  text-align: center;
}

/* Calendly / Schedule */
.schedule-section { min-height: 70vh; display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; background: var(--cream); }
.schedule-copy { max-width: 460px; }
.schedule-copy h1 { font-size: clamp(36px, 5vw, 60px); }
.schedule-copy p { margin-top: 20px; color: rgba(17,17,17,.76); font-size: 16px; line-height: 1.75; }
.calendly-wrap { align-self: start; width: 100%; overflow: hidden; background: var(--white); border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); }
.calendly-inline-widget { width: 100%; min-width: 0 !important; height: 1050px !important; overflow: hidden; }

/* Footer */
.site-footer {
  padding: 42px 22px 24px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) minmax(220px, 1fr);
  gap: 16px;
  align-items: start;
}

.footer-left {
  justify-self: start;
  text-align: left;
}

.footer-center {
  justify-self: center;
  text-align: center;
  padding-top: 0px;
}

.footer-right {
  justify-self: end;
  text-align: center;
  padding-top: 10px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo img {
  width: 125px;
  height: auto;
}

.footer-small {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}

.footer-small a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-small a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.footer-name,
.footer-name2 {
  color: #F0B60C;
}

.footer-name {
  font-weight: 700;
}

.footer-realtor {
  width: 100px;
  height: auto;
  margin-top: 18px;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s ease, border-color .2s ease;
}

.socials a:hover {
  opacity: 1;
  border-color: rgba(255,255,255,.45);
}

.socials img {
  width: 100%;
  height: auto;
}

.broker-logo {
  width: min(100%, 220px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 820px) {

  .hero-nav .menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-nav .menu a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
	
.hero-nav .menu a:hover {
  opacity: 1;
}
  section { padding: 58px 20px; }
  .topbar-inner { min-height: 92px; padding: 14px 18px; gap: 16px; }
  .mini-wordmark { flex-basis: 118px; max-width: 118px; }  .hero { align-items: end; background: linear-gradient(to bottom, rgba(248,243,237,.62) 0%, rgba(248,243,237,.84) 60%, rgba(248,243,237,.96) 100%), url("../assets/images/hero-living-room.jpg") 65% center / cover no-repeat; }
  .hero-shell { padding-top: 86px; padding-bottom: 86px; }
  .hero-content { max-width: 100%; margin: 0 auto; text-align: center; }
  .logo { width: min(76vw, 310px); margin-left: auto; margin-right: auto; }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .cta-row--secondary .button { max-width: none; }
  .button { width: 100%; }
  .guide-grid,
  .listing-shell,
  .bio-grid,
  .contact-grid,
  .lead-layout,
  .schedule-section {
    grid-template-columns: 1fr;
  }

  .guide-card { min-height: auto; }
  .area-tabs a { flex: 1 1 calc(50% - 10px); text-align: center; }
  .contact-grid { gap: 32px; }
  .contact-cta { max-width: none; }
  body.subpage .lead-page,
  body.subpage .schedule-section { padding: 20px 20px 58px; }
  .calendly-inline-widget { height: 980px !important; }
	

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-self: center;
    text-align: center;
    padding-top: 0;
  }

  .footer-logo,
  .footer-logo img,
  .footer-realtor,
  .broker-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-copy {
    grid-column: auto;
    text-align: center;
    margin-top: 6px;
  }
	
	.valuation-widget {
    padding: 14px;
  }

  .valuation-widget iframe {
    height: 170px;
  }	
	
.guide-grid--three {
    grid-template-columns: 1fr;
  }	
	
.site-nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

	.site-nav a {
    font-size: 12px;
  }
	
.listing-search-frame {
    height: auto;
    padding: 22px;
  }

  .property-search-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .property-search-grid .listing-field,
  .property-search-grid .listing-search-button {
    width: 100% !important;
    max-width: none;
    margin-right: 0 !important;
  }


  .listing-search-button {
    justify-content: center;
    min-height: 56px;
  }
	
.listing-search-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding-top: 20px;
}	
	
.hide {
    display: none;
  }
	
.mobile-break {
    display: block;
    margin-top: 2px;
  }	
	
 .topbar-inner {
    position: relative;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .topbar .menu {
    display: none;
    width: 100%;
    padding-top: 16px;
  }

  .topbar .menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}


/* Final mobile fixes: header hamburger + property search */
@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .topbar-inner {
    min-height: auto;
    padding: 14px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mini-wordmark {
    flex: 0 0 118px;
    max-width: 118px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(17,17,17,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    color: var(--black);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .topbar .menu {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
    padding: 16px 0 4px;
  }

  .topbar .menu.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .topbar .menu a {
    font-size: 12px;
    letter-spacing: .12em;
    padding: 6px 0;
  }

  .listing-search-frame {
    height: auto !important;
    padding: 22px !important;
    overflow: visible !important;
  }

  .listing-search-frame h2 {
    margin-bottom: 18px;
  }

  .property-search-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .property-search-grid .listing-field,
  .property-search-grid .fields,
  .property-search-grid input,
  .property-search-grid select,
  .property-search-grid button,
  .property-search-grid .listing-search-button {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .property-search-grid input,
  .property-search-grid select {
    min-height: 50px;
  }

  .property-search-grid .hide {
    display: none !important;
  }

  .listing-search-button {
    min-height: 56px;
    justify-content: center;
  }

  .listing-search-note {
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    color: #999;
    padding-top: 18px;
    margin-bottom: 0;
  }
}

/* FINAL MOBILE OVERRIDES */
@media screen and (max-width: 900px) {
  body.subpage .topbar-inner {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  body.subpage .menu-toggle {
    display: block !important;
  }

  body.subpage .topbar .menu {
    display: none !important;
  }

  body.subpage .topbar .menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .listing-search-frame {
    height: auto !important;
    overflow: visible !important;
    padding: 22px !important;
  }

  .property-search-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .property-search-grid input,
  .property-search-grid select,
  .property-search-grid button,
  .property-search-grid .fields,
  .property-search-grid .listing-field,
  .property-search-grid .listing-search-button {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
}

/* FINAL MOBILE FIX */
@media screen and (max-width: 900px), screen and (max-device-width: 900px) {

  /* Subpage hamburger */
  body.subpage .topbar-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  body.subpage .menu-toggle {
    display: block !important;
    margin-left: auto !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  body.subpage .topbar .menu {
    display: none !important;
  }

  body.subpage .topbar .menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    align-items: center !important;
  }

  /* Property search mobile */
	
	.listing-search-frame {
    width: 100%;
    padding: 22px;
    margin-top: 28px;
  }
}

  .property-search-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .property-search-grid input[name="display"],
  .property-search-grid select[name="types[]"],
  .property-search-grid .listing-search-button {
    grid-column: 1 / -1 !important;
  }

  .property-search-grid input,
  .property-search-grid select,
  .property-search-grid button,
  .property-search-grid .fields,
  .property-search-grid .listing-field,
  .property-search-grid .listing-search-button {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .property-search-grid .hide {
    display: none !important;
  }

  .listing-search-note {
    text-align: center !important;
    font-size: 12px !important;
    color: #999 !important;
    padding-top: 18px !important;
  }
	

}
