:root {
  color-scheme: light;
  --ink: #18202b;
  --muted: #66727f;
  --line: #d9e0e7;
  --soft: #f1f6f9;
  --blue: #1c64b7;
  --cyan: #0b9fc9;
  --navy: #102235;
  --green: #1b7f5d;
  --amber: #8d6414;
  --surface: #ffffff;
  --surface-2: #f6f8fa;
  --header: #102235;
  --shadow: 0 18px 40px rgba(20, 32, 51, 0.08);
}

.brand-logo-img {
  display: block;
  width: 180px;
  max-width: min(46vw, 180px);
  height: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 76px;
  z-index: -1;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--cyan);
  color: white;
}

.brand-image-wrap {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.34);
  background: #ffffff;
}

.brand-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-search {
  display: flex;
  flex: 1 1 340px;
  max-width: 430px;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.primary-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  appearance: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 3px solid #f6c65b;
  outline-offset: 3px;
}

.burger-icon {
  display: grid;
  align-content: space-between;
  width: 18px;
  height: 14px;
}

.burger-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-open .burger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .burger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-open .burger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-search input,
.search-panel input {
  min-width: 0;
  width: 100%;
  border: 0;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.header-search input {
  padding: 11px 12px;
}

.header-search button,
.search-panel button {
  border: 0;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-search button {
  padding: 0 15px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: #d9ecff;
}

.nav {
  position: relative;
  z-index: 5;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: white;
}

.nav .navInner {
  width: 100%;
  max-width: none;
  height: 76px;
  display: grid;
  grid-template-columns: auto minmax(220px, 520px) auto;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
}

.brandLogo {
  color: white;
  font-weight: 900;
}

.headerSearch {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.headerSearch input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.btn,
.headerSearchBtn,
.searchSubmitBtn {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.headerSearchBtn {
  padding: 11px 16px;
  white-space: nowrap;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.navlinks a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #edf7ff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.navlinks a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  text-decoration: none;
}

.navlinks a[href="/featured-listing/"],
.navlinks a[href="/featured-listing"] {
  background: #f6c65b;
  color: #1f1604;
}

.mobileNav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobileNavToggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.burgerIcon {
  display: grid;
  align-content: space-between;
  width: 18px;
  height: 14px;
}

.burgerIcon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobileNav.isOpen .burgerIcon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobileNav.isOpen .burgerIcon span:nth-child(2) {
  opacity: 0;
}

.mobileNav.isOpen .burgerIcon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobileNavBackdrop {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 8;
  background: rgba(16, 34, 53, 0.48);
}

.mobileNavPanel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 9;
  display: grid;
  gap: 10px;
  width: min(92vw, 380px);
  max-height: calc(100vh - 98px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(16, 34, 53, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobileNav.isOpen .mobileNavPanel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobileNav.isOpen .mobileNavBackdrop {
  display: block;
}

.mobileNavHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 3px 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobileNavHeader button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobileNavSearch {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mobileNavSearch .searchbar {
  margin-top: 0;
}

.mobileNavLinks {
  display: grid;
  gap: 4px;
}

.mobileNavLinks a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
}

.mobileNavLinks a:hover {
  background: var(--soft);
  text-decoration: none;
}

.searchbar {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.searchbar input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.searchbar .btn {
  padding: 0 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  padding: 42px 0 34px;
  align-items: start;
}

.listing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  padding: 34px 0 28px;
  align-items: start;
}

.listingPage {
  width: 100%;
}

.listingHero {
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.listingHero .crumbs {
  margin-top: 0;
}

.listingHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  padding-top: 24px;
}

.listingHeroGrid h1 {
  max-width: 760px;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.listingHeroPhoto {
  margin: 0;
}

.mediaFallback {
  position: relative;
}

.mediaBadge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.86);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.listingHeroPhoto img,
.listingHeroPhoto iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  max-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.listingHeroPhoto img {
  object-fit: cover;
}

.listingHeroPhoto iframe {
  border: 0;
}

.pillrow,
.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pillrow {
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #c8d5e1;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.pill.light {
  background: var(--surface-2);
  color: #405064;
}

.pill:hover {
  border-color: var(--blue);
  text-decoration: none;
}

.ctaRow {
  margin-top: 22px;
}

.btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.ctaRow .btn,
.claimBox .btn,
.sidebar .full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.btn.secondary:hover,
.btn:hover {
  text-decoration: none;
}

.hero-home {
  display: block;
  grid-template-columns: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 76px 0 54px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #eaf7ff 55%, #d8eeff 100%);
}

.hero-home h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
}

.hero-home p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-home .homeHeroSearch {
  max-width: 760px;
  margin-top: 28px;
}

.hero-home .searchbar {
  margin-top: 0;
}

.compact-hero {
  grid-template-columns: minmax(0, 760px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.panel,
.listing,
.notice,
.listing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.statbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.statbar .stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.statbar b,
.statbar strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.panel {
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel h2,
.panel h3 {
  font-size: 18px;
}

.section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
}

.search-panel {
  max-width: 680px;
  margin-top: 24px;
}

.search-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.search-panel div {
  display: flex;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.search-panel input {
  padding: 0 16px;
  font-size: 17px;
}

.search-panel button {
  padding: 0 22px;
}

.listing-photo {
  margin: 0 0 28px;
}

.listing-photo img,
.listing-photo iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 628;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.listing-photo img {
  object-fit: cover;
}

.listing-photo iframe {
  height: auto;
}

.listing-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.listingGallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 30px;
}

.listingGallery::before {
  content: "Photos";
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.listingGallery figure {
  margin: 0;
}

.galleryLightboxButton {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
}

.galleryLightboxButton:focus-visible {
  outline: 3px solid #f6c65b;
  outline-offset: 4px;
}

.listingGallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  object-fit: cover;
}

.listingGallery figcaption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.photoLightboxOpen {
  overflow: hidden;
}

.photoLightbox[hidden] {
  display: none;
}

.photoLightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.photoLightboxBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.82);
}

.photoLightboxDialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
}

.photoLightboxImage {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 124px);
  margin: 0 auto;
  border-radius: 8px;
  background: #071827;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  object-fit: contain;
}

.photoLightboxCaption {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.photoLightboxClose {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.photoLightboxClose:focus-visible {
  outline: 3px solid #f6c65b;
  outline-offset: 3px;
}

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

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: 24px;
  align-items: start;
}

.listingMain {
  display: grid;
  gap: 28px;
  padding: 32px;
}

.listingMain h2,
.sidebar h2 {
  margin: 0;
  color: #111d2b;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.listingMain h2 + .mapBox,
.listingMain h2 + .infoGrid,
.listingMain h2 + p {
  margin-top: -10px;
}

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

.infoCard {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
}

.infoCard span,
.contactList span,
.meta {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.infoCard strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.mapBox iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 18px;
  background: var(--surface-2);
}

.listingLeafletMap {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  background: #dfeaf2;
}

.mapFallback {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 26px;
  text-align: center;
  background: var(--surface-2);
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 22px;
  padding: 32px;
}

.contactList {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contactList li {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  background: var(--surface);
}

.contactList li + li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contactList strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.hoursBlock {
  gap: 14px;
}

.hoursRows {
  display: grid;
  gap: 0;
}

.hoursRows div {
  display: grid;
  grid-template-columns: minmax(115px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hoursRows div:first-child {
  border-top: 0;
}

.hoursRows b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hoursRows strong {
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.hoursUnknown {
  display: block;
}

.sourceEvidence {
  display: grid;
  gap: 14px;
}

.sourceEvidence h2 {
  margin-top: 4px;
}

.evidenceChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evidenceChips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.full {
  width: 100%;
}

.sidebar .full {
  justify-content: center;
  margin-top: 2px;
  min-height: 54px;
  border-radius: 16px;
}

.claimBox {
  padding: 16px;
  border: 1px solid #b9ddec;
  border-radius: 8px;
  background: #eef9fd;
}

.claimBox h3 {
  margin-bottom: 8px;
}

.claimBox .btn {
  margin-top: 10px;
}

.related .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.card:hover {
  border-color: #b6c5d4;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.card .thumb {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  background: var(--surface-2);
  object-fit: cover;
}

.card iframe.thumb {
  pointer-events: none;
}

.cardBody {
  padding: 14px;
}

.cardBody p {
  margin: 7px 0 0;
}

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

.featured-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.featured-card > div {
  padding: 16px;
}

.featured-card p {
  color: var(--muted);
}

.featuredCard {
  position: relative;
  border-color: #e2c46e;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 42%);
  box-shadow: 0 18px 45px rgba(158, 111, 0, 0.14);
}

.featuredRibbon {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b9770e, #efd071);
  color: #211600;
  font-size: 12px;
  font-weight: 900;
}

.pill.gold {
  border-color: #e7ce7d;
  background: #fff4c9;
  color: #6b4b00;
}

.featured-photo {
  display: grid;
  min-height: 170px;
  place-items: center;
  background: linear-gradient(135deg, #dff2fb, #f2f8fb);
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.featured-photo img,
.featured-photo iframe {
  width: 100%;
  height: 190px;
  border: 0;
}

.featured-photo img {
  object-fit: cover;
}

.featured-photo iframe {
  pointer-events: none;
}

.link-card {
  display: block;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.link-card:hover,
.listing-card:hover {
  border-color: #b6c5d4;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.link-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.homeFeaturedUpsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 4px;
  padding: 26px;
  border: 1px solid #e7ce7d;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7dd 0%, #ffffff 58%, #eef8ff 100%);
  box-shadow: 0 18px 45px rgba(158, 111, 0, 0.1);
}

.homeFeaturedUpsell h2 {
  margin: 0 0 8px;
}

.homeFeaturedUpsell p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.homeFeaturedActions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.homeFeaturedSection .homeFeaturedGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homeFeaturedSection .card {
  min-width: 0;
}

.homeServiceBrowse {
  border-top: 1px solid var(--line);
}

.homeServiceGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.homeServiceLink {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #123f66;
  font-weight: 850;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(20, 70, 120, 0.04);
}

.homeServiceLink:hover {
  border-color: #b6c5d4;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.homeServiceLink span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.homeServiceLink strong {
  min-width: 36px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf7ff;
  color: #0d6a9a;
  font-size: 12px;
  text-align: center;
}

.popularCities {
  border-top: 1px solid var(--line);
}

.cityColumns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cityColumn {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 70, 120, 0.05);
}

.cityColumn h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.cityColumn ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cityColumn a {
  color: #123f66;
  font-weight: 750;
}

.allCitiesByCountry {
  border-top: 1px solid var(--line);
}

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

.countryCityBlock {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 70, 120, 0.05);
}

.countryCityBlock h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.allCityRegions {
  display: grid;
  gap: 12px;
}

.allCityRegion {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.regionLink {
  color: #0d2f4d;
  font-weight: 900;
}

.allCityLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.allCityLinks a {
  padding: 5px 8px;
  border: 1px solid #d8ecfa;
  border-radius: 999px;
  background: #ffffff;
  color: #123f66;
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.directSoldAd {
  display: grid;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid #b9d8ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(20, 70, 120, 0.07);
}

.directSoldAd-native {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin: 0 0 24px;
}

.directSoldAdLabel {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid #c4e5f8;
  border-radius: 999px;
  background: #eef8ff;
  color: #0f3d5f;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directSoldAdBody {
  display: grid;
  gap: 5px;
}

.directSoldAdBody strong {
  font-size: 18px;
  line-height: 1.2;
}

.directSoldAdBody p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.directSoldAdCta {
  width: max-content;
  color: var(--blue);
  font-weight: 900;
}

.adSlot {
  display: block;
  width: 100%;
  max-width: 970px;
  min-height: 90px;
  margin: 28px auto;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f7fc;
}

.adSlot-home {
  margin-top: 6px;
  margin-bottom: 24px;
}

.adSlotPlaceholder {
  min-height: 0;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  background: transparent;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.crumbs span {
  color: #8b98a5;
}

.listing-list {
  display: grid;
  gap: 12px;
}

.map-results-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.map-panel {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
}

.map-pins {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  list-style: none;
}

.map-pins li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.map-pins span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.listing-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
}

.listing-thumb {
  display: grid;
  min-height: 156px;
  place-items: center;
  background: linear-gradient(135deg, #eaf2f8, #f7f2e7);
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.listing-thumb img,
.listing-thumb iframe {
  width: 100%;
  height: 100%;
  min-height: 156px;
}

.listing-thumb img {
  object-fit: cover;
}

.listing-thumb iframe {
  border: 0;
  pointer-events: none;
}

.listing-card-body {
  padding: 16px;
}

.listing-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.listing {
  padding: 16px;
}

.listing p,
.listing-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.meta-line {
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--surface-2);
  color: #405064;
  font-size: 13px;
  font-weight: 700;
}

.filter-bar,
.card-actions,
.share-row,
.shareButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill,
.card-actions a,
.share-row a,
.share-row button,
.shareButtons a,
.shareButtons button,
.owner-box a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.shareButtons {
  align-items: center;
  margin-top: 18px;
}

.shareButtons span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-pill.is-active,
.card-actions a:first-child,
.owner-box a {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.card-actions {
  margin-top: 14px;
}

.share-row {
  margin: 0 0 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status-good {
  background: #eaf7f1;
  color: var(--green);
}

.status-warn {
  background: #fff6df;
  color: var(--amber);
}

.notice {
  padding: 14px 16px;
  background: #fffaf0;
  color: #6f5316;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.sidebar-stack {
  display: grid;
  gap: 16px;
}

.owner-box {
  padding: 18px;
  border: 1px solid #b9ddec;
  border-radius: 8px;
  background: #eef9fd;
}

.owner-box p {
  color: var(--muted);
}

.privacyPage {
  max-width: 860px;
}

.privacyPanel {
  margin-bottom: 16px;
}

.privacyPanel p {
  line-height: 1.65;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-top: 34px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #071827;
  color: #ffffff;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 750;
}

.footer-links a {
  color: #dbeafe;
}

.footer-links a:hover {
  color: #ffffff;
}

.empty-search {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

@media (max-width: 1100px) {
  .homeFeaturedSection .homeFeaturedGrid,
  .countryCityGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homeServiceGrid,
  .cityColumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero,
  .listing-hero,
  .two-col,
  .listing-card,
  .map-results-layout,
  .featured-grid,
  .statbar {
    grid-template-columns: 1fr;
  }

  .hero-home {
    padding-top: 46px;
  }

  .homeFeaturedUpsell {
    align-items: stretch;
    flex-direction: column;
  }

  .homeFeaturedActions {
    justify-content: flex-start;
  }

  .homeFeaturedActions .btn {
    width: 100%;
  }

  .homeFeaturedSection .homeFeaturedGrid,
  .homeServiceGrid,
  .cityColumns {
    grid-template-columns: 1fr;
  }

  .countryCityGrid,
  .allCityRegions,
  .directSoldAd-native {
    grid-template-columns: 1fr;
  }

  .directSoldAdCta {
    width: 100%;
  }

  .site-header {
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    width: min(92vw, 380px);
    max-height: calc(100vh - 90px);
    overflow: auto;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(16, 34, 53, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .menu-open .primary-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-search {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .nav {
    display: grid;
    gap: 4px;
    font-size: 15px;
  }

  .nav a {
    display: block;
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
  }

  .nav a:hover {
    background: var(--soft);
    text-decoration: none;
  }

  .hero {
    padding-top: 30px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    position: static;
  }

  .search-panel div {
    display: grid;
  }

  .search-panel button {
    min-height: 48px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(1120px, calc(100% - 24px));
    padding: 14px 0;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 8px 11px;
  }
}

@media (max-width: 360px) {
  .brand span:last-child {
    max-width: 134px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle span:last-child {
    display: none;
  }
}

.mapPanel {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mapBox iframe,
.bigMap iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
}

.mapExpand {
  display: inline-flex;
  margin: 12px 14px 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.locationHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: start;
}

.legacySearchBar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legacySearchForm {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.legacySearchForm label {
  display: grid;
  flex: 1 1 180px;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legacySearchForm input,
.legacySearchForm select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.mapResultsLayout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 520px);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  gap: 20px;
  align-items: start;
}

.resultsPanel {
  display: grid;
  gap: 16px;
}

.resultsToolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.resultsToolbar h1 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.08;
}

.filterPills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filterPills a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.filterPills .activeFilter {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.mapResultList {
  display: grid;
  gap: 16px;
}

.mapResultCard {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.resultThumb .thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  border: 0;
  object-fit: cover;
}

.resultBody {
  padding: 14px 14px 14px 0;
}

.resultCats a,
.resultActions a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.resultBody h3 {
  margin: 6px 0;
}

.resultAddress,
.resultMeta {
  color: var(--muted);
  font-size: 14px;
}

.resultMeta,
.resultActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.openNow {
  color: var(--green);
  font-weight: 900;
}

.closedNow {
  color: var(--amber);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .nav .navInner {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .navlinks {
    display: none;
  }

  .mobileNav {
    display: block;
  }
}

@media (max-width: 820px) {
  .nav {
    display: block;
  }

  .nav .navInner {
    height: 70px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 14px;
  }

  .nav a {
    padding: 0;
    color: inherit;
  }

  .headerSearch {
    grid-template-columns: minmax(100px, 1fr) auto;
  }

  .headerSearch input {
    padding: 10px;
    font-size: 13px;
  }

  .headerSearchBtn {
    padding: 10px 12px;
  }

  .mobileNavBackdrop {
    inset: 70px 0 0;
  }

  .mapPanel {
    position: static;
  }

  .locationHero,
  .mapResultsLayout,
  .mapResultCard {
    grid-template-columns: 1fr;
  }

  .resultBody {
    padding: 14px;
  }
}

/* LocalCarWash location-page map parity */
.locationHero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 28px;
  background: #ffffff;
}

.locationHero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.locationHero .searchbar {
  margin-top: 18px;
}

.locationMap {
  height: 280px;
}

.locationHero .heroLocationMap,
.locationHero .leafletResultsMap {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.locationHero .mapBox {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #e7f6ff;
}

.locationHero .mapBox iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

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

  .locationMap {
    height: 240px;
  }
}

.mapInner {
  position: relative;
  height: 100%;
  min-height: 360px;
  background: #dfeaf2;
}

.leafletResultsMap {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: #dfeaf2;
}

.mapToggle {
  display: none;
}

.mapCount {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  border-radius: 999px;
  padding: 12px 16px;
  background: #102235;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.leaflet-popup-content-wrapper {
  border-radius: 18px !important;
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: 300px !important;
}

.mapLoadFailed .leafletResultsMap::before {
  content: "Map could not be loaded.";
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-weight: 800;
}

.popupListingCard {
  width: 300px;
  background: #ffffff;
}

.popupImage {
  display: block;
  height: 138px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8f0ff, #ffffff);
}

.popupImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popupImageBlank {
  background: radial-gradient(circle at 30% 30%, #ffffff, #d8f0ff);
}

.popupBody {
  padding: 13px;
}

.popupBody h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.15;
}

.popupBody h3 a {
  color: var(--ink);
}

.popupBody p,
.popupMeta {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.popupMeta {
  font-size: 12px;
  margin-bottom: 10px;
}

.popupCats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 7px;
}

.popupCats span {
  border: 1px solid #c4e5f8;
  border-radius: 999px;
  padding: 4px 7px;
  background: #eaf7ff;
  color: #0f3d5f;
  font-size: 11px;
  font-weight: 850;
}

.popupActions {
  display: flex;
  gap: 8px;
}

.popupActions a {
  flex: 1;
  border-radius: 10px;
  padding: 8px 9px;
  background: #1673b9;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.popupActions a:first-child {
  border: 1px solid #b9d8ef;
  background: #ffffff;
  color: #0b5f99 !important;
}

@media (max-width: 980px) {
  .mapInner,
  .leafletResultsMap {
    min-height: 0;
  }

  .mapPanel {
    height: 190px;
    min-height: 0;
  }

  .mapInner.isExpanded {
    height: 72vh;
  }

  .mapPanel:has(.mapInner.isExpanded) {
    height: 72vh;
  }

  .mapToggle {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 500;
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    padding: 10px 13px;
    background: #ffffff;
    color: var(--blue);
    font: inherit;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  }

  .mapCount {
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .mapPanel:not(:has(.mapInner.isExpanded)) .mapCount {
    display: none;
  }
}

@media (max-width: 620px) {
  .headerSearch {
    display: none;
  }

  .nav .navInner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .searchbar {
    display: grid;
  }

  .searchbar .btn {
    min-height: 48px;
  }
}

/* LocalCarWash-style header and location pages */
.wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
}

body::before {
  display: none;
}

.nav {
  display: block;
  background: #071827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav .navInner {
  width: 100%;
  max-width: none;
  height: 76px;
  display: grid;
  grid-template-columns: auto minmax(220px, 540px) auto auto;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding-left: 22px;
  padding-right: 22px;
}

.nav .navInner.headerLayoutCentered {
  grid-template-columns: minmax(180px, 1fr) minmax(260px, 540px) minmax(180px, 1fr) auto;
}

.brandLogo {
  flex: 0 0 auto;
  justify-self: start;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.headerSearch {
  justify-self: center;
  width: 100%;
  max-width: 540px;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.headerSearch input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  padding: 11px 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b74de, #075fb8);
  color: #ffffff;
  padding: 15px 22px;
  font: inherit;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 116, 222, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn.secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid #b9d8ef;
  box-shadow: 0 10px 24px rgba(20, 70, 120, 0.12);
}

.headerSearchBtn {
  padding: 11px 16px;
  border-radius: 13px;
  white-space: nowrap;
}

.navlinks {
  justify-self: end;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.navlinks a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #edf7ff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.navlinks a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
}

.navlinks a[href="/featured-listing/"] {
  background: linear-gradient(135deg, #f8d77a, #c7972d);
  color: #1f1604;
}

.mobileNav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobileNavToggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.burgerIcon {
  width: 18px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.burgerIcon span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobileNav.isOpen .burgerIcon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobileNav.isOpen .burgerIcon span:nth-child(2) {
  opacity: 0;
}

.mobileNav.isOpen .burgerIcon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobileNavBackdrop {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 8;
  background: rgba(7, 24, 39, 0.48);
  backdrop-filter: blur(3px);
}

.mobileNavPanel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 9;
  width: min(92vw, 380px);
  max-height: calc(100vh - 98px);
  overflow: auto;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(220, 231, 241, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(7, 24, 39, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mobileNav.isOpen .mobileNavPanel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobileNav.isOpen .mobileNavBackdrop {
  display: block;
}

.mobileNavHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 3px 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobileNavHeader button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobileNavSearch {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.mobileNavSearch .searchbar {
  margin-top: 0;
  display: grid;
  gap: 8px;
  max-width: none;
}

.mobileNavSearch .searchbar input,
.mobileNavSearch .searchbar .btn {
  width: 100%;
}

.mobileNavLinks {
  display: grid;
  gap: 4px;
}

.mobileNavLinks a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 900;
}

.mobileNavLinks a::after {
  content: "›";
  color: #8aa9bf;
  font-size: 22px;
  line-height: 1;
}

.mobileNavLinks a:hover {
  background: #f3f9ff;
  text-decoration: none;
}

.searchbar {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  max-width: 760px;
}

.searchbar input,
.searchbar select {
  flex: 1 1 auto;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid #cbdbea;
  border-radius: 15px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.locationHero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.locationHero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.locationMap {
  height: 280px;
}

.legacySearchBar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
}

.legacySearchForm {
  display: flex;
  gap: 12px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
}

.legacySearchForm label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legacySearchForm input,
.legacySearchForm select {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  color: var(--ink);
}

.mapResultsLayout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 520px;
  height: calc(100vh - 142px);
  min-height: 680px;
}

.mapPanel {
  position: sticky;
  top: 0;
  height: 100%;
  background: #dfeaf2;
  overflow: hidden;
}

.mapBox {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #e7f6ff;
  height: 330px;
}

.mapBox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bigMap {
  height: 360px;
  min-height: 360px;
  border-radius: 0;
  border: 0;
}

.directoryMap {
  position: relative;
  background: linear-gradient(135deg, #eaf7fb 0%, #d8edf6 48%, #eef8f1 100%);
}

.directoryMapSvg {
  display: block;
  width: 100%;
  height: 100%;
}

.directoryMapBase {
  fill: transparent;
}

.directoryMapGrid {
  fill: none;
  stroke: rgba(11, 86, 122, 0.11);
  stroke-width: 1;
}

.directoryMapRoute {
  fill: none;
  stroke: rgba(18, 116, 77, 0.22);
  stroke-linecap: round;
  stroke-width: 16;
}

.directoryMapDot {
  fill: #0b7bdc;
  opacity: 0.55;
  stroke: #ffffff;
  stroke-width: 1.4;
}

.directoryMapDot.isTopPin {
  fill: var(--blue);
  opacity: 1;
  stroke-width: 2;
}

.directoryMapNumber {
  fill: #ffffff;
  font-size: 8px;
  font-weight: 900;
  pointer-events: none;
}

.directoryMapMeta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 0;
  min-width: 112px;
  border: 1px solid rgba(10, 31, 51, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.directoryMapMeta strong {
  font-size: 24px;
  line-height: 1;
}

.directoryMapMeta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mapExpand {
  display: inline-flex;
  width: fit-content;
  margin: 14px 14px 0;
  background: #ffffff;
  color: var(--blue);
  font-weight: 850;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.resultsPanel {
  overflow: auto;
  background: #ffffff;
  border-left: 1px solid var(--line);
  padding: 22px;
}

.resultsToolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.resultsToolbar h1 {
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 5px;
}

.viewIcons {
  color: var(--muted);
  font-size: 22px;
  white-space: nowrap;
}

.filterPills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.filterPills a,
.filters a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  color: var(--muted);
  background: #f8fbff;
}

.filterPills a.activeFilter {
  background: #dff7ea;
  color: #065f2f;
  border-color: #aee2c2;
}

.mapResultList {
  display: grid;
  gap: 16px;
}

.mapResultCard {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 70, 120, 0.06);
}

.resultThumb .thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  border: 0;
  object-fit: cover;
}

.resultBody {
  padding: 14px 14px 14px 0;
}

.resultCats a {
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
}

.resultBody h3 {
  margin: 6px 0;
  font-size: 18px;
}

.resultAddress {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.resultMeta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.openNow {
  color: #06733b;
  font-weight: 850;
}

.closedNow {
  color: #71330f;
  font-weight: 850;
}

.resultActions {
  display: flex;
  gap: 12px;
}

.resultActions a {
  color: var(--blue);
  font-weight: 850;
}

.listingMain .mapBox {
  height: 360px;
  border-radius: 18px;
}

.listingMain .mapBox iframe {
  border-radius: 18px;
}

.utilityHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 30px;
  align-items: start;
  padding: 40px 0 28px;
}

.compactUtilityHero {
  grid-template-columns: minmax(0, 820px);
}

.utilitySidePanel {
  display: grid;
  gap: 12px;
}

.stepList {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.staticFormNotice {
  margin-bottom: 20px;
  padding: 16px 18px;
  background: #f7fbfe;
}

.accountStatusNote,
.workflowSteps {
  border: 1px solid #b9ddec;
  border-radius: 8px;
  background: #eef9fd;
}

.accountStatusNote {
  margin-top: 20px;
  padding: 16px 18px;
}

.accountStatusNote p {
  margin: 6px 0 0;
}

.workflowSteps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--line);
}

.workflowSteps div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #ffffff;
}

.workflowSteps span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.staticForm {
  display: grid;
  gap: 28px;
  margin-bottom: 34px;
  padding: 28px;
}

.staticForm section {
  display: grid;
  gap: 16px;
}

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

.formGrid .wide,
.staticForm label.wide {
  grid-column: 1 / -1;
}

.staticForm label,
.checkboxGrid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.staticForm input,
.staticForm select,
.staticForm textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.staticForm textarea {
  resize: vertical;
}

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

.checkboxGrid label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.checkboxGrid input,
.consentBox input {
  width: auto;
}

.hoursGrid {
  display: grid;
  gap: 10px;
}

.hoursRow {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.hoursRow > span,
.hoursRow label {
  font-size: 13px;
  font-weight: 850;
}

.hoursRow label {
  display: grid;
  gap: 5px;
}

.hoursRow .inlineCheck {
  grid-template-columns: auto auto;
  align-items: center;
}

.consentBox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 15px;
  border: 1px solid #b9ddec;
  border-radius: 8px;
  background: #eef9fd;
  color: var(--ink);
  font-weight: 650;
}

.submitFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.submitFooter .btn {
  min-height: 44px;
  padding: 0 18px;
}

.hpField {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.accountActionGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 32px;
}

.accountAuthGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.accountActionCard {
  display: grid;
  align-content: start;
  gap: 10px;
}

.accountActionCard .btn {
  width: fit-content;
  margin-top: 4px;
}

.accountDashboardGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 32px;
}

.accountDashboardCard {
  display: grid;
  align-content: start;
  gap: 10px;
}

.accountDashboardCard h2 {
  margin: 0;
}

.accountDashboardWide {
  grid-column: 1 / -1;
}

.dashboardEntitlementList {
  display: grid;
  gap: 10px;
}

.dashboardEntitlement {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.dashboardEntitlement span,
.dashboardEntitlement small {
  color: var(--muted);
}

.dashboardEntitlement a {
  width: max-content;
  color: var(--blue);
  font-weight: 900;
}

.accountDangerZone {
  border-color: #efc0b1;
  background: #fffafa;
  display: grid;
  gap: 12px;
}

.deleteAccountForm {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.deleteAccountForm label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.deleteAccountForm input {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.dashboardEditorPanel {
  margin-bottom: 32px;
}

.lockedFieldGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lockedFieldGrid div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.lockedFieldGrid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lockedFieldGrid strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pricingPlanPage,
.advertiseFinalCta {
  margin: 30px 0;
  padding: 28px;
}

.pricingOptionGrid {
  align-items: stretch;
  margin-top: 22px;
}

.pricingOptionGrid .cardBody {
  display: grid;
  gap: 10px;
  height: 100%;
  align-content: start;
}

.pricingOptionGrid .priceLabel {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.pricingOptionGrid ul {
  margin: 0 0 8px;
  padding-left: 20px;
  color: var(--muted);
}

.pricingOptionGrid .btn {
  width: fit-content;
  margin-top: auto;
}

.featuredHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 30px;
  align-items: start;
  padding: 40px 0 28px;
}

.ownerOptionsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.ownerOptionsGrid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 15px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.ownerOptionsGrid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ownerOptionsGrid strong {
  font-size: 22px;
  line-height: 1.05;
}

.ownerOptionsGrid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ownerOptionsGrid a {
  font-weight: 900;
}

.ownerOptionFeatured,
.pricingOptionGrid .featuredCard {
  border-color: #f0c55b;
  background: #fff9e8;
}

.featuredExposurePanel,
.featuredPriceGrid,
.billingNote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.featuredExposurePanel {
  padding: 18px;
}

.featuredPriceGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  background: var(--line);
}

.featuredPriceGrid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #ffffff;
}

.featuredPriceGrid strong {
  font-size: 24px;
  line-height: 1;
  color: var(--blue);
}

.featuredPriceGrid span,
.featuredLocationText small {
  color: var(--muted);
  font-size: 13px;
}

.featuredCheckoutPanel {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  padding: 28px;
}

.createListingPathPanel {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  padding: 28px;
}

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

.createListingChoiceGrid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.createListingChoiceGrid h3,
.createListingChoiceGrid p {
  margin: 0;
}

.createListingChoiceGrid .priceLabel {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.createListingChoiceGrid .btn {
  width: fit-content;
}

.featuredSelectionForm {
  display: grid;
  gap: 18px;
}

.featuredSelectionForm .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.featuredStage {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.featuredListingPicker {
  display: grid;
  gap: 12px;
}

.featuredListingPicker .ctaRow {
  margin-top: 2px;
}

.featuredLocationGrid label {
  align-items: start;
}

.featuredLocationText {
  display: grid;
  gap: 3px;
}

.billingNote {
  padding: 16px 18px;
  background: #eef9fd;
}

.billingNote p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .navlinks {
    display: none;
  }

  .mobileNav {
    display: block;
  }

  .nav .navInner {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .nav .navInner.headerLayoutCentered {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }
}

@media (max-width: 980px) {
  .listingHeroGrid,
  .detail,
  .infoGrid,
  .related .grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .mapResultsLayout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mapPanel {
    position: relative;
    height: 340px;
  }

  .resultsPanel {
    border-left: 0;
  }

  .legacySearchForm {
    align-items: stretch;
    flex-direction: column;
  }

  .legacySearchForm input,
  .legacySearchForm select {
    min-width: 0;
    width: 100%;
  }

  .utilityHero,
  .featuredHero,
  .formGrid,
  .workflowSteps,
  .accountActionGrid,
  .lockedFieldGrid {
    grid-template-columns: 1fr;
  }

  .accountDashboardGrid {
    grid-template-columns: 1fr;
  }

  .ownerOptionsGrid,
  .featuredPriceGrid,
  .createListingChoiceGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkboxGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .locationMap {
    height: 240px;
  }

  .searchbar {
    flex-direction: column;
  }

  .mapResultCard {
    grid-template-columns: 120px 1fr;
  }

  .checkboxGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .listingHero {
    padding-top: 20px;
  }

  .listingHeroGrid {
    gap: 20px;
  }

  .lead {
    font-size: 17px;
  }

  .shareButtons,
  .ctaRow,
  .pillrow {
    gap: 8px;
  }

  .shareButtons a,
  .shareButtons button,
  .pill {
    min-height: 32px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

.mapBox iframe {
    height: 260px;
  }

  .mapPanel .bigMap {
    height: 260px;
    min-height: 260px;
  }

  .listingGallery {
    grid-template-columns: 1fr;
  }

  .photoLightbox {
    padding: 14px;
  }

  .photoLightboxDialog {
    max-height: calc(100vh - 28px);
  }

  .photoLightboxImage {
    max-height: calc(100vh - 108px);
  }

  .nav .navInner {
    height: 70px;
    grid-template-columns: auto auto;
    gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav .navInner.headerLayoutCentered {
    grid-template-columns: auto auto;
  }

  .brand-logo-img {
    width: 150px;
    max-width: min(40vw, 150px);
  }

  .headerSearch {
    display: none;
  }

  .mobileNavBackdrop {
    inset: 70px 0 0;
  }

  .mobileNavPanel {
    position: fixed;
    top: 82px;
    right: 14px;
    max-height: calc(100vh - 96px);
  }

  .brandLogo {
    font-size: 18px;
  }

  .mapResultCard {
    grid-template-columns: 1fr;
  }

  .createListingChoiceGrid {
    grid-template-columns: 1fr;
  }

  .listingMain,
  .sidebar {
    padding: 22px;
  }

  .hoursRows div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hoursRows strong {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .resultBody {
    padding: 14px;
  }
}
