.footer-brand .site-logo {
  display: inline-flex;
  align-items: center;
}

.footer-brand .site-logo img {
  height: 100px;
  max-height: 100px;
  width: auto;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  color: var(--re-text-muted, #6c757d);
  font-size: 0.9rem;
}
.site-footer {
  background-color: #fff5f5;
  color: #3a1a1a;
  padding: clamp(2rem, 6vw, 3.5rem) 0;
  border-top: 1px solid var(--re-border, #e1e5ee);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-inner {
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  color: var(--re-text-muted);
}

.footer-navigation {
  flex: 1 1 auto;
  text-align: right;
}

.site-info {
  margin: 0;
  color: var(--re-text-muted);
  text-align: center;
  margin-top: 1rem;
}
:root {
  --re-card-bg: #ffffff;
  --re-text-muted: #6b3131;
  --re-border-heavy: #f7caca;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(41, 16, 16, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}

@media (max-width: 1024px) {
  .nav-overlay {
    right: clamp(260px, 70vw, 520px);
  }
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--re-text-muted);
  margin-bottom: 0.25rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header h2,
.section-header h3 {
  margin: 0;
}

/* Hero Slider - Enhanced Styles */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #c62828 0%, #5b1421 100%);
  color: #fff;
  min-height: clamp(420px, 60vh, 600px);
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 60px rgba(198, 40, 40, 0.25);
}

.hero-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  transform: scale(1.05);
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem);
  max-width: 800px;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-slide__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}

.hero-slide__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide__price {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(198, 40, 40, 0.9);
  border-radius: 12px;
}

.hero-slide__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.hero-slider__controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-slider__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--re-primary, #c62828);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-slider__btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.hero-slider__btn:active {
  transform: scale(0.95);
}

.hero-slider__btn svg {
  width: 24px;
  height: 24px;
}

.hero-slider__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.hero-slider__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero-slider__indicator.is-active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
  border-color: #fff;
}

.hero-slider__counter {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-slider__separator {
  margin: 0 0.25rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: clamp(350px, 50vh, 450px);
    border-radius: 16px;
  }

  .hero-slide__content {
    padding: clamp(1.5rem, 5vw, 2.5rem);
  }

  .hero-slide__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-slide__price {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .hero-slide__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-slide__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider__controls {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .hero-slider__btn {
    width: 48px;
    height: 48px;
  }

  .hero-slider__btn svg {
    width: 20px;
    height: 20px;
  }

  .hero-slider__indicators {
    bottom: 1rem;
  }

  .hero-slider__counter {
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.section-header .btn {
  white-space: nowrap;
}

.site-branding .site-logo {
  display: inline-flex;
  align-items: center;
}

.site-branding .site-logo img,
.site-branding .custom-logo-link img {
  height: 100px;
  max-height: 100px;
  width: auto;
  display: block;
}

.property-grid--blog .entry-header {
  margin-bottom: 0.75rem;
}

.property-grid--blog article {
  background: var(--re-card-bg);
  border-radius: var(--re-radius);
  padding: 1.25rem;
  box-shadow: var(--re-shadow);
}

.property-card {
  position: relative;
  background: var(--re-card-bg);
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(198, 40, 40, 0.12);
  border-color: var(--re-primary, #0e6ba8);
}

.property-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;
  cursor: pointer;
}

.property-card-media {
  position: relative;
  display: block;
  height: 220px;
}

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

.property-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.property-chip-premium {
  background: rgba(198, 40, 40, 0.92);
  color: #fff;
}

.property-gallery-count {
  position: absolute;
  bottom: 1rem;
  /* right: 1rem; */
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-gallery-count svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.95;
}

.property-card-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 0;
}

.property-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.property-type {
  font-weight: 600;
  color: var(--re-primary);
}

.property-card-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--re-text-muted);
  margin-top: 0.2rem;
}

.property-card-date svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.property-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--re-dark);
}

.property-card-link:hover .property-title {
  color: var(--re-primary);
}

.property-location {
  color: var(--re-text-muted);
  margin: 0;
}

.property-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.property-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--re-primary);
}

.property-price--lg {
  font-size: 1.6rem;
}

.property-meta-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--re-text-muted);
}

.property-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--re-border, #e1e5ee);
  padding-top: 0.85rem;
  flex-wrap: wrap;
  min-height: 60px;
  position: relative;
}

.property-agent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
}

.property-agent-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14, 107, 168, 0.15);
  color: var(--re-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(198, 40, 40, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.property-agent-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.4em;
  display: flex;
  align-items: center;
}

.property-agent-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--re-text-muted);
}

.property-card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
}

.property-action {
  border: 1px solid var(--re-border, #f7caca);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--re-dark);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-height: 36px;
  box-sizing: border-box;
}

.property-action:hover {
  transform: translateY(-1px);
}

.property-action-call {
  background: rgba(198, 40, 40, 0.08);
  border-color: rgba(198, 40, 40, 0.35);
  color: var(--re-primary);
}

.property-card-wrapper {
  height: 100%;
}

.property-card-wrapper.is-hidden {
  display: none;
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--re-primary);
  padding: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
}

.btn-text:hover span {
  transform: translateX(2px);
}

.btn-text span {
  transition: transform 0.2s ease;
}

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

.news-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(15, 25, 60, 0.12);
}

.news-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__flag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--re-primary);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.news-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.news-card__meta {
  display: flex;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--re-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.news-card__title {
  margin: 0;
  font-size: 1.2rem;
}

.news-card__title a {
  color: var(--re-dark);
}

.news-card__excerpt {
  color: var(--re-text-muted);
  margin: 0;
}

.news-card__actions {
  margin-top: auto;
}

.single-article {
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  overflow: hidden;
}

.single-article__hero {
  position: relative;
  height: clamp(260px, 50vw, 420px);
  overflow: hidden;
}

.single-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-article__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.single-article__body {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.single-article__header h1 {
  margin-bottom: 0.5rem;
}

.entry-meta--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--re-text-muted);
  font-weight: 500;
}

.single-article__content p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.single-article__content img {
  border-radius: 24px;
  margin: 1.5rem 0;
}

.single-article__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--re-border, #e1e5ee);
  padding-top: 1.25rem;
}

.single-article__tags a {
  display: inline-flex;
  background: rgba(220, 53, 69, 0.08);
  color: var(--re-primary);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.single-article__share {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 600;
}

.modern-comments {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.comments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comments-title {
  margin: 0;
}

.comments-count {
  background: rgba(220, 53, 69, 0.08);
  color: var(--re-primary);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card {
  background: var(--re-light);
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 1.25rem;
}

.comment-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comment-card__top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.comment-card__avatar {
  flex-shrink: 0;
}

.comment-card__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(198, 40, 40, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.comment-card__author {
  margin: 0;
}

.comment-card__content {
  color: var(--re-dark);
  line-height: 1.65;
}

.comment-card__footer {
  display: flex;
  justify-content: flex-end;
}

.modern-comment-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.modern-comment-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modern-comment-form .form-field--wide {
  grid-column: 1 / -1;
}

.modern-comment-form label {
  font-weight: 600;
}

.modern-comment-form input,
.modern-comment-form textarea {
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 0.75rem;
  background: var(--re-light);
  font-size: 1rem;
}

.modern-comment-form textarea {
  resize: vertical;
}

.modern-comment-form .form-submit {
  margin-top: 0.5rem;
}

.comment-awaiting-moderation {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 16px;
  padding: 0.85rem;
  font-size: 0.9rem;
  color: #a05f00;
}

.property-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.property-list-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--re-primary, #0e6ba8);
}

.property-list-link {
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 1fr);
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex: 1;
  cursor: pointer;
}

.property-list-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  min-height: 120px;
}

.property-list-thumb img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.property-chip-new,
.property-chip-priority {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.property-chip-new {
  background: #ff7043;
}

.property-chip-priority {
  background: rgba(198, 40, 40, 0.95);
}

.property-gallery-count {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-gallery-count svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.95;
}

.property-list-time {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.property-list-content {
  display: flex;
  flex-direction: column;
  gap: 0.0025rem;
  position: relative;
}

.property-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--re-dark);
}

.property-list-link:hover .property-title {
  color: var(--re-primary);
}

.property-list-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--re-text-muted);
  margin-top: 0.2rem;
}

.property-list-date svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.property-type-detail {
  margin: 0;
  font-size: 0.85rem;
  color: var(--re-text-muted);
  line-height: 1.3;
}

.property-list-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.005rem 0.75rem;
  margin: 0.1rem 0;
}

.property-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--re-primary);
}

.property-price-per-m2 {
  font-size: 0.9rem;
  color: var(--re-text-muted);
}

.property-area {
  font-size: 0.9rem;
  color: var(--re-text-muted);
}

.property-location {
  margin: 0;
  font-size: 0.85rem;
  color: var(--re-text-muted);
  line-height: 1.3;
}

.property-list-agent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--re-border, #e1e5ee);
}

.property-agent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--re-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.property-agent-initial {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.property-agent-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.property-agent-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--re-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-agent-listings {
  font-size: 0.75rem;
  color: var(--re-text-muted);
}

.property-list-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  margin-left: calc(180px + 0.75rem);
}

.property-list-actions .btn {
  flex: 0 0 auto;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 1025px) {
  .property-list-actions {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .property-list-actions {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.btn-light {
  background: rgba(14, 107, 168, 0.12);
  color: var(--re-primary);
}

.empty-state {
  text-align: center;
  color: var(--re-text-muted);
  padding: 1rem 0;
}

@media (max-width: 1024px) {
  .header-top-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "cta cta";
    align-items: center;
    gap: 0.75rem 1rem;
  }

  .site-branding {
    grid-area: logo;
  }

  .header-actions {
    grid-area: cta;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions .nav-toggle {
    grid-area: toggle;
    justify-self: end;
  }

  .header-actions .btn {
    flex: 1 1 140px;
    justify-content: center;
    text-align: center;
  }

  .primary-navigation,
  .property-category-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: clamp(260px, 70vw, 520px);
    border-top: none;
    border-right: 1px solid var(--re-border, #e1e5ee);
    padding: 4.75rem 2rem 2rem;
    background: #fff;
    box-shadow: 35px 0 60px rgba(41, 16, 16, 0.25);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: block;
    z-index: 70;
    overflow-y: auto;
  }

  .primary-navigation.is-open,
  .property-category-navigation.is-open {
    transform: translateX(0);
  }

  /* Stack menus vertically when both are present */
  .primary-navigation + .property-category-navigation {
    top: auto;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.35s ease 0.1s;
  }

  .primary-navigation.is-open + .property-category-navigation.is-open {
    transform: translateX(0);
  }

  .primary-navigation .menu,
  .property-category-navigation .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .primary-navigation .menu a,
  .property-category-navigation .menu a {
    font-size: 1.05rem;
  }

  .primary-navigation .menu li + li {
    border-top: 1px solid rgba(41, 16, 16, 0.08);
    padding-top: 0.65rem;
  }

  .property-category-navigation .menu li + li {
    border-top: 1px solid rgba(198, 40, 40, 0.15);
    padding-top: 0.65rem;
  }

  /* Add separator between menus */
  .primary-navigation + .property-category-navigation::before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(198, 40, 40, 0.2);
    margin: 1.5rem 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-sticky {
  box-shadow: 0 12px 28px rgba(41, 16, 16, 0.08);
}

.header-top {
  background: #f8fafc;
  border-bottom: 1px solid var(--re-border, #e1e5ee);
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.header-top-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.5rem 0.35rem;
  flex-wrap: wrap;
}

.header-top-link {
  color: inherit;
  font-weight: 500;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-actions .btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-actions .btn + .btn {
  margin-left: 0;
}

.header-actions .btn-primary {
  box-shadow: 0 8px 18px rgba(198, 40, 40, 0.35);
}

.header-actions .btn-outline {
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: var(--re-primary);
  background: transparent;
}

.header-actions .btn-outline:hover {
  background: rgba(198, 40, 40, 0.08);
  transform: translateY(-1px);
}

.header-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(198, 40, 40, 0.45);
}

.primary-navigation {
  flex: 1 1 auto;
}

.primary-navigation .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.primary-navigation .menu a {
  font-weight: 500;
  color: var(--re-dark);
}

/* Property Category Navigation */
.property-category-navigation {
  flex: 1 1 auto;
}

.property-category-navigation .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.property-category-navigation .menu a {
  font-weight: 500;
  color: var(--re-primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.property-category-navigation .menu a:hover {
  color: var(--re-primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .property-category-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: clamp(260px, 70vw, 520px);
    border-top: none;
    border-right: 1px solid var(--re-border, #e1e5ee);
    padding: 4.75rem 2rem 2rem;
    background: #fff;
    box-shadow: 35px 0 60px rgba(41, 16, 16, 0.25);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: block;
    z-index: 70;
    overflow-y: auto;
  }

  .property-category-navigation.is-open {
    transform: translateX(0);
  }

  .property-category-navigation .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .property-category-navigation .menu a {
    font-size: 1.05rem;
  }

  .property-category-navigation .menu li + li {
    border-top: 1px solid rgba(198, 40, 40, 0.15);
    padding-top: 0.65rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: var(--re-primary);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.35);
  gap: 5px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--re-primary);
  outline-offset: 3px;
}

.nav-toggle:hover {
  background: var(--re-primary-dark);
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.45);
  transform: translateY(-1px);
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }
}

.property-single-article {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 2rem;
}

.property-hero-gallery {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 1rem;
  box-shadow: var(--re-shadow);
}

.property-hero-main {
  margin: 0;
}

.property-hero-main img {
  width: 100%;
  border-radius: 20px;
  height: 420px;
  object-fit: cover;
}

.property-thumb-strip {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.property-thumb {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  flex: 0 0 80px;
  opacity: 0.7;
}

.property-thumb.is-active,
.property-thumb:hover {
  opacity: 1;
  outline: 2px solid var(--re-primary);
}

.property-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.property-summary {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.property-summary h1 {
  margin-block: 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.property-summary-pill {
  text-align: right;
}

.property-spec-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.property-spec-grid--primary {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.property-spec-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  margin-top: 0.4rem;
}

.property-spec-card {
  background: #fff;
  border: 1px solid var(--re-border, #e1e5ee);
  border-radius: 18px;
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--re-shadow);
}

.property-spec-address {
  width: 100%;
  margin-top: 0.75rem;
}

.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 1.5rem;
  box-shadow: var(--re-shadow);
}

.sidebar-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.sidebar-card__header h3 {
  margin: 0;
  font-size: 1rem;
}

.sidebar-link {
  font-size: 0.85rem;
  color: var(--re-primary);
  font-weight: 600;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-list__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--re-text-muted);
}

.sidebar-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-tags li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--re-light);
  border-radius: 16px;
  padding: 0.65rem 0.85rem;
}

.sidebar-tags li a {
  font-weight: 600;
  color: var(--re-dark);
}

.sidebar-tags__count {
  font-size: 0.85rem;
  color: var(--re-primary);
  font-weight: 600;
}

.property-spec-label {
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.property-spec-value {
  font-size: 1.1rem;
}

.property-description {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
}

.property-video,
.property-map {
  margin-top: 1.5rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
}

.property-map iframe,
.property-video iframe {
  width: 100%;
  border: none;
  border-radius: 18px;
  min-height: 320px;
}

.property-related {
  margin-top: 2rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  padding: 1.5rem;
}

.property-related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.property-related-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--re-border, #e1e5ee);
  background: #f9fafb;
}

.property-related-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.property-related-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--re-dark);
}

.property-related-price {
  color: var(--re-primary);
  font-weight: 700;
}

.property-related-area {
  justify-self: end;
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.property-contact-box {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 1.5rem;
  box-shadow: var(--re-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.property-contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.property-contact-header .property-agent-avatar {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(198, 40, 40, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--re-text-muted);
}

.property-contact-meta span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.property-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.property-contact-form input,
.property-contact-form textarea {
  width: 100%;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 0.65rem 0.85rem;
  background: #fff;
  color: var(--re-dark);
}

.property-contact-form button {
  width: 100%;
  margin-top: 0.5rem;
}

.property-sidebar .widget {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--re-radius);
  box-shadow: var(--re-shadow);
  border: 1px solid var(--re-border, #e1e5ee);
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: var(--re-radius);
  margin-bottom: 1rem;
}

.notice-success {
  background: rgba(42, 181, 111, 0.15);
  border: 1px solid rgba(42, 181, 111, 0.3);
  color: var(--re-success);
}

.property-search-form .search-actions {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
}

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

.property-categories {
  margin: 3rem auto;
}

.property-category-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.property-category-block {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  box-shadow: var(--re-shadow);
  padding: 1.5rem;
}

.property-category-block__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.property-category-block__header h3 {
  margin: 0.2rem 0 0;
}

.property-list--compact {
  gap: 0.75rem;
  margin: 0 -1.5rem -1.5rem;
  padding: 0 1.5rem 1.5rem;
}

.property-list--compact .property-list-item {
  padding: 0.6rem;
  margin: 0;
}

.footer-quick-info {
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.quick-card {
  width: 30%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border, #e1e5ee);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--re-shadow);
  text-decoration: none;
  color: var(--re-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(41, 16, 16, 0.15);
}

.quick-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--re-text-muted);
}

.quick-card__value {
  font-size: 1.2rem;
  color: var(--re-primary);
}

.quick-card small {
  margin: 0;
  color: var(--re-text-muted);
}

.quick-card--muted {
  background: var(--re-light);
  border-style: solid;
}

.list-more {
  margin-top: 1.5rem;
  text-align: center;
}

/* Agent profile page */
.agent-profile {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.agent-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 5vw, 3.25rem);
  background: linear-gradient(130deg, #fffdf5, #fce8cb);
  border-radius: 36px;
  border: 1px solid rgba(220, 174, 108, 0.4);
  box-shadow: 0 35px 75px rgba(171, 123, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.agent-hero::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.agent-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.agent-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #b88631;
  font-weight: 600;
  margin: 0;
}

.agent-hero__name {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #442513;
}

.agent-hero__tagline {
  font-size: 1.15rem;
  color: #6c4521;
  margin: 0;
}

.agent-hero__intro {
  color: #5b4639;
  margin: 0;
  line-height: 1.7;
}

.agent-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.agent-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #4d2c16;
  font-weight: 500;
  text-decoration: none;
}

.agent-hero__meta-item:hover {
  background: rgba(183, 138, 52, 0.18);
}

.agent-hero__meta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff6ea;
  border: 1px solid rgba(185, 134, 49, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #b88631;
}

.agent-hero__meta-text {
  flex: 1;
}

.agent-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.agent-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.agent-hero__rings {
  position: relative;
  width: min(360px, 32vw);
  height: min(360px, 32vw);
}

.agent-hero__rings::before,
.agent-hero__rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.agent-hero__rings::after {
  inset: 1.2rem;
  border-color: rgba(220, 174, 108, 0.45);
}

.agent-hero__photo-frame {
  position: absolute;
  inset: 0.6rem;
  border-radius: 50%;
  padding: 0.85rem;
  background: linear-gradient(180deg, #fee8c8, #d0a24b);
  box-shadow: inset 0 0 0 12px #fffaf1, 0 25px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.agent-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.agent-hero__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  transform: translateX(30%);
  background: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #6d431e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.agent-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.agent-highlight {
  background: #fff;
  border-radius: 22px;
  padding: 1.25rem;
  border: 1px solid var(--re-border);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
}

.agent-highlight span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--re-text-muted);
}

.agent-highlight strong {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.35rem;
  color: var(--re-primary);
}

.agent-highlight p {
  margin: 0.35rem 0 0;
  color: #5b5f6a;
}

.agent-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.agent-panel {
  background: #fff;
  border-radius: 26px;
  padding: 1.75rem;
  border: 1px solid var(--re-border);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
}

.agent-panel h2 {
  margin-top: 0;
  color: #442513;
}

.agent-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.agent-services {
  background: linear-gradient(135deg, #fffaf4, #fdf2df);
  border-radius: 32px;
  padding: clamp(1.75rem, 5vw, 3rem);
  border: 1px solid rgba(241, 208, 164, 0.6);
}

.agent-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.agent-service-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid var(--re-border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 12px 25px rgba(0, 0, 0, 0.06);
}

.agent-service-card h3 {
  margin-top: 0;
  color: #4a2a11;
}

.agent-contact-card {
  position: relative;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(215, 177, 95, 0.5);
  padding: clamp(1.5rem, 5vw, 3rem);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.agent-contact-card::before {
  content: "";
  position: absolute;
  right: -20%;
  top: 50%;
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 214, 153, 0.9), rgba(255, 214, 153, 0));
  transform: translateY(-50%);
  pointer-events: none;
}

.agent-contact-card__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.agent-contact-card__brand h3 {
  margin: 0.25rem 0;
  font-size: 2rem;
  color: #4c2b15;
}

.agent-contact-card__brand p {
  margin: 0;
  color: #704c25;
}

.agent-contact-card__meta {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: #4d3c2d;
}

.agent-contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

@media screen and (max-width: 782px) {
  .agent-hero {
    grid-template-columns: 1fr;
  }

  .agent-hero__content {
    text-align: center;
    align-items: center;
  }

  .agent-hero__meta {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .agent-hero__meta-item {
    width: 100%;
    justify-content: flex-start;
  }

  .agent-hero__actions {
    justify-content: center;
  }

  .agent-hero__rings {
    width: min(300px, 80vw);
    height: min(300px, 80vw);
  }

  .agent-contact-card__actions {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .agent-contact-card__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .property-list-link {
    grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  }

  .footer-quick-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .quick-card {
    width: 100%;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-navigation {
    text-align: center;
  }

  .footer-brand .site-logo,
  .footer-brand .site-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .property-layout {
    grid-template-columns: 1fr;
  }

  .header-contact {
    flex-direction: column;
  }

  .property-summary {
    flex-direction: column;
  }

  .property-summary-pill {
    text-align: left;
  }
}
.btn-syx {
  width: 100%;
}
.btn-syx2 {
  width: 100%;
  padding: 0.45rem 1.5rem !important;
}

/* Floating Chat Buttons */
.floating-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  font-family: inherit;
}

.floating-chat__toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--re-primary, #c62828);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.floating-chat__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(198, 40, 40, 0.5);
}

.floating-chat__toggle:active {
  transform: scale(0.95);
}

.floating-chat__icon {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-chat__icon--close {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
}

.floating-chat__toggle.is-active .floating-chat__icon--open {
  opacity: 0;
  transform: rotate(-90deg);
}

.floating-chat__toggle.is-active .floating-chat__icon--close {
  opacity: 1;
  transform: rotate(0deg);
}

.floating-chat__buttons {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-chat.is-active .floating-chat__buttons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-chat__button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.floating-chat__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-chat__button:hover::before {
  opacity: 1;
}

.floating-chat__button:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-chat__button:active {
  transform: scale(0.95);
}

.floating-chat__button svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.floating-chat__button--phone {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  animation-delay: 0.1s;
}

.floating-chat__button--zalo {
  background: linear-gradient(135deg, #0068ff 0%, #0052cc 100%);
  animation-delay: 0.2s;
}

.floating-chat__button--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #1565c0 100%);
  animation-delay: 0.3s;
}

.floating-chat__label {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-chat__label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.85);
}

.floating-chat__button:hover .floating-chat__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Stagger animation for buttons */
.floating-chat.is-active .floating-chat__button {
  animation: floatUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.floating-chat.is-active .floating-chat__button--phone {
  animation-delay: 0.05s;
}

.floating-chat.is-active .floating-chat__button--zalo {
  animation-delay: 0.1s;
}

.floating-chat.is-active .floating-chat__button--facebook {
  animation-delay: 0.15s;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pulse animation for toggle button */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.6), 0 0 0 8px rgba(198, 40, 40, 0.1);
  }
}

.floating-chat__toggle:not(.is-active) {
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-chat {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-chat__toggle {
    width: 56px;
    height: 56px;
  }

  .floating-chat__button {
    width: 50px;
    height: 50px;
  }

  .floating-chat__button svg {
    width: 22px;
    height: 22px;
  }

  .floating-chat__label {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    right: 60px;
  }

  .floating-chat__buttons {
    bottom: 70px;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .floating-chat {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-chat__label {
    display: none;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 1.5rem 0 1rem;
  padding: 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--re-text-muted, #6b7280);
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs__link {
  color: var(--re-text-muted, #6b7280);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--re-primary, #c62828);
  text-decoration: underline;
}

.breadcrumbs__current {
  color: var(--re-dark, #1f2937);
  font-weight: 500;
}

.breadcrumbs__separator {
  flex-shrink: 0;
  color: var(--re-text-muted, #9ca3af);
  margin: 0 0.25rem;
}

@media (max-width: 768px) {
  .breadcrumbs {
    margin: 1rem 0 0.75rem;
  }

  .breadcrumbs__list {
    font-size: 0.8rem;
    gap: 0.375rem;
  }

  .breadcrumbs__separator {
    margin: 0 0.125rem;
  }
}
