/*
Theme Name: Just Deal With Me
Theme URI: https://justdealwithme.com
Author: Brian Hunt site package
Description: Visual v2 — skyline hero, headshot, family on About. Header, Florida footer, forms, mobile CTAs.
Version: 2.0.1
License: GNU General Public License v2 or later
Text Domain: justdealwithme
*/

:root {
  --ink: #12171c;
  --muted: #5b6570;
  --paper: #f3efe8;
  --card: #fffcf7;
  --line: #d8d0c4;
  --navy: #0e2433;
  --navy-2: #16364a;
  --sunset: #c45c2a;
  --gold: #d7a15a;
  --focus: #0b5cab;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
a:hover { color: var(--sunset); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  background: var(--navy);
  color: #f3efe8;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 3px solid var(--gold);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #f3efe8;
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand strong { display: block; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand small { display: block; font-weight: 400; opacity: 0.78; font-size: 0.72rem; }
.nav-toggle {
  display: none;
  background: transparent;
  color: #f3efe8;
  border: 1px solid #f3efe880;
  padding: 0.35rem 0.6rem;
}
.menu {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}
.menu a { color: #f3efe8; text-decoration: none; font-size: 0.92rem; }
.menu a:hover { color: var(--gold); }
.site-header,
.site-header .wrap,
.site-header nav,
.menu,
.menu li {
  overflow: visible !important;
}
.site-header {
  z-index: 9999;
}
.menu {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}
.menu a { color: #f3efe8; text-decoration: none; font-size: 0.92rem; }
.menu a:hover { color: var(--gold); }
.menu li {
  position: relative;
}
.menu li.has-children > a {
  display: inline-block;
  padding: 0.55rem 0;
}
.menu li.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
  background: transparent;
}
.menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 10000;
  background: #0a1c28;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  min-width: 16rem;
  box-shadow: 0 8px 24px #0006;
}
.menu li:hover > .sub-menu,
.menu li.is-open > .sub-menu,
.menu li:focus-within > .sub-menu {
  display: block;
}
.menu .sub-menu a {
  display: block;
  padding: 0.45rem 0.9rem;
}
.site-header.is-open .menu .sub-menu {
  display: block;
  position: static;
  box-shadow: none;
  padding-left: 0.6rem;
}
.site-header.is-open .menu li.has-children::after { display: none; }

.hero-sky {
  position: relative;
  min-height: min(78vh, 640px);
  color: #fff;
  background: #0e2433 center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.hero-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0e243366 0%, #0e2433d0 72%, #0e2433 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.2rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: end;
}
.hero-sky h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  font-weight: 600;
}
.hero-sky .lede {
  font-size: 1.12rem;
  max-width: 38rem;
  color: #efe6d8;
  margin: 0 0 1.2rem;
}
.hero-shot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d7a15a;
  box-shadow: 0 10px 30px #0008;
  justify-self: end;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1rem 0 0; }
.btn {
  display: inline-block;
  background: var(--sunset);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.05rem;
  border-radius: 3px;
  font-weight: 600;
}
.btn:hover { color: #fff; filter: brightness(1.06); }
.btn.ghost {
  background: transparent;
  border: 1px solid #f3efe8;
  color: #f3efe8;
}
.page-hero { padding: 2.1rem 0 0.4rem; }
h1, h2, h3, h4 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 0.55rem; }
.entry {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem 2.1rem;
  margin: 1.2rem 0 2.2rem;
  box-shadow: 0 1px 0 #fff8;
}
.entry h2 { margin-top: 1.7rem; font-size: 1.35rem; }
.entry p { max-width: 44rem; }
.photo-block { margin: 0 0 1.2rem; }
.photo-block img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.photo-block figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 0.4rem; }

.jdwm-placeholder {
  border: 1px dashed #8aa0ae;
  background: #eef3f6;
  padding: 1.1rem;
  margin: 1.2rem 0;
  color: var(--muted);
}
.jdwm-placeholder strong { color: var(--navy); }
.jdwm-placeholder .hint { font-size: 0.9rem; }

.contact-shot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 1rem;
}
.jdwm-form {
  max-width: 720px;
  margin: 0 0 1.5rem;
}
.jdwm-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.jdwm-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
  margin: 0;
}
.jdwm-form .full { grid-column: 1 / -1; }
.jdwm-form input[type="text"],
.jdwm-form input[type="email"],
.jdwm-form input[type="tel"],
.jdwm-form textarea {
  width: 100%;
  max-width: none;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}
.jdwm-form textarea { min-height: 7rem; }
.jdwm-form button {
  background: var(--sunset);
  color: #fff;
  border: 0;
  padding: 0.7rem 1.15rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.jdwm-form .consent {
  max-width: 40rem;
  font-weight: 400;
  font-size: 0.92rem;
  margin: 1rem 0;
}
.jdwm-form .consent label {
  display: block;
  font-weight: 400;
}
.jdwm-form .hp { position: absolute; left: -9999px; }
@media (max-width: 640px) {
  .jdwm-form .form-grid { grid-template-columns: 1fr; }
}
.notice { padding: 0.8rem 1rem; border: 1px solid #b7d7be; background: #e8f4ea; margin: 1rem 0; }
.notice.err { background: #fdecea; border-color: #e8b4ae; }

.site-footer {
  background: var(--navy);
  color: #c9d3da;
  padding: 2.2rem 0 6rem;
  font-size: 0.9rem;
}
.site-footer a { color: #e4c48a; }
.footer-grid { display: grid; gap: 1.5rem; grid-template-columns: 1.1fr 1.2fr; }
.site-footer h2 { color: #f3efe8; font-size: 1.15rem; margin: 0 0 0.5rem; }
.eq { font-size: 0.82rem; opacity: 0.88; }
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0a1c28;
  display: flex;
  z-index: 50;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  color: #f3efe8;
  text-decoration: none;
  padding: 0.78rem 0.4rem;
  border-right: 1px solid #244155;
  font-size: 0.92rem;
  font-weight: 600;
}
.sticky-cta a:last-child { border-right: 0; }
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
th, td { border: 1px solid var(--line); padding: 0.4rem 0.5rem; text-align: left; vertical-align: top; }
blockquote { border-left: 3px solid var(--gold); margin: 1rem 0; padding: 0.2rem 0.8rem; color: var(--muted); }
.hood-index { columns: 2; max-width: 42rem; }
.page-contact .table-wrap { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .menu { display: none; width: 100%; flex-direction: column; align-items: flex-start; }
  .site-header .wrap { flex-wrap: wrap; }
  .site-header.is-open .menu { display: flex; }
  .menu .sub-menu { position: static; display: block; box-shadow: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 5.5rem; }
  .hero-shot { width: 120px; height: 120px; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hood-index { columns: 1; }
}
@media (min-width: 861px) {
  .sticky-cta { display: none; }
}

.site-header .kw-logo {
  margin: 0 0.65rem 0 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header .kw-logo img {
  height: 35px !important;
  width: auto !important;
  max-width: 154px !important;
  max-height: 35px !important;
  object-fit: contain;
}
@media (max-width: 860px) {
  .site-header .kw-logo { margin-right: 0.45rem; }
  .site-header .kw-logo img {
    height: 35px !important;
    max-width: 154px !important;
    max-height: 35px !important;
  }
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.2rem;
  margin: 1.6rem 0 0.4rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  background: #fff;
  max-width: 920px;
}
.contact-card h2 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.contact-card p { margin: 0 0 0.7rem; }
.contact-card a { font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card .office-line { color: var(--muted); font-size: 0.92rem; margin: 0; }
.contact-card-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 4px;
}
@media (max-width: 700px) {
  .contact-card { grid-template-columns: 1fr; }
}

.contact-card .phone-line { margin-bottom: 0.35rem; }
.contact-card .phone-actions {
  display: inline-block;
  margin-left: 0.45rem;
  font-weight: 600;
}
.contact-card .phone-actions a { font-weight: 600; }

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.contact-card-top h2 { margin: 0; }
.contact-card .save-contact {
  padding: 0.4rem 0.7rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.social-links { display: inline-flex; gap: 0.55rem; align-items: center; }
.social-links .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: #f3efe8;
  text-decoration: none;
}
.social-links .social svg { width: 26px; height: 26px; }
.site-header .social-links { margin-left: auto; margin-right: 0.6rem; }
.site-header .social-links .social { color: #f3efe8 !important; background: transparent !important; }
.site-header .social-links .social:hover { color: #d7a15a !important; }
.site-footer .social-links { display: flex; margin: 0.8rem 0 1rem; }
.site-footer .social-links .social { color: #f3efe8 !important; background: transparent !important; }
.site-footer .social-links .social:hover { color: #d7a15a; }
.contact-card .social-links { margin: 0.2rem 0 0.8rem; }
.contact-card .social-links .social { color: #0e2433; }
.contact-card .social-links .social:hover { color: #c45c2a; }

.site-header nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.site-header .social-menu { margin-left: 0.2rem; }
.site-header .social-menu a { color: #f3efe8 !important; font-size: 0.92rem; }
.site-header .social-menu a:hover { color: #d7a15a !important; }

.about-bio h2 { margin-top: 0.4rem; }
.about-bio .btn.ghost { color: var(--navy); border-color: var(--navy); }
.about-bio .cta-row { margin-top: 1.2rem; }

.search-page { padding-bottom: 2rem; }
search-hero-img {
  width: 420px;
  max-width: min(420px, 88%);
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
  margin: 1rem auto 0;
  border-radius: 4px;
}
.search-intro { padding: 1.2rem 0 0.5rem; }
.search-intro h1 { margin-bottom: 0.35rem; color: var(--ink); }
.search-lede { color: var(--muted); max-width: 40rem; margin: 0; font-size: 1.05rem; }
..search-widget { margin: 0.6rem 0 1.4rem; }
.search-widget realscout-advanced-search {
  --rs-as-widget-width: 100% !important;
  width: 100%;
  display: block;
}
.search-extras { margin-bottom: 2rem; }
.area-label { font-weight: 600; margin: 0 0 0.5rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1rem; }
.area-chips a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  border-radius: 99px;
  font-size: 0.9rem;
}
.area-chips a:hover { border-color: var(--sunset); color: var(--sunset); }
.search-help { color: var(--muted); margin: 0; }

.search-band {
  background: var(--navy) center 45%/cover no-repeat;
  color: #fff;
  min-height: 340px;
  padding: 5rem 0 3.2rem;
  position: relative;
}
.search-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0e2433;
  opacity: 0.48;
}
.search-band .wrap { position: relative; z-index: 1; }
.search-band h1 { margin: 0 0 0.35rem; color: #fff; }
.search-band .search-lede { color: #efe6d8; max-width: 40rem; margin: 0; font-size: 1.05rem; }

.rs-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem auto 0.35rem;
  text-align: center;
}
.rs-credit img {
  width: 200px;
  height: auto;
  max-width: 200px;
}

.page-contact .jdwm-form {
  max-width: 460px;
}
.page-contact .jdwm-form input[type="text"],
.page-contact .jdwm-form input[type="email"],
.page-contact .jdwm-form input[type="tel"],
.page-contact .jdwm-form textarea {
  padding: 0.42rem 0.55rem;
  font-size: 0.95rem;
}
.page-contact .jdwm-form textarea { min-height: 5.2rem; }
.page-contact .jdwm-form .form-grid { gap: 0.65rem 0.75rem; }
.page-contact .jdwm-form button { padding: 0.55rem 0.95rem; }

.rs-powered {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.search-custom {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-value-band {
  background-size: cover;
  background-position: center 55%;
}

.hv-photo {
  text-align: center;
  padding: 1rem 0 0.2rem;
}
.hv-photo img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: inline-block;
  object-fit: contain;
}
.hv-title { margin: 0 0 0.35rem; }

.hv-banner { width: 100%; line-height: 0; }
.hv-banner img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hv-intro { padding: 1.2rem 0 0.2rem; }


/* WP primary nav dropdown — Communities */
.menu-item-has-children,
.menu li:has(> .sub-menu) {
  position: relative;
}
.menu-item-has-children::after,
.menu li:has(> .sub-menu)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  background: transparent;
  z-index: 10000;
}
.menu-item-has-children .sub-menu,
.menu li:has(> .sub-menu) > .sub-menu,
.menu .sub-menu {
  margin: 0 !important;
  margin-top: 0 !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 9999 !important;
  display: none;
  position: absolute !important;
  background: #0a1c28;
  list-style: none;
  padding: 0.35rem 0;
  min-width: 16rem;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu,
.menu li:has(> .sub-menu):hover > .sub-menu,
.menu li:has(> .sub-menu):focus-within > .sub-menu,
.menu li.is-open > .sub-menu {
  display: block !important;
}
.site-header,
.site-header .wrap,
.site-header nav {
  overflow: visible !important;
  z-index: 9999;
}

.community-bar {
  background: #0a1c28;
  border-top: 1px solid #ffffff22;
  padding: 0.35rem 0;
}
.community-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: flex-end;
}
.community-bar a,
.community-bar a:link,
.community-bar a:visited,
.community-bar a:hover,
.community-bar a:active {
  color: #ffffff !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-size: 0.86rem;
  font-weight: 600;
}
.community-bar a:hover { color: #d7a15a !important; }
@media (max-width: 860px) {
  .community-bar .wrap { justify-content: flex-start; padding: 0.2rem 0 0.45rem; }
}

.plus55-hero {
  background: var(--navy) center 45%/cover no-repeat;
  color: #fff;
  padding: 3.2rem 0 2.4rem;
  position: relative;
}
.plus55-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0e2433;
  opacity: 0.45;
}
.plus55-hero .wrap { position: relative; z-index: 1; }
.plus55-hero h1 { color: #fff; max-width: 44rem; margin: 0 0 0.7rem; }
.plus55-hero p { color: #efe6d8; max-width: 44rem; margin: 0; }
.plus55-tools, .plus55-body, .plus55-cta { padding: 1.6rem 0; }
.plus55-map {
  width: 100%;
  margin: 1rem 0;
}
.plus55-map iframe {
  width: 100% !important;
  height: 480px !important;
  min-height: 480px !important;
  border: 0;
  display: block;
}
.plus55 .btn.ghost { color: var(--navy); border-color: var(--navy); }
.plus55-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.4rem 0 0.4rem;
}
.plus55-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem 1.05rem;
}
.plus55-card h3 { margin: 0 0 0.4rem; }
.plus55-cta { border-top: 1px solid var(--line); margin-top: 0.5rem; }
@media (max-width: 800px) {
  .plus55-cards { grid-template-columns: 1fr; }
}

.plus55-photo { margin: 1rem auto 0; max-width: 560px; }
.plus55-photo img { width: 100%; height: auto; max-height: 240px; object-fit: cover; display: block; border-radius: 4px; }

.plus55-map-title {
  text-align: center;
  margin: 1.4rem 0 0.7rem;
}

.plus55-map-note { text-align: center; color: var(--muted); margin: 0 0 0.8rem; }

.plus55-search-row { justify-content: center; margin: 0 0 2.2rem; }

.jax-intro { padding: 1.4rem 0 0.4rem; }
.jax-intro p { color: var(--muted); max-width: 40rem; }
.jax-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.85rem;
  padding: 0.6rem 0 2.2rem;
  max-width: 860px;
}
@media (min-width: 720px) {
  .jax-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
.jax-card {
  background: #fff;
  border: 1px solid var(--line);
}
.jax-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
}
.jax-card h2 {
  margin: 0.45rem 0.6rem 0.15rem;
  font-size: 1rem;
  text-align: center;
}
.jax-card p {
  margin: 0 0.6rem 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}
.jax-card-link { color: inherit; text-decoration: none; display: block; }
.jax-card-link:hover h2 { color: var(--sunset); }
@media (max-width: 700px) {
  .jax-grid { grid-template-columns: 1fr !important; max-width: none !important; }
}

.google-reviews {
  margin: 3.4rem 0 2.6rem;
  padding: 1.6rem 0 0.4rem;
  border-top: 1px solid var(--line);
}
.reviews-head { text-align: center; margin: 0 auto 1.3rem; max-width: none; }
.reviews-head p, .reviews-head h1, .reviews-head h2 { text-align: center; max-width: none; margin-left: auto; margin-right: auto; }
.reviews-kicker {
  margin: 0 0 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sunset);
}
.reviews-head h2 { margin: 0 0 0.2rem; color: var(--navy); }
.reviews-meta { margin: 0 0 0.25rem; color: var(--muted); }
.reviews-stars {
  margin: 0.15rem 0 0.85rem;
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}
.reviews-btn { display: inline-block; color: var(--navy) !important; border-color: var(--navy) !important; }
.review-bubbles {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.9rem 1.1rem;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.review-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 6px;
  padding: 0.85rem 1rem 0.95rem;
  box-shadow: 0 6px 16px #0e243314;
  position: relative;
}
.review-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.review-who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0 0 0.4rem;
}
.review-name { font-weight: 700; color: var(--navy); }
.review-rating { color: var(--gold); letter-spacing: 0.04em; font-size: 0.95rem; }
.review-text { margin: 0; color: var(--ink); font-size: 0.95rem; }
@media (max-width: 700px) {
  .review-bubbles { grid-template-columns: 1fr; }
}

.get-started {
  background: var(--navy);
  color: #fff;
  text-align: center !important;
  padding: 3.1rem 1.4rem 3.3rem;
  margin: 1.4rem auto 4.2rem;
  width: 100%;
}
.get-started-kicker,
.get-started h2,
.get-started-copy,
.get-started-cta {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.get-started-kicker {
  margin: 0 auto 0.7rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}
.get-started h2 {
  margin: 0 auto 0.85rem;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
}
.get-started-copy {
  margin: 0 auto 1.6rem;
  max-width: 36rem;
  color: #efe6d8;
  font-size: 1.12rem;
  line-height: 1.55;
}
.get-started-cta { margin: 0; }
.get-started .btn {
  background: var(--sunset);
  color: #fff;
  border-radius: 3px;
  padding: 0.7rem 1.2rem;
}

.comm-grid { display:grid !important; grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:16px; max-width:860px; }
@media (max-width:700px) {
  .comm-grid { grid-template-columns:1fr !important; }
}

.hood-experts {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.4rem;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 3.2rem;
  width: 100%;
}
.hood-copy {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.35rem 1.3rem 1.4rem;
}
.hood-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.05;
}
.hood-copy p { color: var(--ink); max-width: 36rem; }
.hood-cta { margin: 1.1rem 0 0; }
.hood-map {
  text-align: right;
  justify-self: end;
  width: 340px !important;
  max-width: 340px !important;
}
.hood-map img {
  width: 340px !important;
  max-width: 340px !important;
  height: auto !important;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin-left: auto;
}
@media (max-width: 800px) {
  .hood-experts { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .sellers-split {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .sellers-graphic {
    order: -1;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 auto 0.8rem;
    text-align: center;
  }
  .sellers-graphic img {
    width: min(320px, 92vw) !important;
    max-width: 92vw !important;
    margin: 0 auto;
  }
  .sellers-intro {
    flex: 1 1 auto !important;
    max-width: none !important;
    width: 100% !important;
  }
}

@media (max-width: 700px) {
  .page-jacksonville .jax-card h2,
  .page-template-page-jacksonville .jax-card h2 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin: 0.45rem 0.5rem 0.2rem !important;
  }
}

@media (max-width: 860px) {
  .site-header .wrap {
    align-items: center;
    gap: 0.35rem 0.55rem;
  }
  .site-header .kw-logo img {
    height: 26px !important;
    max-width: 110px !important;
    max-height: 26px !important;
  }
  .brand img {
    width: 36px !important;
    height: 36px !important;
  }
  .brand strong { font-size: 0.95rem; }
  .brand small { font-size: 0.72rem; }
  .header-social a, .site-header .social a { transform: scale(0.9); }
  .community-bar .wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    justify-content: flex-start !important;
    padding: 0.35rem 0 0.55rem !important;
  }
  .community-bar a { white-space: nowrap; flex: 0 0 auto; }
  .hero-shot {
    width: 88px !important;
    height: 88px !important;
    margin-top: 0.6rem;
  }
  .hero-inner { padding-bottom: 1.2rem; }
}

@media (max-width: 860px) {
  .community-bar a.bar-55 { display: none !important; }
}

.hero-shot-link { display: inline-block; }
.hero-shot-link .hero-shot { display: block; }
