/*
Theme Name: Brights Grove Realty Group
Theme URI: https://homepage.studio
Description: Structural clone of montecitoproperties.com for template use
Version: 1.0
Author: HomePage Studios
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  color: #222;
  letter-spacing: 0.25px;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1199px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Italiana", serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #100d0c;
  line-height: 1.3;
  letter-spacing: 0.25px;
}

h1 { font-size: 55px; }
h2 { font-size: 50px; }
h3 { font-size: 35px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; font-weight: 400; }

p {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.65;
  color: #222;
  margin-bottom: 1em;
}

.script-text {
  font-family: "DollynScript", "Dancing Script", cursive;
  font-weight: 300;
  text-transform: none;
}

.eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid #100d0c;
  border-radius: 0;
  padding: 14px 20px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #100d0c;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #100d0c;
  color: #fff;
  opacity: 1;
}

.btn--white {
  border-color: #fff;
  color: #fff;
}

.btn--white:hover {
  background: #fff;
  color: #100d0c;
}

.btn--nav {
  font-family: "Italiana", serif;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 22px 12px;
  letter-spacing: normal;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 20px;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Scrolled state */
.site-header.scrolled {
  background: #f8f7f2;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  padding: 10px 20px;
}

/* Logo visibility */
.site-header .logo-dark {
  display: none;
}
.site-header .logo-white {
  display: block;
}
.site-header.scrolled .logo-dark {
  display: block;
}
.site-header.scrolled .logo-white {
  display: none;
}

/* Divider color transition */
.site-header .logo-divider {
  transition: background-color 0.4s ease;
}
.site-header.scrolled .logo-divider {
  background-color: #333;
}

/* Nav link color transition */
.site-header .main-nav a {
  transition: color 0.4s ease;
}
.site-header.scrolled .main-nav a {
  color: #1a1a1a;
}
.site-header.scrolled .main-nav a:hover {
  color: #555;
}

/* Menu button: show dark on scroll */
.site-header .btn--dark {
  display: none;
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.site-header.scrolled .btn--white {
  display: none !important;
}
.site-header.scrolled .btn--dark {
  display: inline-block !important;
}

.site-header .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.site-header .main-nav {
  margin-left: auto;
}

.site-header .nav-buttons {
  margin-left: 0;
}

.site-logo img {
  height: 89px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: "Italiana", serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: normal;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Social sidebar */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  background: rgba(0,0,0,0.3);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-sidebar a {
  color: #fff;
  font-size: 16px;
  display: block;
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(16,13,12,0.4) 0%, rgba(16,13,12,0.1) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__content h1 {
  color: #fff;
  font-size: 55px;
  margin-bottom: 20px;
}

.hero__content .script-text {
  color: #fff;
  font-size: 45px;
}

/* ===== FEATURED LISTINGS SECTION ===== */
.featured-listings {
  padding: 80px 0 40px;
  background: #fff;
  text-align: center;
}

.featured-listings h2 {
  margin-bottom: 12px;
}

.featured-listings .section-subtext {
  font-size: 16px;
  color: #222;
  margin-bottom: 24px;
}

.featured-listings .btn {
  margin-bottom: 48px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  text-align: center;
}

.stats-section h2 {
  margin-bottom: 8px;
}

.stats-section .section-subtext {
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 100%;
  width: 100%;
}

.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid #ddd;
}

.stat-item:last-child {
  border-right: none;
}


.stat-item .stat-number {
  font-family: "Italiana", serif;
  font-size: 48px;
  font-weight: 400;
  color: #100d0c;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222;
  margin-top: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
}

.about-section .container {
  max-width: 100%;
  padding: 0;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
}

.about-photo {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 700px;
  background-size: cover;
  background-position: center 35%;
}

.about-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .eyebrow {
  color: #100d0c;
}

.about-text h4 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text .btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: #f8f7f2;
  padding: 0 0 112px;
}

.team-section .container {
  max-width: 100%;
  padding: 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
}

.team-photo {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  order: 1;
}

.team-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 112px 84px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  order: 0;
}

.team-text .eyebrow {
  color: #100d0c;
  margin-bottom: 12px;
}

.team-text h5 {
  margin-bottom: 8px;
  font-weight: 400;
}

.team-text h2 {
  margin-bottom: 24px;
}

.team-text .btn {
  align-self: flex-start;
}

/* ===== AREAS OF EXPERTISE (Communities Grid) ===== */
.areas-section {
  padding: 112px 0;
}

.areas-section .container {
  max-width: 100%;
  padding: 0 0;
}

.areas-section h2 {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 16px;
}

.areas-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.areas-col-left {
  flex: 0 0 60%;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.areas-col-right {
  flex: 0 0 calc(40% - 16px);
  width: calc(40% - 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.areas-small-row {
  display: flex;
  gap: 16px;
}

.area-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.area-card--large {
  height: 476px;
}

.area-card--small {
  flex: 1;
  height: 308px;
}

.area-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  z-index: 2;
}

.area-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 4px;
}

.area-card h3 span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== LISTING FEED SECTION ===== */


/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 0;
  text-align: center;
}

.blog-section h2 {
  margin-bottom: 12px;
}

.blog-section .section-subtext {
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  text-align: left;
  overflow: hidden;
}

.blog-card__image {
  aspect-ratio: 16/10;
  background: #e0ddd5;
  margin-bottom: 16px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: "Italiana", serif;
  font-size: 18px;
  font-weight: 400;
  color: #100d0c;
  line-height: 1.4;
  text-transform: none;
}

.blog-card__date {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 135px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 38px;
  font-size: 64px;
}

.cta-section p {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 52px;
  font-size: 20px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #f8f7f2;
  padding: 64px 0 48px;
}

.footer-newsletter {
  text-align: center;
  margin-bottom: 48px;
}

.footer-newsletter h4 {
  margin-bottom: 8px;
}

.footer-newsletter p {
  margin-bottom: 24px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #fff;
  border-bottom-color: #ccc;
  background: #fbfbfb;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  outline: none;
}

.newsletter-form input[type="email"]:focus {
  border-bottom-color: #828384;
  background: #fff;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #100d0c;
  color: #fff;
  border: none;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  padding: 0 16px;
  margin-bottom: 32px;
}

.footer-info__col {
  flex: 1;
  min-width: 200px;
}

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

.footer-info__col h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Raleway", sans-serif;
  text-transform: none;
}

.footer-info__col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}

.footer-social a {
  font-size: 20px;
  color: #222;
}

.footer-legal {
  text-align: center;
  padding: 24px 16px 0;
  border-top: 1px solid #ddd;
}

.footer-legal p {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.footer-legal nav {
  margin-top: 16px;
}

.footer-legal nav a {
  font-size: 12px;
  color: #666;
  margin: 0 12px;
}

.footer-credits {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #888;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  h1 { font-size: 35px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }

  .hero { padding: 4em 0; min-height: 60vh; }
  .hero__content h1 { font-size: 35px; }
  .hero__content .script-text { font-size: 28px; }

  .main-nav { display: none; }

  .about-photo, .about-text { flex: 0 0 100%; max-width: 100%; }
  .about-photo { min-height: 280px; }
  .about-text { padding: 2em 1em; }

  .team-photo, .team-text { flex: 0 0 100%; max-width: 100%; }
  .team-photo { min-height: 280px; order: 0; }
  .team-text { padding: 2em 1em; order: 1; }

  .areas-grid { flex-direction: column; }
  .areas-col-left, .areas-col-right { flex: 0 0 100%; max-width: 100%; }
  .areas-small-row { flex-direction: column; }
  .area-card--small { height: 200px; }

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


  .footer-info { flex-direction: column; gap: 24px; text-align: center; }

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

@media (min-width: 576px) and (max-width: 767px) {
  h1 { font-size: 40px; }
  h2 { font-size: 35px; }
  h3 { font-size: 26px; }

  .hero__content h1 { font-size: 40px; }
  .hero__content .script-text { font-size: 32px; }

  .main-nav { display: none; }

  .about-photo, .about-text { flex: 0 0 100%; max-width: 100%; }
  .about-photo { min-height: 400px; }
  .about-text { padding: 2em; }

  .team-photo, .team-text { flex: 0 0 100%; max-width: 100%; }
  .team-photo { min-height: 400px; order: 0; }
  .team-text { padding: 2em; order: 1; }

  .areas-grid { flex-direction: column; }
  .areas-col-left, .areas-col-right { flex: 0 0 100%; max-width: 100%; }

}

@media (min-width: 768px) and (max-width: 991px) {
  h1 { font-size: 45px; }
  h2 { font-size: 40px; }
  h3 { font-size: 28px; }

  .about-photo, .about-text { flex: 0 0 100%; max-width: 100%; }
  .about-photo { min-height: 450px; }
  .about-text { padding: 2em; }

  .team-photo, .team-text { flex: 0 0 100%; max-width: 100%; }
  .team-photo { min-height: 450px; order: 0; }
  .team-text { padding: 2em; order: 1; }

  .areas-grid { flex-direction: column; }
  .areas-col-left, .areas-col-right { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) and (max-width: 1199px) {
  h1 { font-size: 42px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }
}

/* Hamburger menu */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8f7f2;
  z-index: 200;
  padding: 21px 30px 30px;
  flex-direction: column;
}

.hamburger-menu.active { display: flex; }

.hamburger-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.hamburger-menu__links {
  list-style: none;
  padding: 0;
}

.hamburger-menu__links li {
  margin-bottom: 16px;
}

.hamburger-menu__links a {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.8);
}

.hamburger-menu__social {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 40px;
}

.hamburger-menu__social a {
  font-size: 26px;
  color: rgba(0,0,0,0.8);
}

/* ===== LISTING SLIDE INFO OVERLAY ===== */
.listing-slide__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.listing-slide__status {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}

.listing-slide__price {
  font-family: "Italiana", serif;
  font-size: 28px;
  color: #fff;
  font-weight: 400;
}

.listing-slide__address {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.listing-slide__location {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

/* ===== ABOUT SUBTITLE ===== */
.about-subtitle {
  font-family: "Italiana", serif;
  font-size: 18px;
  font-weight: 400;
  color: #100d0c;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-bottom: 24px;
}

.about-text h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== TEAM SCRIPT TEXT ===== */
.team-script {
  font-size: 45px;
  color: #100d0c;
  margin: 8px 0;
  line-height: 1.2;
}

.team-text h3 {
  font-size: 35px;
  margin-bottom: 0;
}

/* ===== NOTABLE SALES SECTION ===== */



/* ===== HAMBURGER MENU CONTACT ===== */
.hamburger-menu__contact {
  margin-top: 24px;
}

.hamburger-menu__contact a {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #100d0c;
  letter-spacing: 0.5px;
}

/* ===== LISTING CAROUSEL (Swiper) ===== */
.listing-carousel {
  position: relative;
  width: 100%;
  padding: 0 0 16px;
}

.listing-swiper { overflow: hidden; }

.listing-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e0ddd5;
}

.listing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.listing-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.listing-card__status {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}

.listing-card__price {
  font-family: "Italiana", serif;
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}

.listing-card__address {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: 4px;
}

.listing-card__location {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

/* Carousel Navigation */
.listing-carousel__nav {
  position: absolute;
  top: calc(50% - 24px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 10;
}

.listing-carousel__prev,
.listing-carousel__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #100d0c;
  pointer-events: all;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.listing-carousel__prev:hover,
.listing-carousel__next:hover {
  background: #fff;
  transform: scale(1.1);
}

.listing-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.listing-carousel__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}

.listing-carousel__pagination .swiper-pagination-bullet-active {
  background: #100d0c;
  transform: scale(1.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 0;
  background: #fff;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
}

.testimonials-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-content .eyebrow {
  color: #100d0c;
  margin-bottom: 8px;
}

.testimonials-content h2 {
  margin-bottom: 40px;
}

.testimonials-image {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-stars {
  margin-bottom: 20px;
  color: #c9a96e;
  font-size: 16px;
  letter-spacing: 4px;
}

.testimonial-quote {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #222;
  font-style: normal;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #100d0c;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: #100d0c;
}

/* Testimonials responsive */
@media (max-width: 991px) {
  .testimonials-content,
  .testimonials-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonials-image {
    min-height: 350px;
    order: -1;
  }
  .testimonials-content {
    padding: 48px 24px;
  }
}

/* Fix testimonials button - prevent flex stretch */
.testimonials-content .btn {
  align-self: flex-start;
  display: inline-block;
  width: auto;
}

/* FORCE: Kill any residual stat pseudo-elements and fix button */
.stat-item::before,
.stat-item::after,
.stat-item + .stat-item::before {
  content: none !important;
  display: none !important;
  border: none !important;
  width: 0 !important;
  height: 0 !important;
}

.testimonials-content .btn {
  align-self: flex-start !important;
  display: inline-block !important;
  width: auto !important;
}

/* ===== PAGE HERO (Internal Pages) ===== */
.page-hero {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(16,13,12,0.4) 0%, rgba(16,13,12,0.1) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
}

.btn--white-fill {
  display: inline-block;
  background: #fff;
  color: #100d0c;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 14px 24px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn--white-fill:hover {
  background: transparent;
  color: #fff;
}

/* ===== LISTINGS INTRO ===== */
.listings-intro {
  padding: 60px 0;
  text-align: center;
}

.listings-intro .script-text {
  font-size: 60px;
  color: #100d0c;
  margin-bottom: 16px;
}

.listings-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.65;
  color: #222;
  letter-spacing: 0.25px;
}

/* ===== LISTING GRID ===== */
.listings-grid-section {
  padding: 0 0 80px;
}

.listings-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.listing-grid-card {
  flex: 0 0 33.333%;
  padding: 0 15px 30px;
}

.listing-grid-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #F8F7F2;
  transition: box-shadow 0.3s;
}

.listing-grid-card__link:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.listing-grid-card__thumb {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.listing-grid-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.listing-grid-card__link:hover .listing-grid-card__thumb img {
  transform: scale(1.05);
}

.listing-grid-card__badge {
  position: absolute;
  bottom: 20px;
  right: 16px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

@media (max-width: 991px) {
  .listing-grid-card { flex: 0 0 50%; }
  .page-hero { height: 400px; }
  .listings-intro .script-text { font-size: 45px; }
}

@media (max-width: 767px) {
  .listing-grid-card { flex: 0 0 100%; }
  .page-hero { height: 350px; }
  .listings-intro .script-text { font-size: 36px; }
}

/* ===== LISTING CARD BODY (Clean Design) ===== */
.listing-grid-card__body {
  padding: 20px 20px 24px;
}

.listing-grid-card__price {
  font-family: "Italiana", serif;
  font-size: 26px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 8px;
  line-height: 1.2;
}

.listing-grid-card__street {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 2px;
}

.listing-grid-card__city {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin-bottom: 12px;
}

.listing-grid-card__meta {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.5px;
  padding-top: 12px;
  border-top: 1px solid #eaeaea;
}

/* ===== ABOUT ME PAGE ===== */

/* Hero */
.about-hero {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.4), rgba(16,13,12,0.1));
}
.about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-hero__content h1 {
  font-family: "Italiana", serif;
  font-size: 55px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

/* Intro - "It's not about me" */
.about-intro {
  padding: 80px 0;
  background: #fff;
}
.about-intro__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-intro__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #100d0c;
  line-height: 1.2;
  margin: 0;
}
.about-intro__heading--script {
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  color: #100d0c;
  margin-top: 4px;
  margin-bottom: 32px;
}
.about-intro__quote {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: #444;
  line-height: 1.65;
  margin-bottom: 4px;
}
.about-intro__attribution {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  letter-spacing: 1px;
}

/* Bio Section */
.about-bio {
  padding: 80px 0;
  background: #f8f7f2;
}
.about-bio__grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.about-bio__image {
  flex: 0 0 420px;
}
.about-bio__image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-bio__content {
  flex: 1;
}
.about-bio__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.about-bio__name {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-bio__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.about-bio__highlights li {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.about-bio__highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #888;
}
.about-bio__contact {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.about-bio__divider {
  margin: 0 12px;
  color: #ccc;
}
.about-bio__text p {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.65;
  color: #222;
  margin-bottom: 16px;
}

/* Career Stats */
.about-stats {
  padding: 80px 0;
  background: #100d0c;
}
.about-stats__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}
.about-stats__grid {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.about-stats__item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.about-stats__item:last-child {
  border-right: none;
}
.about-stats__value {
  font-family: "Italiana", serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  display: inline;
}
.about-stats__suffix {
  font-family: "Italiana", serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  display: inline;
}
.about-stats__label {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* Notable Sales Carousel */
.about-notable {
  padding: 80px 0;
  background: #fff;
}
.about-notable__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #100d0c;
  text-align: center;
  margin-bottom: 48px;
}
.about-notable__swiper {
  padding-bottom: 48px;
}
.notable-card {
  background: #f8f7f2;
}
.notable-card__image {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.notable-card__info {
  padding: 20px 20px 24px;
}
.notable-card__price {
  font-family: "Italiana", serif;
  font-size: 26px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 6px;
}
.notable-card__address {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 2px;
}
.notable-card__city {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
}
.about-notable__swiper .swiper-button-prev,
.about-notable__swiper .swiper-button-next {
  color: #100d0c;
  width: 44px;
  height: 44px;
}
.about-notable__swiper .swiper-button-prev::after,
.about-notable__swiper .swiper-button-next::after {
  font-size: 20px;
}
.about-notable__swiper .swiper-pagination-bullet {
  background: #100d0c;
  opacity: 0.3;
}
.about-notable__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* If You Want to Know More */
.about-more {
  padding: 80px 0;
  background: #f8f7f2;
}
.about-more__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #100d0c;
  text-align: center;
  margin-bottom: 48px;
}
.about-more__grid {
  display: flex;
  gap: 24px;
}
.about-more__card {
  flex: 1;
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.about-more__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.about-more__card:hover .about-more__card-bg {
  transform: scale(1.05);
}
.about-more__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,13,12,0.75) 0%, rgba(16,13,12,0.1) 60%);
}
.about-more__card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: #fff;
}
.about-more__card-content h3 {
  font-family: "Italiana", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.about-more__card-content p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 12px;
}
.about-more__card-link {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

/* ===== ABOUT ME RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-hero { height: 400px; }
  .about-hero__content h1 { font-size: 42px; }
  .about-intro__heading { font-size: 34px; }
  .about-intro__heading--script { font-size: 38px; }
  .about-bio__grid { flex-direction: column; gap: 40px; }
  .about-bio__image { flex: none; max-width: 400px; margin: 0 auto; }
  .about-bio__name { font-size: 34px; }
  .about-stats__grid { flex-wrap: wrap; }
  .about-stats__item { flex: 0 0 50%; padding: 16px 24px; border-right: none; }
  .about-stats__value { font-size: 40px; }
  .about-more__grid { flex-direction: column; }
  .about-more__card { height: 300px; }
}

@media (max-width: 767px) {
  .about-hero { height: 350px; }
  .about-hero__content h1 { font-size: 36px; }
  .about-intro__heading { font-size: 28px; }
  .about-intro__heading--script { font-size: 32px; }
  .about-bio__image { max-width: 100%; }
  .about-stats__heading { font-size: 32px; }
  .about-stats__item { flex: 0 0 50%; }
  .about-stats__value { font-size: 36px; }
  .about-stats__suffix { font-size: 24px; }
  .about-notable__heading { font-size: 32px; }
  .about-more__heading { font-size: 32px; }
  .about-more__card { height: 260px; }
}
/* ===== BIO SECTION CLEANUP ===== */
.about-bio__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-transform: none;
  color: #222;
  margin-bottom: 4px;
}
.about-bio__name {
  font-size: 42px;
  margin-bottom: 16px;
}
.about-bio__highlights {
  list-style: disc;
  padding-left: 18px;
  margin: 0 0 24px;
}
.about-bio__highlights li {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #222;
  line-height: 1.65;
  padding: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.about-bio__highlights li::before {
  display: none;
}
.about-bio__contact-item {
  margin-top: 8px;
}
.about-bio__text {
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.about-bio__text p {
  font-size: 17px;
  font-weight: 200;
  line-height: 1.65;
  color: #222;
  margin-bottom: 14px;
}

/* ===== COMMUNITIES PAGE ===== */

/* Hero */
.comm-hero {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.comm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.45), rgba(16,13,12,0.15));
}
.comm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.comm-hero__content h1 {
  font-family: "Italiana", serif;
  font-size: 55px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.btn--white-outline {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--white-outline:hover {
  background: #fff;
  color: #100d0c;
}

/* Intro */
.comm-intro {
  padding: 60px 0 40px;
  background: #fff;
  text-align: center;
}

/* Grid Section */
.comm-grid-section {
  padding: 0 0 80px;
  background: #fff;
}
.comm-grid {
  max-width: 1199px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Row Layout */
.comm-row {
  display: flex;
  gap: 16px;
  min-height: 520px;
}
.comm-row--left {
  flex-direction: row;
}
.comm-row--right {
  flex-direction: row;
}
.comm-row__small {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Cards */
.comm-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}
.comm-card--large {
  flex: 1.2;
  min-height: 520px;
}
.comm-card--small {
  flex: 1;
  min-height: 0;
}
.comm-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.comm-card:hover .comm-card__bg {
  transform: scale(1.05);
}
.comm-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,13,12,0.6) 0%, rgba(16,13,12,0) 50%);
}
.comm-card__content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  width: 100%;
}
.comm-card__content h3 {
  font-family: "Italiana", serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.comm-card__link {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.comm-card:hover .comm-card__link {
  color: #fff;
  border-color: #fff;
}

/* ===== COMMUNITIES RESPONSIVE ===== */
@media (max-width: 991px) {
  .comm-hero { height: 400px; }
  .comm-hero__content h1 { font-size: 42px; }
  .comm-row { flex-direction: column; min-height: auto; }
  .comm-card--large { min-height: 340px; }
  .comm-card--small { min-height: 240px; }
  .comm-row__small { flex-direction: row; }
}

@media (max-width: 767px) {
  .comm-hero { height: 350px; }
  .comm-hero__content h1 { font-size: 36px; }
  .comm-row__small { flex-direction: column; }
  .comm-card--large { min-height: 300px; }
  .comm-card--small { min-height: 220px; }
  .comm-card__content h3 { font-size: 22px; }
}

/* ===== BLOG PAGE ===== */

.blog-hero {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.45), rgba(16,13,12,0.15));
}
.blog-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.blog-hero__content h1 {
  font-family: "Italiana", serif;
  font-size: 55px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

.blog-intro {
  padding: 60px 0 20px;
  background: #fff;
  text-align: center;
}

/* Blog Grid */
.blog-grid-section {
  padding: 20px 0 80px;
  background: #fff;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
}
.blog-card {
  flex: 0 0 calc(50% - 16px);
  display: flex;
  flex-direction: column;
}
.blog-card__thumb {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.03);
}
.blog-card__body {
  flex: 1;
}
.blog-card__title {
  font-family: "Italiana", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}
.blog-card__title a {
  color: #100d0c;
  text-decoration: none;
}
.blog-card__title a:hover {
  opacity: 0.7;
}
.blog-card__date {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__readmore {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #100d0c;
  text-decoration: none;
  border-bottom: 1px solid #100d0c;
  padding-bottom: 2px;
}
.blog-card__readmore:hover {
  opacity: 0.6;
}
.blog-grid__empty {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  color: #888;
  text-align: center;
  width: 100%;
  padding: 60px 0;
}

/* Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 48px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  color: #100d0c;
  text-decoration: none;
  border: 1px solid #ddd;
}
.blog-pagination .current {
  background: #100d0c;
  color: #fff;
  border-color: #100d0c;
}

/* ===== SINGLE POST ===== */
.single-post__hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post__hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.single-post__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.5), rgba(16,13,12,0.2));
}
.single-post__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.single-post__hero-content h1 {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.single-post__date {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.single-post__content {
  padding: 60px 0;
  background: #fff;
}
.single-post__container {
  max-width: 760px;
}
.single-post__container p {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.75;
  color: #222;
  margin-bottom: 20px;
}
.single-post__container h2 {
  font-family: "Italiana", serif;
  font-size: 30px;
  font-weight: 400;
  color: #100d0c;
  margin: 40px 0 16px;
}
.single-post__container h3 {
  font-family: "Italiana", serif;
  font-size: 24px;
  font-weight: 400;
  color: #100d0c;
  margin: 32px 0 12px;
}
.single-post__container blockquote {
  border-left: 3px solid #100d0c;
  padding: 16px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #444;
}
.single-post__container img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
.single-post__nav {
  padding: 0 0 60px;
  background: #fff;
}
.btn--dark-outline {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #100d0c;
  border: 1px solid #100d0c;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--dark-outline:hover {
  background: #100d0c;
  color: #fff;
}

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 991px) {
  .blog-hero { height: 400px; }
  .blog-hero__content h1 { font-size: 42px; }
  .single-post__hero { height: 380px; }
  .single-post__hero-content h1 { font-size: 34px; }
}
@media (max-width: 767px) {
  .blog-hero { height: 350px; }
  .blog-hero__content h1 { font-size: 32px; }
  .blog-card { flex: 0 0 100%; }
  .single-post__hero { height: 320px; }
  .single-post__hero-content h1 { font-size: 28px; }
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.45), rgba(16,13,12,0.15));
}
.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-hero__content h1 {
  font-family: "Italiana", serif;
  font-size: 55px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

.contact-info {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.contact-info .script-text {
  margin-bottom: 48px;
}
.contact-info__details {
  max-width: 600px;
  margin: 0 auto;
}
.contact-info__item {
  margin-bottom: 32px;
}
.contact-info__icon {
  color: #100d0c;
  margin-bottom: 8px;
}
.contact-info__text {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #222;
  line-height: 1.6;
}
.contact-info__agent {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eaeaea;
}
.contact-info__agent p {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

/* ===== CONTACT RESPONSIVE ===== */
@media (max-width: 991px) {
  .contact-hero { height: 400px; }
  .contact-hero__content h1 { font-size: 42px; }
}
@media (max-width: 767px) {
  .contact-hero { height: 350px; }
  .contact-hero__content h1 { font-size: 36px; }
}

/* ===== CONTACT 2-COL LAYOUT ===== */
.contact-info__grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info__portrait {
  flex: 0 0 420px;
}
.contact-info__portrait img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-info__right {
  flex: 1;
  text-align: center;
}
.contact-info__right .script-text {
  margin-bottom: 36px;
}
.contact-info .script-text {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .contact-info__grid { flex-direction: column; align-items: center; gap: 40px; }
  .contact-info__portrait { flex: none; max-width: 380px; }
}
@media (max-width: 767px) {
  .contact-info__portrait { max-width: 100%; }
}

/* ===== Dual logo (Brights Grove + Royal LePage) ===== */
.site-logo--dual {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-brand {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-brokerage {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.4);
}
/* Dark versions for hamburger menu */
.logo-brand--dark {
  filter: none;
}
.logo-brokerage--dark {
  filter: none;
}
.logo-divider--dark {
  background: rgba(0,0,0,0.2);
}
/* Override old site-logo img styles */
.site-logo--dual img {
  height: auto;
}
@media (max-width: 767px) {
  .logo-brand { height: 28px; }
  .logo-brokerage { height: 16px; }
  .logo-divider { height: 24px; }
  .site-logo--dual { gap: 8px; }
}

/* ===== DUAL LOGO FIX ===== */
/* Brights Grove logo treatment */
.site-header .logo-brand {
  height: 36px;
  filter: none;
  mix-blend-mode: screen;
}
/* Royal LePage logo treatment */
.site-header .logo-brokerage {
  height: 20px;
  filter: invert(1);
  mix-blend-mode: screen;
}
/* Hamburger menu (light bg) - show logos normally */
.hamburger-menu .logo-brand--dark {
  height: 36px;
  filter: none;
  mix-blend-mode: normal;
}
.hamburger-menu .logo-brokerage--dark {
  height: 20px;
  filter: none;
  mix-blend-mode: normal;
}

/* ===== FOOTER DUAL LOGO ===== */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-brand {
  height: 48px;
  width: auto;
}
.footer-logo-brokerage {
  height: 28px;
  width: auto;
  filter: invert(1);
}
.footer-logo-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
@media (max-width: 767px) {
  .footer-logo-brand { height: 36px; }
  .footer-logo-brokerage { height: 22px; }
  .footer-logo-divider { height: 30px; }
}

/* ===== FOOTER LOGO FIX (cream bg) ===== */
.footer-logo-brand {
  height: 48px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: multiply;
}
.footer-logo-brokerage {
  height: 28px;
  width: auto;
  filter: none;
  mix-blend-mode: multiply;
}
.footer-logo-divider {
  background: rgba(0,0,0,0.25);
}

/* ===== CLEAN LOGO STYLES (transparent PNGs, no hacks) ===== */
.site-logo--dual {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}
.logo-brand {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.logo-brokerage {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.logo-divider {
  display: block !important;
  width: 1px !important;
  height: 50px !important;
  background: rgba(255,255,255,0.35) !important;
}
.footer-logo-brand {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.footer-logo-brokerage {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.footer-logo-divider {
  background: rgba(0,0,0,0.2) !important;
  height: 50px !important;
}
@media (max-width: 767px) {
  .logo-brand, .logo-brokerage { height: 48px !important; }
  .logo-divider { height: 36px !important; }
  .footer-logo-brand, .footer-logo-brokerage { height: 48px !important; }
  .footer-logo-divider { height: 36px !important; }
}

/* ===== TEAM SECTION - full bleed image ===== */
.team-section {
  padding: 0 !important;
}
.team-grid {
  min-height: 550px !important;
}
.team-photo {
  min-height: 550px !important;
  flex: 0 0 50% !important;
}
.team-text {
  padding: 80px 80px !important;
  justify-content: center !important;
}

/* ===== COMPASS CONCIERGE SECTION ===== */
.about-concierge {
  padding: 80px 0;
  background: #f8f7f2;
  text-align: center;
}
.about-concierge__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #100d0c;
  margin-bottom: 12px;
}
.about-concierge__subtext {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #444;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.about-concierge__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-concierge__item {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #100d0c;
  padding: 10px 20px;
  border: 1px solid #100d0c;
}

/* ===== ABOUT REVIEWS SECTION ===== */
.about-reviews {
  padding: 80px 0;
  background: #100d0c;
  text-align: center;
}
.about-reviews__heading {
  font-family: "Italiana", serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 48px;
}
.about-reviews__grid {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-review-card {
  flex: 1;
  text-align: left;
}
.about-review-card__stars {
  color: #c9a96e;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.about-review-card blockquote {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-review-card__author {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

/* ===== COUNTY HEADINGS (Communities) ===== */
.comm-county {
  padding: 60px 0 20px;
  background: #fff;
}
.comm-county--alt {
  background: #f8f7f2;
}
.comm-county__heading {
  font-family: "Italiana", serif;
  font-size: 36px;
  font-weight: 400;
  color: #100d0c;
  text-align: center;
  margin-bottom: 12px;
}
.comm-county__desc {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.comm-county .comm-grid {
  padding: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .about-reviews__grid { flex-direction: column; gap: 32px; }
  .about-concierge__heading { font-size: 32px; }
  .about-reviews__heading { font-size: 32px; }
  .comm-county__heading { font-size: 28px; }
}

/* ==========================================================================
   COMMUNITY PAGES
   ========================================================================== */

/* Hero */
.comm-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.comm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,13,12,0.85) 0%, rgba(16,13,12,0.2) 60%, transparent 100%);
}
.comm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px 80px;
  max-width: 800px;
}
.comm-hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 16px;
}
.comm-hero__title {
  font-family: 'Libre Caslon Display', serif;
  font-size: 64px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.comm-hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Sticky Nav */
.comm-nav {
  background: #100d0c;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 100;
}
.comm-nav--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.comm-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comm-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 18px 20px;
  white-space: nowrap;
  transition: color 0.3s;
}
.comm-nav a:hover,
.comm-nav a.active {
  color: #fff;
}

/* Shared */
.comm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.comm-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #100d0c;
  display: block;
  margin-bottom: 12px;
}
.comm-eyebrow--light {
  color: rgba(255,255,255,0.6);
}

/* Overview */
.comm-overview {
  padding: 100px 0 60px;
  background: #F8F7F2;
}
.comm-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.comm-overview__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.comm-overview__text h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  margin: 0 0 24px;
  line-height: 1.15;
}
.comm-overview__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.7;
  color: #444;
  margin: 0 0 18px;
}
.comm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(16,13,12,0.1);
  padding-top: 40px;
}
.comm-stats__item {
  text-align: center;
  position: relative;
}
.comm-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(16,13,12,0.1);
}
.comm-stats__value {
  font-family: 'Libre Caslon Display', serif;
  font-size: 28px;
  color: #100d0c;
  display: block;
  margin-bottom: 8px;
}
.comm-stats__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* Market */
.comm-market {
  padding: 100px 0;
  background: #100d0c;
}
.comm-market__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.comm-market__text h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #fff;
  margin: 0 0 24px;
}
.comm-market__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.comm-market__styles h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 30px 0 16px;
}
.comm-market__styles ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.comm-market__styles li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.comm-market__form-box {
  background: #F8F7F2;
  padding: 40px;
}
.comm-market__form-box h3 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 28px;
  color: #100d0c;
  margin: 0 0 4px;
}
.comm-market__form-box > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0 0 24px;
}
.comm-lead-form input,
.comm-lead-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  color: #222;
}
.comm-lead-form select {
  color: #888;
}
.comm-lead-form button {
  width: 100%;
  padding: 16px;
  background: #100d0c;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.comm-lead-form button:hover {
  background: #2a2320;
}

/* Card grids */
.comm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.comm-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.comm-card {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(16,13,12,0.06);
}
.comm-card__number {
  font-family: 'Libre Caslon Display', serif;
  font-size: 32px;
  color: rgba(16,13,12,0.1);
  display: block;
  margin-bottom: 16px;
}
.comm-card h4 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 20px;
  color: #100d0c;
  margin: 0 0 12px;
  line-height: 1.3;
}
.comm-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* Lifestyle */
.comm-lifestyle {
  padding: 100px 0;
  background: #fff;
}
.comm-lifestyle h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  margin: 0 0 10px;
}

/* Outdoors */
.comm-outdoors {
  padding: 100px 0;
  background: #F8F7F2;
}
.comm-outdoors h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  margin: 0 0 24px;
}
.comm-outdoors__intro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.7;
  color: #444;
  margin: 0 0 18px;
  max-width: 800px;
}
.comm-card--outdoor {
  background: #fff;
}

/* Schools */
.comm-schools {
  padding: 100px 0;
  background: #fff;
}
.comm-schools h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  margin: 0 0 10px;
}
.comm-schools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.comm-school-card {
  padding: 24px 28px;
  background: #F8F7F2;
  border-left: 3px solid #100d0c;
}
.comm-school-card h4 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 18px;
  color: #100d0c;
  margin: 0 0 12px;
}
.comm-school-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.comm-school-card__meta span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.comm-school-card__rating {
  color: #100d0c !important;
  font-weight: 600 !important;
}

/* Dining */
.comm-dining {
  padding: 100px 0;
  background: #F8F7F2;
}
.comm-dining h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  margin: 0 0 10px;
}
.comm-dining__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 40px 0 0;
}
.comm-dining__subtitle:first-of-type {
  margin-top: 20px;
}
.comm-card--dining {
  background: #fff;
}
.comm-dining__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.comm-card--small {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(16,13,12,0.06);
  margin-bottom: 12px;
}
.comm-card--small h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.comm-card--small p {
  font-size: 14px;
}

/* Commute */
.comm-commute {
  padding: 100px 0;
  background: #100d0c;
}
.comm-commute h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #fff;
  margin: 0 0 10px;
}
.comm-commute__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.comm-commute__card {
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.comm-commute__time {
  font-family: 'Libre Caslon Display', serif;
  font-size: 28px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.comm-commute__card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
}
.comm-commute__card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Advice */
.comm-advice {
  padding: 100px 0;
  background: #fff;
}
.comm-advice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.comm-advice h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 36px;
  color: #100d0c;
  margin: 0 0 30px;
}
.comm-advice__item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16,13,12,0.08);
}
.comm-advice__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.comm-advice__item h4 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 18px;
  color: #100d0c;
  margin: 0 0 8px;
}
.comm-advice__item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* CTA */
.comm-cta {
  padding: 100px 0;
  background: #100d0c;
  text-align: center;
}
.comm-cta h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #fff;
  margin: 0 0 16px;
}
.comm-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 36px;
}
.comm-cta__button {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.comm-cta__button:hover {
  background: #fff;
  color: #100d0c;
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  .comm-hero {
    height: 60vh;
    min-height: 400px;
  }
  .comm-hero__title {
    font-size: 36px;
  }
  .comm-hero__content {
    padding-bottom: 50px;
  }
  .comm-nav__inner {
    justify-content: flex-start;
    padding: 0 10px;
  }
  .comm-nav a {
    padding: 14px 12px;
    font-size: 11px;
  }
  .comm-overview,
  .comm-lifestyle,
  .comm-outdoors,
  .comm-schools,
  .comm-dining,
  .comm-advice,
  .comm-market,
  .comm-commute,
  .comm-cta {
    padding: 60px 0;
  }
  .comm-container {
    padding: 0 20px;
  }
  .comm-overview__grid,
  .comm-market__grid,
  .comm-advice__grid,
  .comm-dining__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .comm-overview__image img {
    height: 300px;
  }
  .comm-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
  }
  .comm-stats__item:nth-child(2)::after {
    display: none;
  }
  .comm-stats__value {
    font-size: 22px;
  }
  .comm-card-grid,
  .comm-card-grid--4,
  .comm-card-grid--3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comm-schools__grid {
    grid-template-columns: 1fr;
  }
  .comm-commute__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .comm-overview__text h2,
  .comm-lifestyle h2,
  .comm-outdoors h2,
  .comm-schools h2,
  .comm-dining h2,
  .comm-market__text h2,
  .comm-commute h2,
  .comm-advice h2,
  .comm-cta h2 {
    font-size: 28px;
  }
  .comm-market__form-box {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .comm-commute__grid {
    grid-template-columns: 1fr;
  }
  .comm-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   COMMUNITY PAGE FORMATTING FIXES
   ========================================================================== */

/* --- GLOBAL: Center section headers & eyebrows --- */
.comm-lifestyle,
.comm-outdoors,
.comm-schools,
.comm-dining,
.comm-advice {
  text-align: center;
}

/* Left-align card contents */
.comm-card,
.comm-card--dining,
.comm-card--outdoor,
.comm-card--small,
.comm-school-card,
.comm-advice__item,
.comm-advice__col {
  text-align: left;
}

/* --- HERO: Bigger title, more presence --- */
.comm-hero {
  min-height: 550px;
}
.comm-hero__title {
  font-size: 72px;
  letter-spacing: 2px;
}
.comm-hero__subtitle {
  max-width: 700px;
  margin: 0 auto;
}
.comm-hero__eyebrow {
  margin-bottom: 20px;
}

/* --- OVERVIEW: Tighter layout --- */
.comm-overview__text h2 {
  margin-bottom: 20px;
}
.comm-overview__text p:last-child {
  margin-bottom: 0;
}
.comm-overview__image img {
  border: none;
  box-shadow: none;
}

/* --- STATS BAR: Stronger values --- */
.comm-stats__value {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.comm-stats__label {
  font-size: 11px;
  letter-spacing: 2.5px;
}

/* --- MARKET: Form box polish --- */
.comm-market__form-box {
  border: none;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.comm-market__form-box h3 {
  font-size: 32px;
  margin-bottom: 2px;
}
.comm-market__form-box > p {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
}
.comm-lead-form input,
.comm-lead-form select {
  border: 1px solid #e0ddd8;
  border-radius: 0;
  padding: 15px 18px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.comm-lead-form input:focus,
.comm-lead-form select:focus {
  border-color: #100d0c;
  outline: none;
}
.comm-lead-form button {
  margin-top: 4px;
  padding: 18px;
  letter-spacing: 3px;
  transition: all 0.3s;
}

/* --- LIFESTYLE CARDS: Visible numbers, subtle elevation --- */
.comm-card {
  padding: 36px;
  border: 1px solid rgba(16,13,12,0.08);
  transition: box-shadow 0.3s, transform 0.2s;
}
.comm-card:hover {
  box-shadow: 0 8px 30px rgba(16,13,12,0.08);
  transform: translateY(-2px);
}
.comm-card__number {
  font-size: 36px;
  color: rgba(16,13,12,0.15);
  margin-bottom: 20px;
  line-height: 1;
}
.comm-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
}
.comm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* --- LIFESTYLE: Section heading centered --- */
.comm-lifestyle h2,
.comm-outdoors h2,
.comm-schools h2,
.comm-dining h2 {
  margin-bottom: 16px;
}
.comm-lifestyle .comm-eyebrow,
.comm-outdoors .comm-eyebrow,
.comm-schools .comm-eyebrow,
.comm-dining .comm-eyebrow {
  display: block;
}

/* --- OUTDOORS: Intro text centered, cards left --- */
.comm-outdoors__intro {
  text-align: center;
  margin-bottom: 20px;
}
.comm-outdoors__intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.comm-card--outdoor {
  padding: 32px;
  border-left: 3px solid #100d0c;
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: #fff;
}
.comm-card--outdoor h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.comm-card--outdoor p {
  font-size: 14px;
  line-height: 1.65;
}

/* --- SCHOOLS: Better card styling --- */
.comm-school-card {
  padding: 28px 30px;
  transition: box-shadow 0.3s;
}
.comm-school-card:hover {
  box-shadow: 0 4px 16px rgba(16,13,12,0.06);
}
.comm-school-card h4 {
  font-size: 17px;
  margin-bottom: 14px;
}
.comm-school-card__meta {
  gap: 12px;
}
.comm-school-card__meta span {
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(16,13,12,0.04);
  border-radius: 2px;
}
.comm-school-card__rating {
  background: #100d0c !important;
  color: #fff !important;
  font-weight: 500 !important;
}

/* --- DINING: Better subtitle spacing, card structure --- */
.comm-dining h2 {
  margin-bottom: 8px;
}
.comm-dining__subtitle {
  margin-top: 36px !important;
  margin-bottom: 24px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16,13,12,0.08);
  display: inline-block;
}
.comm-dining__subtitle:first-of-type {
  margin-top: 24px !important;
}
.comm-card--dining {
  padding: 28px 30px;
  background: #fff;
  border: 1px solid rgba(16,13,12,0.06);
  transition: box-shadow 0.3s;
}
.comm-card--dining:hover {
  box-shadow: 0 4px 16px rgba(16,13,12,0.06);
}
.comm-card--dining h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.comm-card--dining p {
  font-size: 14px;
  line-height: 1.65;
}
.comm-card--small {
  padding: 22px 26px;
  border: 1px solid rgba(16,13,12,0.06);
  border-left: 3px solid rgba(16,13,12,0.12);
  margin-bottom: 14px;
  transition: box-shadow 0.3s;
}
.comm-card--small:hover {
  box-shadow: 0 2px 12px rgba(16,13,12,0.05);
}
.comm-card--small h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.comm-card--small p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

/* --- COMMUTE: Bigger time values, card polish --- */
.comm-commute__time {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.comm-commute__card {
  padding: 36px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.comm-commute__card:hover {
  background: rgba(255,255,255,0.08);
}
.comm-commute__card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}
.comm-commute__card p {
  font-size: 13px;
  line-height: 1.6;
}

/* --- ADVICE: Centered headers, cleaner items --- */
.comm-advice__grid {
  gap: 60px;
}
.comm-advice__col {
  text-align: left;
}
.comm-advice .comm-eyebrow {
  text-align: center;
}
.comm-advice h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 36px;
}
.comm-advice__item {
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.comm-advice__item h4 {
  font-size: 17px;
  margin-bottom: 10px;
}
.comm-advice__item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* --- CTA: More vertical space --- */
.comm-cta {
  padding: 120px 0;
}
.comm-cta .comm-eyebrow--light {
  text-align: center;
}
.comm-cta h2 {
  font-size: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.comm-cta p {
  font-size: 16px;
}
.comm-cta__button {
  padding: 18px 56px;
  letter-spacing: 3px;
}

/* --- STICKY NAV: Polish --- */
.comm-nav {
  transition: box-shadow 0.3s;
}
.comm-nav--sticky {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.comm-nav a {
  padding: 20px 22px;
  position: relative;
}
.comm-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: #fff;
}

/* --- HOME STYLES LIST: Better spacing --- */
.comm-market__styles ul {
  list-style: disc;
  padding-left: 20px;
}
.comm-market__styles li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

/* ==================== MOBILE FIXES ==================== */
@media (max-width: 768px) {
  .comm-hero__title {
    font-size: 40px;
    letter-spacing: 1px;
  }
  .comm-hero__subtitle {
    font-size: 15px;
  }
  .comm-stats__value {
    font-size: 24px;
  }
  .comm-card {
    padding: 28px;
  }
  .comm-card__number {
    font-size: 28px;
  }
  .comm-commute__time {
    font-size: 24px;
  }
  .comm-advice h2 {
    font-size: 26px;
  }
  .comm-cta {
    padding: 70px 0;
  }
  .comm-cta h2 {
    font-size: 28px;
  }
  .comm-dining__subtitle {
    margin-top: 24px !important;
  }
  .comm-school-card__meta span {
    padding: 3px 8px;
    font-size: 11px;
  }
}

/* ==========================================================================
   COMMUNITY PAGE — ROUND 2 FIXES
   ========================================================================== */

/* --- Outdoors: 2-col grid instead of 4 (more readable) --- */
.comm-card-grid--4 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px;
}

/* --- Overview: Eyebrow + heading alignment for 2-col --- */
.comm-overview .comm-eyebrow {
  text-align: left;
}
.comm-overview__text h2 {
  text-align: left;
}

/* --- Market: left-align eyebrow + heading --- */
.comm-market .comm-eyebrow--light {
  text-align: left;
}
.comm-market__text h2 {
  text-align: left;
}

/* --- Commute: center the eyebrow & heading --- */
.comm-commute .comm-eyebrow--light {
  text-align: center;
}
.comm-commute h2 {
  text-align: center;
}

/* --- Dining: "Restaurants" subtitle left-align with underline --- */
.comm-dining .comm-card-grid--3 {
  margin-top: 20px;
}

/* --- School cards: 2-col on desktop for more room --- */
.comm-schools__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* --- Card hover: Remove transform to avoid jumpy layout --- */
.comm-card:hover {
  transform: none;
}

/* --- Fix: Dining section heading center alignment --- */
.comm-dining {
  text-align: center;
}
.comm-dining__subtitle {
  text-align: center;
}
.comm-dining .comm-card-grid,
.comm-dining .comm-card-grid--3,
.comm-dining__row {
  text-align: left;
}

/* --- Fix: Advice columns text left --- */
.comm-advice__col .comm-eyebrow {
  text-align: left;
}
.comm-advice__col h2 {
  text-align: left;
}

@media (max-width: 768px) {
  .comm-card-grid--4 {
    grid-template-columns: 1fr !important;
  }
  .comm-schools__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMMUNITY PAGE — NUCLEAR FIXES (override theme conflicts)
   ========================================================================== */

/* --- HERO: Force center alignment --- */
.community-page .comm-hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.community-page .comm-hero__content {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 800px !important;
  padding: 0 40px 80px !important;
}
.community-page .comm-hero__eyebrow {
  display: block !important;
  text-align: center !important;
}
.community-page .comm-hero__title {
  text-align: center !important;
  font-size: 72px !important;
  letter-spacing: 2px !important;
}
.community-page .comm-hero__subtitle {
  text-align: center !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

/* --- ALL CARDS: Force block layout (kill theme's flex-row) --- */
.community-page .comm-card,
.community-page .comm-card--dining,
.community-page .comm-card--outdoor,
.community-page .comm-card--small {
  display: block !important;
  flex-direction: unset !important;
  align-items: unset !important;
  overflow: visible !important;
  cursor: default !important;
  min-height: 0 !important;
  height: auto !important;
}
.community-page .comm-card__number {
  display: block !important;
  width: auto !important;
}
.community-page .comm-card h4,
.community-page .comm-card--dining h4,
.community-page .comm-card--outdoor h4,
.community-page .comm-card--small h4 {
  display: block !important;
  width: 100% !important;
}
.community-page .comm-card p,
.community-page .comm-card--dining p,
.community-page .comm-card--outdoor p,
.community-page .comm-card--small p {
  display: block !important;
  width: 100% !important;
}

/* --- CARD GRID: Proper grid layout --- */
.community-page .comm-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.community-page .comm-card-grid--4 {
  grid-template-columns: repeat(2, 1fr) !important;
}
.community-page .comm-card-grid--3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* --- SCHOOL CARDS: Force block --- */
.community-page .comm-school-card {
  display: block !important;
}
.community-page .comm-school-card h4 {
  display: block !important;
  width: 100% !important;
}
.community-page .comm-school-card__meta {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

/* --- COMMUTE CARDS: Force block --- */
.community-page .comm-commute__card {
  display: block !important;
}

/* --- ADVICE ITEMS: Force block --- */
.community-page .comm-advice__item {
  display: block !important;
}

/* --- OVERVIEW GRID: Force proper 2-col --- */
.community-page .comm-overview__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
}

/* --- MARKET GRID: Force proper 2-col --- */
.community-page .comm-market__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
}

/* --- FORM BOX: Force block --- */
.community-page .comm-market__form-box {
  display: block !important;
}

/* --- STATS BAR: Force grid --- */
.community-page .comm-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
.community-page .comm-stats__item {
  display: block !important;
  text-align: center !important;
}

/* --- DINING ROW: Force 2-col grid --- */
.community-page .comm-dining__row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
}
.community-page .comm-dining__col {
  display: block !important;
}

/* --- ADVICE GRID: Force 2-col --- */
.community-page .comm-advice__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
}

/* --- COMMUTE GRID: Force 4-col --- */
.community-page .comm-commute__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

/* --- SCHOOLS GRID: Force 2-col --- */
.community-page .comm-schools__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

/* --- NAV: Force flex-row --- */
.community-page .comm-nav__inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  .community-page .comm-hero__title {
    font-size: 40px !important;
  }
  .community-page .comm-hero__content {
    padding: 0 20px 50px !important;
  }
  .community-page .comm-overview__grid,
  .community-page .comm-market__grid,
  .community-page .comm-advice__grid,
  .community-page .comm-dining__row {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .community-page .comm-card-grid,
  .community-page .comm-card-grid--4,
  .community-page .comm-card-grid--3 {
    grid-template-columns: 1fr !important;
  }
  .community-page .comm-schools__grid {
    grid-template-columns: 1fr !important;
  }
  .community-page .comm-commute__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .community-page .comm-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .community-page .comm-commute__grid {
    grid-template-columns: 1fr !important;
  }
}

/* HERO: Perfectly centered */
.community-page .comm-hero {
  justify-content: center !important;
}
.community-page .comm-hero__content {
  padding: 0 40px !important;
}

/* Hide redundant "Let's Connect" CTA on community pages */
body.page-template-page-community-scotts-valley-php .cta-section,
body[class*="page-template-page-community"] .cta-section {
  display: none !important;
}

/* Communities INDEX page hero centering */
.comm-hero--index {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 540px !important;
}
.comm-hero--index .comm-hero__content {
  display: block !important;
  text-align: center !important;
  padding: 0 40px !important;
}
.comm-hero--index .comm-hero__content h1 {
  text-align: center !important;
}

/* Community tile text spacing fix */
.comm-card__content h3 span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* Footer - Reposition brokerage info to the right */
.footer-info {
  justify-content: space-between !important;
}
.footer-info__col--center {
  text-align: right !important;
  flex: 0 0 auto !important;
  min-width: 250px !important;
}

/* ==========================================================================
   COMPASS CONCIERGE PAGE
   ========================================================================== */

/* Hero */
.concierge-hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.concierge-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,12,0.7), rgba(16,13,12,0.85));
}
.concierge-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 40px;
}
.concierge-hero__logo {
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.concierge-hero h1 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 56px;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}
.concierge-hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin: 0 0 16px;
  line-height: 1.5;
}
.concierge-hero__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.65;
}

/* Timeline */
.concierge-timeline {
  padding: 100px 0;
  background: #fff;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.timeline-card {
  padding: 40px 32px;
  background: #F8F7F2;
  border-left: 4px solid #100d0c;
}
.timeline-card__number {
  font-family: 'Libre Caslon Display', serif;
  font-size: 48px;
  color: rgba(16,13,12,0.15);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.timeline-card h3 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 24px;
  color: #100d0c;
  margin: 0 0 16px;
  line-height: 1.3;
}
.timeline-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Benefits */
.concierge-benefits {
  padding: 100px 0;
  background: #100d0c;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.benefit-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.benefit-card h3 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 28px;
  color: #fff;
  margin: 0 0 16px;
}
.benefit-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.concierge-stats {
  padding: 100px 0;
  background: #F8F7F2;
}
.concierge-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
}
.stat-card__number {
  font-family: 'Libre Caslon Display', serif;
  font-size: 64px;
  color: #100d0c;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.stat-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.concierge-stats__source {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* Services */
.concierge-services {
  padding: 100px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.service-item {
  padding: 20px 24px;
  background: #F8F7F2;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-align: center;
  border-radius: 2px;
}

/* How It Works */
.concierge-how {
  padding: 100px 0;
  background: #F8F7F2;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.how-step {
  padding: 36px;
  background: #fff;
  border-top: 3px solid #100d0c;
}
.how-step__number {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: rgba(16,13,12,0.12);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.how-step p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* CTA */
.concierge-cta {
  padding: 120px 0;
  background: #100d0c;
  text-align: center;
}
.concierge-cta h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #fff;
  margin: 0 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.concierge-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
}

/* Disclaimer */
.concierge-disclaimer {
  padding: 60px 0;
  background: #F8F7F2;
}
.concierge-disclaimer p {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.concierge-disclaimer small {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

/* Section Heading */
.section-heading {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: #100d0c;
  text-align: center;
  margin: 0 0 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 992px) {
  .timeline-grid,
  .benefits-grid,
  .how-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .concierge-stats .stats-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .concierge-hero h1 {
    font-size: 36px;
  }
  .concierge-hero__subtitle {
    font-size: 17px;
  }
  .section-heading {
    font-size: 32px;
  }
  .stat-card__number {
    font-size: 48px;
  }
}

/* Hide old hamburger menu completely */
.hamburger-menu {
  display: none !important;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.site-preloader {
  position: fixed;
  inset: 0;
  background: #F8F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  height: 60px;
  opacity: 0;
  animation: fadeInOut 2s ease-in-out infinite;
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #100d0c 50%, transparent 100%);
  margin: 30px auto 0;
  opacity: 0;
  animation: slideIn 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
  0%, 100% { opacity: 0; transform: scaleX(0.5); }
  50% { opacity: 0.6; transform: scaleX(1); }
}

/* ==========================================================================
   BLOG CAROUSEL (FIXED)
   ========================================================================== */

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}

.blog-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.blog-prev,
.blog-next {
  width: 48px;
  height: 48px;
  border: 1px solid #100d0c;
  background: transparent;
  color: #100d0c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.blog-prev:hover,
.blog-next:hover {
  background: #100d0c;
  color: #fff;
}

.blog-swiper {
  overflow: hidden;
  margin: 0 -15px;
  padding: 0 15px;
}

.blog-swiper .swiper-wrapper {
  display: flex;
}

.blog-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Blog card sizing - THIS IS THE FIX */
.blog-section .blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.blog-section .blog-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.blog-section .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section .blog-card__image:hover img {
  transform: scale(1.08);
}

.blog-section .blog-card__content {
  padding: 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-card__category {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #100d0c;
  margin: 0 0 12px;
}

.blog-section .blog-card__title {
  font-family: 'Libre Caslon Display', serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
  flex: 1;
}

.blog-section .blog-card__title a {
  color: #100d0c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-section .blog-card__title a:hover {
  color: #666;
}

.blog-section .blog-card__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .blog-nav {
    align-self: flex-end;
  }
}

/* Blog carousel card width fix - removed !important override that broke Swiper */

.blog-section .blog-card {
  width: 100%;
}

/* Fix blog cards to fill swiper slides */
.blog-swiper .swiper-slide .blog-card {
  flex: 1 1 100% !important;
  min-width: 0;
}

/* ===== SCROLLED HEADER SIZE REDUCTION (~50%) ===== */
.site-header.scrolled .logo-brand {
  height: 34px !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-brokerage {
  height: 50px !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-divider {
  height: 30px;
  transition: height 0.3s ease;
}
.site-header.scrolled .site-logo--dual {
  gap: 8px;
}
.site-header.scrolled .main-nav a {
  font-size: 13px;
}
.site-header.scrolled .main-nav {
  gap: 22px;
}
.site-header.scrolled .btn--nav {
  font-size: 11px;
  padding: 6px 16px;
}
/* Smooth transitions on default state too */
.logo-brand, .logo-brokerage, .logo-divider {
  transition: height 0.3s ease;
}
.main-nav a {
  transition: color 0.4s ease, font-size 0.3s ease;
}
.btn--nav {
  transition: all 0.3s ease;
}

/* Lana Morgan content-swap refinements */
.site-logo .logo-brand{max-height:68px;width:auto;object-fit:contain;}
.site-logo .logo-brokerage{max-height:42px;width:auto;object-fit:contain;}
.site-header.scrolled .logo-brand,.site-header.scrolled .logo-brokerage{filter:none!important;mix-blend-mode:normal!important;}
.preloader-logo{max-width:180px;height:auto;object-fit:contain;}
.footer-logo-brand{max-width:260px;height:auto;object-fit:contain;}
.footer-logo-brokerage{max-width:180px;height:auto;object-fit:contain;}
.listing-carousel__prev,.listing-carousel__next{font-size:28px;line-height:1;}
@media (max-width:1024px){.site-logo .logo-brand{max-height:54px}.site-logo .logo-brokerage{max-height:34px}}

/* Emergency QA fix: preloader must never block site access */
.site-preloader{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;}

/* Major QA polish pass — Lana header/footer/logos */
.lana-header{background:transparent;backdrop-filter:none;}
.lana-header.scrolled{background:rgba(248,247,242,.96)!important;box-shadow:0 12px 35px rgba(16,13,12,.08);}
.lana-header__inner{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:28px;}
.lana-wordmark{display:flex;flex-direction:column;gap:6px;text-decoration:none;color:#fff;letter-spacing:.02em;line-height:1;min-width:260px;}
.lana-wordmark__kicker{font-family:Arial,sans-serif;font-size:10px;text-transform:uppercase;letter-spacing:.18em;font-weight:600;opacity:.82;white-space:nowrap;}
.lana-wordmark__name{font-family:Georgia,serif;font-size:clamp(20px,2.05vw,32px);text-transform:uppercase;letter-spacing:.055em;font-weight:400;white-space:nowrap;}
.lana-header.scrolled .lana-wordmark{color:#101010;}
.lana-nav{display:flex;align-items:center;gap:28px;}
.lana-nav a{font-size:12px!important;letter-spacing:.16em;text-transform:uppercase;font-weight:600;}
.site-header .nav-buttons{display:none;}
.lana-footer__brand-row{gap:28px;align-items:center;justify-content:center;margin-bottom:18px;}
.lana-footer .footer-logo-brand{max-width:260px!important;max-height:78px!important;width:auto!important;height:auto!important;object-fit:contain;}
.lana-footer .footer-logo-brokerage{max-width:165px!important;max-height:58px!important;width:auto!important;height:auto!important;object-fit:contain;}
.lana-footer__compliance{display:flex;gap:12px;justify-content:center;align-items:center;flex-wrap:wrap;margin:0 auto 34px;}
.compliance-mark{border:1px solid rgba(16,13,12,.28);padding:8px 12px;font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:#100d0c;background:rgba(255,255,255,.45);}
.elegant-menu__close{min-width:44px;min-height:44px;line-height:44px;}
.elegant-menu__link{min-height:44px;display:flex;align-items:center;justify-content:center;}
@media (max-width:1180px){.lana-nav{display:none}.site-header .nav-buttons{display:block}.lana-header__inner{min-height:78px}.lana-wordmark__kicker{font-size:9px}.lana-wordmark__name{font-size:22px}}
@media (max-width:560px){.lana-header__inner{min-height:72px;padding-left:16px!important;padding-right:16px!important}.lana-wordmark{min-width:0;max-width:245px}.lana-wordmark__kicker{font-size:8px;letter-spacing:.11em;white-space:normal;line-height:1.25}.lana-wordmark__name{font-size:17px;letter-spacing:.035em;white-space:normal;line-height:1.05}.btn--nav{padding:10px 14px!important;min-height:44px}.lana-footer__brand-row{flex-direction:column;gap:16px}.footer-logo-divider{display:none}.lana-footer .footer-logo-brand{max-width:220px!important}.lana-footer .footer-logo-brokerage{max-width:150px!important}.newsletter-form{flex-direction:column}.newsletter-form input,.newsletter-form button{width:100%;min-height:46px}}
/* Header correction: personal/team logo only in top-left */
.lana-header-logo{display:flex;align-items:center;text-decoration:none;line-height:0;min-width:180px;}
.lana-header-logo__img{display:block;width:auto;height:auto;max-height:78px;max-width:250px;object-fit:contain;}
.lana-header-logo__img--dark{display:none;}
.lana-header.scrolled .lana-header-logo__img--white{display:none;}
.lana-header.scrolled .lana-header-logo__img--dark{display:block;}
@media (max-width:1180px){.lana-header-logo__img{max-height:66px;max-width:215px}.lana-header-logo{min-width:150px}}
@media (max-width:560px){.lana-header-logo__img{max-height:54px;max-width:170px}.lana-header-logo{min-width:0}.lana-header__inner{gap:12px}}
/* Final QA guardrail: prevent tiny horizontal overflow from carousel/header layers */
html, body { max-width: 100%; overflow-x: hidden; }

/* Attached personal logo correction */
.lana-header-logo__img{max-height:70px!important;max-width:70px!important;width:70px!important;height:70px!important;object-fit:contain!important;}
@media (max-width:1180px){.lana-header-logo__img{max-height:60px!important;max-width:60px!important;width:60px!important;height:60px!important;}}
@media (max-width:560px){.lana-header-logo__img{max-height:52px!important;max-width:52px!important;width:52px!important;height:52px!important;}}
/* Restore Andrea template header/menu structure with Lana personal logo only */
.original-header-style .container{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:32px!important;min-height:112px!important;}
.original-header-style .site-logo.lana-single-logo{display:flex!important;align-items:center!important;line-height:0!important;text-decoration:none!important;min-width:120px!important;position:relative!important;z-index:2!important;}
.original-header-style .lana-single-logo__img{display:block!important;width:105px!important;height:105px!important;max-width:105px!important;max-height:105px!important;object-fit:contain!important;filter:none!important;mix-blend-mode:normal!important;opacity:1!important;transition:none!important;}
.original-header-style.scrolled .lana-single-logo__img{filter:none!important;mix-blend-mode:normal!important;opacity:1!important;}
.original-header-style .main-nav{display:flex!important;align-items:center!important;gap:32px!important;position:static!important;transform:none!important;}
.original-header-style .main-nav a{font-size:12px!important;letter-spacing:.14em!important;text-transform:uppercase!important;font-weight:600!important;}
.original-header-style .nav-buttons{display:flex!important;align-items:center!important;justify-content:flex-end!important;min-width:90px!important;}
.original-header-style .btn--nav{min-height:44px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.original-header-style.scrolled{background:#f8f7f2!important;}
@media (max-width:1024px){.original-header-style .container{min-height:96px!important;gap:18px!important}.original-header-style .main-nav{display:none!important}.original-header-style .lana-single-logo__img{width:92px!important;height:92px!important;max-width:92px!important;max-height:92px!important}.original-header-style .nav-buttons{display:flex!important}}
@media (max-width:560px){.original-header-style .container{min-height:86px!important;padding-left:18px!important;padding-right:18px!important}.original-header-style .lana-single-logo__img{width:78px!important;height:78px!important;max-width:78px!important;max-height:78px!important}.original-header-style .btn--nav{padding:10px 16px!important}}
/* FINAL: match Andrea Kisling header structure; Lana personal logo only */
.site-header{position:fixed!important;top:0!important;left:0!important;right:0!important;z-index:100!important;padding:15px 20px!important;background:transparent;transition:background-color .4s ease,box-shadow .4s ease,padding .3s ease!important;}
.site-header.scrolled{background:#f8f7f2!important;box-shadow:0 1px 10px rgba(0,0,0,.08)!important;padding:10px 20px!important;}
.site-header>.container{max-width:100%!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:40px!important;min-height:0!important;padding-left:16px!important;padding-right:16px!important;}
.site-header .main-nav{display:flex!important;align-items:center!important;gap:28px!important;margin-left:auto!important;position:static!important;transform:none!important;}
.site-header .nav-buttons{display:flex!important;align-items:center!important;margin-left:0!important;min-width:auto!important;}
.site-header .site-logo.lana-header-logo-exact{display:flex!important;align-items:center!important;gap:0!important;text-decoration:none!important;line-height:0!important;min-width:0!important;}
.site-header .lana-header-logo-exact__img{display:block!important;width:105px!important;height:105px!important;max-width:105px!important;max-height:105px!important;object-fit:contain!important;filter:none!important;mix-blend-mode:normal!important;opacity:1!important;transition:none!important;}
.site-header .logo-dark.lana-header-logo-exact__img,.site-header .logo-white.lana-header-logo-exact__img,.site-header.scrolled .logo-dark.lana-header-logo-exact__img,.site-header.scrolled .logo-white.lana-header-logo-exact__img{display:block!important;filter:none!important;mix-blend-mode:normal!important;opacity:1!important;}
.site-header .main-nav a{font-size:13px!important;line-height:1!important;letter-spacing:.02em!important;text-transform:none!important;font-weight:400!important;transition:color .4s ease!important;}
.site-header.scrolled .main-nav a{color:#1a1a1a!important;}
.site-header.scrolled .btn--white{display:none!important;}
.site-header.scrolled .btn--dark{display:inline-flex!important;}
.site-header .btn--nav{min-height:auto!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.site-header .logo-divider,.site-header .logo-brokerage,.site-header .logo-compass{display:none!important;}
@media (max-width:1024px){.site-header>.container{gap:20px!important}.site-header .main-nav{display:none!important}.site-header .lana-header-logo-exact__img{width:92px!important;height:92px!important;max-width:92px!important;max-height:92px!important}.site-header .nav-buttons{display:flex!important;margin-left:auto!important}}
@media (max-width:560px){.site-header{padding:12px 12px!important}.site-header>.container{gap:12px!important;padding-left:8px!important;padding-right:8px!important}.site-header .lana-header-logo-exact__img{width:78px!important;height:78px!important;max-width:78px!important;max-height:78px!important}.site-header .btn--nav{padding:10px 16px!important}}
/* Fix duplicated Menu button: preserve Andrea one-at-a-time scroll toggle */
.site-header .nav-buttons .btn--white{display:inline-flex!important;}
.site-header .nav-buttons .btn--dark{display:none!important;}
.site-header.scrolled .nav-buttons .btn--white{display:none!important;}
.site-header.scrolled .nav-buttons .btn--dark{display:inline-flex!important;}

/* Max request: double desktop header menu link size */
.site-header .main-nav a{font-size:26px!important;}
@media (max-width:1024px){.site-header .main-nav a{font-size:18px!important;}}

/* Max request: reduce enlarged header menu links by 30% */
.site-header .main-nav a{font-size:18.2px!important;}
@media (max-width:1024px){.site-header .main-nav a{font-size:12.6px!important;}}

/* Full-screen branded menu */
.elegant-menu{position:fixed;inset:0;z-index:10000;opacity:0;pointer-events:none;transition:opacity .35s ease;}
.elegant-menu--open{opacity:1;pointer-events:auto;}
.elegant-menu__overlay{position:absolute;inset:0;background:rgba(9,12,15,.78);backdrop-filter:blur(10px);}
.elegant-menu__panel{position:relative;z-index:1;width:min(1180px,calc(100vw - 48px));height:min(760px,calc(100vh - 48px));margin:24px auto;display:grid;grid-template-columns:.95fr 1.05fr;background:#f8f7f2;box-shadow:0 40px 120px rgba(0,0,0,.38);overflow:hidden;}
.elegant-menu__image{position:relative;background-size:cover;background-position:center;min-height:100%;}
.elegant-menu__image-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.62));}
.elegant-menu__brand-card{position:absolute;left:36px;right:36px;bottom:34px;padding:28px;background:rgba(248,247,242,.88);backdrop-filter:blur(12px);}
.elegant-menu__logo{width:112px;height:112px;object-fit:contain;display:block;margin-bottom:18px;}
.elegant-menu__brand-card p{margin:0;color:#100d0c;font-size:12px;letter-spacing:.16em;text-transform:uppercase;line-height:1.55;}
.elegant-menu__content{position:relative;padding:64px clamp(34px,5vw,72px);display:flex;flex-direction:column;justify-content:center;background:#f8f7f2;}
.elegant-menu__close{position:absolute;top:28px;right:32px;min-width:44px;min-height:44px;border:1px solid rgba(16,13,12,.28);background:transparent;color:#100d0c;font-size:11px;letter-spacing:.18em;text-transform:uppercase;cursor:pointer;}
.elegant-menu__eyebrow{margin:0 0 30px;color:#8a6f36;font-size:11px;letter-spacing:.22em;text-transform:uppercase;font-weight:700;}
.elegant-menu__nav{display:flex;flex-direction:column;align-items:stretch;gap:0;}
.elegant-menu__link{display:grid!important;grid-template-columns:42px 1fr;align-items:center;justify-content:start!important;min-height:68px;border-top:1px solid rgba(16,13,12,.12);color:#100d0c;text-decoration:none;font-family:Georgia,serif;font-size:clamp(30px,4.1vw,58px);line-height:.95;letter-spacing:-.035em;transition:color .25s ease,padding-left .25s ease,opacity .35s ease,transform .35s ease;}
.elegant-menu__link:last-child{border-bottom:1px solid rgba(16,13,12,.12);}
.elegant-menu__link span{font-family:Arial,sans-serif;font-size:11px;letter-spacing:.14em;color:#a98b48;font-weight:700;}
.elegant-menu__link:hover{color:#8a6f36;padding-left:12px;}
.elegant-menu__footer{margin-top:28px;display:grid;gap:8px;color:#4b443b;font-size:14px;line-height:1.5;transition:opacity .35s ease,transform .35s ease;}
.elegant-menu__contact{margin:0;}
.elegant-menu__contact a{color:#100d0c;text-decoration:none;border-bottom:1px solid rgba(16,13,12,.28);}
@media (max-width:820px){.elegant-menu__panel{width:100vw;height:100vh;margin:0;grid-template-columns:1fr;grid-template-rows:210px 1fr}.elegant-menu__brand-card{left:22px;right:auto;bottom:20px;padding:18px;max-width:260px}.elegant-menu__logo{width:76px;height:76px;margin-bottom:10px}.elegant-menu__content{padding:54px 26px 34px}.elegant-menu__close{top:18px;right:20px}.elegant-menu__link{min-height:56px;font-size:clamp(28px,10vw,44px)}}
@media (max-width:430px){.elegant-menu__panel{grid-template-rows:180px 1fr}.elegant-menu__brand-card p{font-size:10px}.elegant-menu__link{grid-template-columns:34px 1fr;min-height:52px}.elegant-menu__footer{font-size:12px}}
/* Max request: remove boxes around footer compliance marks */
.compliance-mark{border:0!important;background:transparent!important;padding:0!important;}

/* Lana community map section */
.areas-map-section{background:var(--color-cream,#f4efe4);padding:clamp(80px,9vw,130px) 0;overflow:hidden;}
.areas-map-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.82fr);gap:clamp(42px,6vw,86px);align-items:center;}
.areas-map-frame{position:relative;background:#fbf8f0;border:1px solid rgba(16,18,20,.12);box-shadow:0 34px 90px rgba(11,22,38,.13);padding:clamp(18px,2.4vw,32px);}
.areas-map-frame:before{content:"";position:absolute;inset:12px;border:1px solid rgba(183,154,90,.28);pointer-events:none;z-index:1;}
.areas-map-object{position:relative;z-index:0;display:block;width:100%;aspect-ratio:1000/1263;min-height:560px;border:0;background:#fbf8f0;}
.areas-map-copy{max-width:560px;justify-self:end;}
.areas-map-copy .eyebrow{color:var(--color-accent,#b5985a);font-size:12px;letter-spacing:.22em;text-transform:uppercase;font-weight:700;margin:0 0 18px;}
.areas-map-copy h2{font-family:Italiana,Georgia,serif;font-size:clamp(46px,5.2vw,82px);font-weight:400;line-height:.96;letter-spacing:-.045em;margin:0 0 24px;color:var(--color-text,#100d0c);}
.areas-map-copy p:not(.eyebrow){font-size:17px;line-height:1.8;color:rgba(16,13,12,.72);margin:0 0 34px;max-width:48ch;}
@media(max-width:980px){.areas-map-layout{grid-template-columns:1fr;gap:36px}.areas-map-copy{justify-self:start;max-width:none;order:-1}.areas-map-object{min-height:0}.areas-map-frame{overflow-x:auto;-webkit-overflow-scrolling:touch}.areas-map-object{width:720px;max-width:none}}
@media(max-width:560px){.areas-map-section{padding:72px 0}.areas-map-copy h2{font-size:clamp(40px,12vw,58px)}.areas-map-copy p:not(.eyebrow){font-size:15px}.areas-map-object{width:620px}.areas-map-frame{margin-left:-18px;margin-right:-18px}}
/* Team video thumbnail */
.team-video{position:relative;min-height:520px;background:#0b1626;overflow:hidden;box-shadow:0 32px 80px rgba(11,22,38,.18);}
.team-video__trigger{position:absolute;inset:0;width:100%;height:100%;padding:0;border:0;background:#0b1626;cursor:pointer;display:block;overflow:hidden;}
.team-video__trigger img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.01);transition:transform .7s ease,filter .7s ease;}
.team-video__shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,22,38,.08),rgba(11,22,38,.42));}
.team-video__play{position:absolute;left:50%;top:50%;width:92px;height:92px;border-radius:999px;transform:translate(-50%,-50%);background:rgba(251,248,240,.92);border:1px solid rgba(183,154,90,.55);box-shadow:0 24px 60px rgba(11,22,38,.28);display:grid;place-items:center;transition:transform .35s ease,background .35s ease;}
.team-video__play span{display:block;width:0;height:0;border-top:15px solid transparent;border-bottom:15px solid transparent;border-left:23px solid #0b1626;margin-left:6px;}
.team-video__caption{position:absolute;left:34px;bottom:30px;color:#fbf8f0;font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;}
.team-video__trigger:hover img{transform:scale(1.055);filter:saturate(1.05) contrast(1.04);}
.team-video__trigger:hover .team-video__play{transform:translate(-50%,-50%) scale(1.06);background:#fff;}
.team-video__iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block;background:#0b1626;}
@media(max-width:980px){.team-video{min-height:360px}.team-video__play{width:78px;height:78px}.team-video__caption{left:24px;bottom:24px}}
/* Ensure video replacement follows original team image layout */
.team-video{flex:0 0 50%!important;max-width:50%!important;order:1;}
@media(max-width:767px){.team-video{flex:0 0 100%!important;max-width:100%!important;order:0;min-height:360px!important}.team-text{flex:0 0 100%!important;max-width:100%!important;order:1}}
@media(min-width:768px) and (max-width:980px){.team-video{flex:0 0 100%!important;max-width:100%!important;order:0;min-height:440px!important}.team-text{flex:0 0 100%!important;max-width:100%!important;order:1}}

/* Layout pass: rebalance homepage community map section */
.areas-map-section{padding:clamp(74px,7vw,104px) 0!important;}
.areas-map-section .container{max-width:1240px!important;padding-left:clamp(22px,4vw,44px)!important;padding-right:clamp(22px,4vw,44px)!important;margin-left:auto!important;margin-right:auto!important;}
.areas-map-layout{grid-template-columns:minmax(420px,.92fr) minmax(360px,.78fr)!important;gap:clamp(48px,5.4vw,78px)!important;align-items:center!important;}
.areas-map-frame{width:100%!important;max-width:610px!important;justify-self:start!important;padding:clamp(16px,1.8vw,24px)!important;}
.areas-map-object{height:clamp(600px,64vw,720px)!important;min-height:0!important;aspect-ratio:auto!important;}
.areas-map-copy{justify-self:end!important;max-width:520px!important;padding-top:10px!important;}
.areas-map-copy h2{font-size:clamp(50px,4.7vw,74px)!important;max-width:9.5ch!important;margin-bottom:26px!important;}
.areas-map-copy p:not(.eyebrow){max-width:42ch!important;margin-bottom:32px!important;}
@media(max-width:980px){.areas-map-section .container{padding-left:24px!important;padding-right:24px!important}.areas-map-layout{grid-template-columns:1fr!important;gap:32px!important}.areas-map-copy{order:0!important;justify-self:start!important;max-width:620px!important;padding-top:0!important}.areas-map-frame{order:1!important;max-width:none!important}.areas-map-object{height:auto!important;width:720px!important}.areas-map-copy h2{max-width:12ch!important}}
@media(max-width:560px){.areas-map-section{padding:68px 0!important}.areas-map-section .container{padding-left:18px!important;padding-right:18px!important}.areas-map-copy h2{font-size:clamp(40px,12vw,56px)!important;max-width:10.5ch!important}.areas-map-frame{margin-left:0!important;margin-right:0!important}.areas-map-object{width:600px!important}}

/* Max request: homepage section order corrections */
@media(min-width:981px){
  .about-section .about-text{order:0!important;}
  .about-section .about-photo{order:1!important;}
  .team-section .team-video{order:0!important;}
  .team-section .team-text{order:1!important;}
  .areas-map-section .areas-map-copy{order:0!important;justify-self:start!important;text-align:left!important;}
  .areas-map-section .areas-map-frame{order:1!important;justify-self:end!important;}
}
.areas-map-copy{text-align:left!important;}
.areas-map-copy .eyebrow{display:none!important;}
.areas-map-copy h2{text-align:left!important;max-width:11.5ch!important;margin-left:0!important;margin-right:0!important;}
@media(max-width:980px){
  .about-section .about-text{order:0!important;}
  .about-section .about-photo{order:1!important;}
  .team-section .team-video{order:0!important;}
  .team-section .team-text{order:1!important;}
  .areas-map-section .areas-map-copy{order:0!important;text-align:left!important;}
  .areas-map-section .areas-map-frame{order:1!important;}
}
/* Max request: Our Promise text left, image right */
.testimonials-section .testimonials-content{order:0!important;}
.testimonials-section .testimonials-image{order:1!important;background-position:center!important;background-size:cover!important;}
@media(max-width:980px){.testimonials-section .testimonials-content{order:0!important}.testimonials-section .testimonials-image{order:1!important;min-height:420px!important}}
/* Max request: Our Promise image left, text right */
.testimonials-section .testimonials-image{order:0!important;}
.testimonials-section .testimonials-content{order:1!important;}
@media(max-width:980px){.testimonials-section .testimonials-image{order:0!important}.testimonials-section .testimonials-content{order:1!important}}

/* Local Guidance placeholder article cards */
.local-guidance-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:44px;}
.local-guidance-card{background:#fbf8f0;border:1px solid rgba(16,18,20,.12);padding:34px 30px 32px;min-height:320px;display:flex;flex-direction:column;align-items:flex-start;box-shadow:0 18px 48px rgba(11,22,38,.08);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;}
.local-guidance-card:hover{transform:translateY(-5px);box-shadow:0 28px 70px rgba(11,22,38,.13);border-color:rgba(183,154,90,.48);}
.local-guidance-card__category{font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:#b5985a;margin-bottom:22px;}
.local-guidance-card h3{font-family:Italiana,Georgia,serif;font-size:clamp(30px,2.5vw,42px);font-weight:400;line-height:1.02;letter-spacing:-.035em;margin:0 0 20px;color:#100d0c;}
.local-guidance-card p{font-size:15px;line-height:1.72;color:rgba(16,13,12,.68);margin:0 0 28px;}
.local-guidance-card a{margin-top:auto;color:#100d0c;text-decoration:none;font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;border-bottom:1px solid #b5985a;padding-bottom:6px;}
@media(max-width:980px){.local-guidance-grid{grid-template-columns:1fr;gap:18px}.local-guidance-card{min-height:0;padding:30px 24px}}
/* Restore Andrea-style homepage blog carousel */
.blog-section{padding:80px 0!important;text-align:center!important;background:#f8f7f2!important;}
.blog-section h2{margin-bottom:12px!important;}
.blog-section .section-subtext{margin:0 auto 40px!important;max-width:720px!important;}
.blog-section .blog-header{display:block!important;text-align:center!important;margin-bottom:0!important;}
.blog-section .blog-card{display:flex!important;flex-direction:column!important;background:#fff!important;height:100%!important;width:100%!important;max-width:100%!important;text-align:left!important;overflow:hidden!important;transition:transform .3s ease,box-shadow .3s ease!important;}
.blog-section .blog-card:hover{transform:translateY(-4px)!important;box-shadow:0 12px 24px rgba(0,0,0,.12)!important;}
.blog-section .blog-card__image{display:block!important;overflow:hidden!important;aspect-ratio:4/3!important;background:#f0f0f0!important;margin:0!important;}
.blog-section .blog-card__image img{width:100%!important;height:100%!important;object-fit:cover!important;transition:transform .4s ease!important;}
.blog-section .blog-card__image:hover img{transform:scale(1.08)!important;}
.blog-section .blog-card__content{padding:24px 0!important;flex:1!important;display:flex!important;flex-direction:column!important;}
.blog-section .blog-card__category{font-family:Raleway,sans-serif!important;font-size:12px!important;font-weight:400!important;letter-spacing:2px!important;text-transform:uppercase!important;color:#100d0c!important;margin:0 0 12px!important;}
.blog-section .blog-card__title{font-family:Italiana,serif!important;font-size:22px!important;line-height:1.3!important;margin:0 0 12px!important;flex:1!important;font-weight:400!important;text-transform:none!important;}
.blog-section .blog-card__title a{color:#100d0c!important;text-decoration:none!important;transition:color .2s ease!important;}
.blog-section .blog-card__title a:hover{color:#666!important;}
.blog-section .blog-card__date{font-family:Raleway,sans-serif!important;font-size:14px!important;color:#666!important;margin:0!important;}
.blog-nav button{width:46px;height:46px;border:1px solid rgba(16,13,12,.22);background:transparent;color:#100d0c;display:grid;place-items:center;cursor:pointer;transition:background .2s ease,color .2s ease;}
.blog-nav button:hover{background:#100d0c;color:#fff;}
.blog-swiper .swiper-slide .blog-card{flex:1 1 100%!important;min-width:0!important;}
@media(max-width:768px){.blog-header{flex-direction:column;align-items:center;margin-bottom:30px}.blog-section .blog-card__content{padding:20px 0!important}}
/* Final homepage spacing normalization: match About section rhythm */
.team-section{padding:80px 0!important;background:#f8f7f2!important;}
.team-section .container{max-width:100%!important;padding:0!important;}
.team-grid{display:flex!important;flex-wrap:wrap!important;min-height:0!important;}
.team-video{flex:0 0 50%!important;max-width:50%!important;min-height:700px!important;order:0!important;box-shadow:none!important;}
.team-text{flex:0 0 50%!important;max-width:50%!important;padding:80px 60px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:flex-start!important;order:1!important;text-align:left!important;}
.team-text h3{font-size:35px!important;line-height:1.3!important;margin:0!important;text-align:left!important;}
.team-script{font-size:45px!important;line-height:1.2!important;margin:8px 0!important;text-align:left!important;}

.areas-map-section{padding:80px 0!important;background:#f8f7f2!important;}
.areas-map-section .container{max-width:100%!important;padding:0!important;margin:0!important;}
.areas-map-layout{display:flex!important;flex-wrap:wrap!important;gap:0!important;align-items:stretch!important;}
.areas-map-copy{flex:0 0 50%!important;max-width:50%!important;padding:80px 60px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:flex-start!important;order:0!important;text-align:left!important;}
.areas-map-copy h2{font-family:Italiana,serif!important;font-size:50px!important;font-weight:300!important;line-height:1.3!important;letter-spacing:.25px!important;text-transform:uppercase!important;max-width:620px!important;margin:0 0 24px!important;text-align:left!important;}
.areas-map-copy p:not(.eyebrow){font-size:16px!important;font-weight:200!important;line-height:1.65!important;color:#222!important;max-width:560px!important;margin:0 0 24px!important;text-align:left!important;}
.areas-map-frame{flex:0 0 50%!important;max-width:50%!important;min-height:700px!important;order:1!important;justify-self:auto!important;padding:0!important;margin:0!important;border:0!important;box-shadow:none!important;background:#fbf8f0!important;overflow:hidden!important;display:flex!important;align-items:center!important;justify-content:center!important;}
.areas-map-frame:before{display:none!important;}
.areas-map-object{width:100%!important;height:700px!important;min-height:700px!important;max-width:none!important;aspect-ratio:auto!important;display:block!important;background:#fbf8f0!important;}
@media(max-width:980px){.team-section,.areas-map-section{padding:0!important}.team-video,.team-text,.areas-map-copy,.areas-map-frame{flex:0 0 100%!important;max-width:100%!important}.team-video{order:0!important;min-height:380px!important}.team-text{order:1!important;padding:56px 24px!important}.areas-map-copy{order:0!important;padding:56px 24px!important}.areas-map-frame{order:1!important;min-height:520px!important;overflow-x:auto!important;justify-content:flex-start!important;-webkit-overflow-scrolling:touch!important}.areas-map-object{width:700px!important;height:520px!important;min-height:520px!important;flex:0 0 auto!important}.areas-map-copy h2{font-size:40px!important;max-width:620px!important}.team-script{font-size:38px!important}}
@media(max-width:560px){.team-video{min-height:360px!important}.team-text,.areas-map-copy{padding:48px 18px!important}.areas-map-frame{min-height:500px!important}.areas-map-object{width:620px!important;height:500px!important;min-height:500px!important}.areas-map-copy h2{font-size:36px!important}.team-text h3{font-size:30px!important}.team-script{font-size:34px!important}}

/* Communities page clickable map replacement */
.comm-map-page-section{background:#f8f7f2!important;padding:80px 0!important;}
.comm-map-page-section .container{max-width:100%!important;padding:0!important;margin:0!important;}
.comm-map-page-layout{display:flex;flex-wrap:wrap;align-items:stretch;}
.comm-map-page-copy{flex:0 0 50%;max-width:50%;padding:80px 60px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;text-align:left;}
.comm-map-page-copy .comm-county__heading{text-align:left!important;margin:0 0 24px!important;padding:0!important;font-size:50px!important;line-height:1.3!important;max-width:620px;}
.comm-map-page-copy .comm-county__desc{text-align:left!important;margin:0 0 28px!important;max-width:560px!important;}
.comm-map-page-frame{flex:0 0 50%;max-width:50%;min-height:700px;background:#fbf8f0;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.comm-map-page-object{width:100%;height:700px;min-height:700px;border:0;background:#fbf8f0;display:block;}
@media(max-width:980px){.comm-map-page-section{padding:0!important}.comm-map-page-copy,.comm-map-page-frame{flex:0 0 100%;max-width:100%}.comm-map-page-copy{padding:56px 24px}.comm-map-page-frame{min-height:520px;overflow-x:auto;justify-content:flex-start;-webkit-overflow-scrolling:touch}.comm-map-page-object{width:700px;height:520px;min-height:520px;flex:0 0 auto}.comm-map-page-copy .comm-county__heading{font-size:40px!important;}}
@media(max-width:560px){.comm-map-page-copy{padding:48px 18px}.comm-map-page-frame{min-height:500px}.comm-map-page-object{width:620px;height:500px;min-height:500px}.comm-map-page-copy .comm-county__heading{font-size:36px!important}}
/* Team-focused About page and agent profiles */
.team-about-hero .about-hero__content{max-width:900px}.team-about-kicker{font-size:12px;letter-spacing:.24em;text-transform:uppercase;color:#fff;margin:0 0 18px;font-weight:700}.team-about-hero__line{font-family:Italiana,serif;font-size:clamp(30px,4vw,56px);line-height:1.1;color:#fff;margin:24px 0 0}.team-about-intro{padding:96px 0;background:#f8f7f2}.team-about-intro__grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:72px}.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:50px;line-height:1.18;margin:0 0 24px}.team-about-intro__copy p:not(.eyebrow){font-size:17px;line-height:1.8;max-width:56ch}.team-about-intro__image img{width:100%;height:620px;object-fit:cover;display:block}.team-roster-section{padding:104px 0;background:#fff}.team-roster-heading{text-align:center;max-width:720px;margin:0 auto 56px}.team-roster-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}.team-roster-card{background:#f8f7f2;display:flex;flex-direction:column;min-height:100%;border:1px solid rgba(16,13,12,.08)}.team-roster-card__image{display:block;overflow:hidden;background:#e8e0d2}.team-roster-card__image img{width:100%;height:430px;object-fit:cover;display:block;transition:transform .6s ease}.team-roster-card:hover .team-roster-card__image img{transform:scale(1.04)}.team-roster-card__body{padding:30px;display:flex;flex-direction:column;gap:16px;flex:1}.team-roster-card__role{font-size:12px!important;letter-spacing:.2em;text-transform:uppercase;color:#b5985a!important;font-weight:700;margin:0!important}.team-roster-card h3{font-size:34px;margin:0}.team-roster-card p{margin:0}.team-roster-card dl{display:grid;gap:12px;margin:6px 0 4px}.team-roster-card dl div{border-top:1px solid rgba(16,13,12,.12);padding-top:12px}.team-roster-card dt{font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:#777}.team-roster-card dd{margin:5px 0 0;color:#100d0c}.team-roster-card .btn{margin-top:auto;align-self:flex-start}.team-proof-section{background:#100d0c;color:#fff;padding:70px 0}.team-proof-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}.team-proof-grid span{display:block;font-family:Italiana,serif;font-size:58px;line-height:1;color:#b5985a}.team-proof-grid p{color:#fff;margin:14px 0 0;font-size:13px;text-transform:uppercase;letter-spacing:.12em}.agent-profile-hero{display:grid;grid-template-columns:1fr 1fr;min-height:760px;background:#f8f7f2;padding-top:92px}.agent-profile-hero__image img{width:100%;height:100%;min-height:668px;object-fit:cover;display:block}.agent-profile-hero__content{padding:90px 70px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.agent-profile-back{font-size:12px;text-transform:uppercase;letter-spacing:.18em;color:#777;margin-bottom:36px}.agent-profile-hero h1{font-size:clamp(64px,7vw,112px);line-height:.9;margin:0 0 22px}.agent-profile-line{font-family:Italiana,serif;font-size:clamp(30px,3.6vw,54px);line-height:1.1;color:#100d0c;margin:0 0 32px}.agent-profile-contact{display:flex;flex-wrap:wrap;gap:14px 24px}.agent-profile-contact a,.agent-profile-contact span{font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#100d0c}.agent-profile-body{padding:104px 0;background:#fff}.agent-profile-grid{display:grid;grid-template-columns:360px 1fr;gap:80px;align-items:start}.agent-profile-facts{background:#f8f7f2;padding:34px}.agent-profile-facts>div{border-bottom:1px solid rgba(16,13,12,.12);padding:0 0 24px;margin:0 0 24px}.agent-profile-facts>div:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}.agent-profile-facts span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:#777;margin-bottom:10px}.agent-profile-facts strong{font-family:Italiana,serif;font-size:30px;font-weight:300;line-height:1.1}.agent-profile-facts ul{margin:10px 0 0;padding-left:18px}.agent-profile-facts li{margin:8px 0}.agent-profile-bio{max-width:760px}.agent-profile-bio p:not(.eyebrow){font-size:18px;line-height:1.85}.agent-profile-cta{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}.btn--outline{background:transparent!important;color:#100d0c!important;border:1px solid #100d0c!important}@media(max-width:980px){.team-about-intro__grid,.agent-profile-hero,.agent-profile-grid{grid-template-columns:1fr}.team-roster-grid,.team-proof-grid{grid-template-columns:1fr}.team-about-intro{padding:72px 0}.team-about-intro__grid{gap:36px}.team-about-intro__image img{height:auto}.team-roster-section,.agent-profile-body{padding:72px 0}.agent-profile-hero{padding-top:80px}.agent-profile-hero__image img{min-height:0;height:auto}.agent-profile-hero__content{padding:56px 24px}.agent-profile-grid{gap:36px}.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:40px}.team-roster-card__image img{height:auto}.team-proof-grid{text-align:left}.team-proof-grid div{border-bottom:1px solid rgba(255,255,255,.18);padding-bottom:18px}}@media(max-width:560px){.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:34px}.team-roster-card__body,.agent-profile-facts{padding:24px}.agent-profile-hero h1{font-size:58px}.agent-profile-line{font-size:32px}.agent-profile-cta .btn{width:100%;text-align:center}}
/* Team-focused About page and agent profiles */
.team-about-hero .about-hero__content{max-width:900px}.team-about-kicker{font-size:12px;letter-spacing:.24em;text-transform:uppercase;color:#fff;margin:0 0 18px;font-weight:700}.team-about-hero__line{font-family:Italiana,serif;font-size:clamp(30px,4vw,56px);line-height:1.1;color:#fff;margin:24px 0 0}.team-about-intro{padding:96px 0;background:#f8f7f2}.team-about-intro__grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:72px}.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:50px;line-height:1.18;margin:0 0 24px}.team-about-intro__copy p:not(.eyebrow){font-size:17px;line-height:1.8;max-width:56ch}.team-about-intro__image img{width:100%;height:620px;object-fit:cover;display:block}.team-roster-section{padding:104px 0;background:#fff}.team-roster-heading{text-align:center;max-width:720px;margin:0 auto 56px}.team-roster-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}.team-roster-card{background:#f8f7f2;display:flex;flex-direction:column;min-height:100%;border:1px solid rgba(16,13,12,.08)}.team-roster-card__image{display:block;overflow:hidden;background:#e8e0d2}.team-roster-card__image img{width:100%;height:430px;object-fit:cover;display:block;transition:transform .6s ease}.team-roster-card:hover .team-roster-card__image img{transform:scale(1.04)}.team-roster-card__body{padding:30px;display:flex;flex-direction:column;gap:16px;flex:1}.team-roster-card__role{font-size:12px!important;letter-spacing:.2em;text-transform:uppercase;color:#b5985a!important;font-weight:700;margin:0!important}.team-roster-card h3{font-size:34px;margin:0}.team-roster-card p{margin:0}.team-roster-card dl{display:grid;gap:12px;margin:6px 0 4px}.team-roster-card dl div{border-top:1px solid rgba(16,13,12,.12);padding-top:12px}.team-roster-card dt{font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:#777}.team-roster-card dd{margin:5px 0 0;color:#100d0c}.team-roster-card .btn{margin-top:auto;align-self:flex-start}.team-proof-section{background:#100d0c;color:#fff;padding:70px 0}.team-proof-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}.team-proof-grid span{display:block;font-family:Italiana,serif;font-size:58px;line-height:1;color:#b5985a}.team-proof-grid p{color:#fff;margin:14px 0 0;font-size:13px;text-transform:uppercase;letter-spacing:.12em}.agent-profile-hero{display:grid;grid-template-columns:1fr 1fr;min-height:760px;background:#f8f7f2;padding-top:92px}.agent-profile-hero__image img{width:100%;height:100%;min-height:668px;object-fit:cover;display:block}.agent-profile-hero__content{padding:90px 70px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.agent-profile-back{font-size:12px;text-transform:uppercase;letter-spacing:.18em;color:#777;margin-bottom:36px}.agent-profile-hero h1{font-size:clamp(64px,7vw,112px);line-height:.9;margin:0 0 22px}.agent-profile-line{font-family:Italiana,serif;font-size:clamp(30px,3.6vw,54px);line-height:1.1;color:#100d0c;margin:0 0 32px}.agent-profile-contact{display:flex;flex-wrap:wrap;gap:14px 24px}.agent-profile-contact a,.agent-profile-contact span{font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#100d0c}.agent-profile-body{padding:104px 0;background:#fff}.agent-profile-grid{display:grid;grid-template-columns:360px 1fr;gap:80px;align-items:start}.agent-profile-facts{background:#f8f7f2;padding:34px}.agent-profile-facts>div{border-bottom:1px solid rgba(16,13,12,.12);padding:0 0 24px;margin:0 0 24px}.agent-profile-facts>div:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}.agent-profile-facts span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:#777;margin-bottom:10px}.agent-profile-facts strong{font-family:Italiana,serif;font-size:30px;font-weight:300;line-height:1.1}.agent-profile-facts ul{margin:10px 0 0;padding-left:18px}.agent-profile-facts li{margin:8px 0}.agent-profile-bio{max-width:760px}.agent-profile-bio p:not(.eyebrow){font-size:18px;line-height:1.85}.agent-profile-cta{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}.btn--outline{background:transparent!important;color:#100d0c!important;border:1px solid #100d0c!important}@media(max-width:980px){.team-about-intro__grid,.agent-profile-hero,.agent-profile-grid{grid-template-columns:1fr}.team-roster-grid,.team-proof-grid{grid-template-columns:1fr}.team-about-intro{padding:72px 0}.team-about-intro__grid{gap:36px}.team-about-intro__image img{height:auto}.team-roster-section,.agent-profile-body{padding:72px 0}.agent-profile-hero{padding-top:80px}.agent-profile-hero__image img{min-height:0;height:auto}.agent-profile-hero__content{padding:56px 24px}.agent-profile-grid{gap:36px}.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:40px}.team-roster-card__image img{height:auto}.team-proof-grid{text-align:left}.team-proof-grid div{border-bottom:1px solid rgba(255,255,255,.18);padding-bottom:18px}}@media(max-width:560px){.team-about-intro__copy h2,.team-roster-heading h2,.agent-profile-bio h2{font-size:34px}.team-roster-card__body,.agent-profile-facts{padding:24px}.agent-profile-hero h1{font-size:58px}.agent-profile-line{font-size:32px}.agent-profile-cta .btn{width:100%;text-align:center}}
/* About page intro video */
.team-about-video{position:relative!important;min-height:620px!important;width:100%!important;max-width:none!important;box-shadow:0 32px 80px rgba(11,22,38,.14)!important;}
.team-about-video .team-video__trigger{position:absolute!important;inset:0!important;}
.team-about-video .team-video__trigger img{height:100%!important;}
@media(max-width:980px){.team-about-video{min-height:420px!important;}}
@media(max-width:560px){.team-about-video{min-height:340px!important;}}

/* Lana Area Guides skin */
.lana-area-guide-product{background:#f8f7f2;color:#100d0c;overflow:hidden}.lana-guide-hero{min-height:82vh;padding:180px 7vw 100px;background:linear-gradient(135deg,rgba(10,22,40,.86),rgba(10,22,40,.48)),url('/wp-content/themes/montecito-template/assets/images/about-hero.jpg') center/cover;color:#fff}.lana-guide-hero .area-hero-copy{max-width:880px}.lana-guide-hero h1{font-family:Italiana,serif;font-size:clamp(58px,8vw,118px);line-height:.92;font-weight:300;margin:0 0 26px;color:#fff;text-transform:uppercase}.lana-guide-hero p{max-width:760px;color:rgba(255,255,255,.88);font-size:18px;line-height:1.75}.lana-guide-hero .eyebrow,.lana-area-guide-product .eyebrow{letter-spacing:.22em;text-transform:uppercase;color:#b5985a;font-weight:700;font-size:12px}.lana-guide-hero .actions,.lana-guide-summary .actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}.lana-area-guide-product .btn{background:#b5985a;color:#fff;border:1px solid #b5985a;padding:14px 24px;text-transform:uppercase;letter-spacing:.14em;font-size:12px}.lana-area-guide-product .btn--outline,.lana-area-guide-product .btn.ghost{background:transparent!important;color:inherit!important;border-color:currentColor!important}.area-page-nav{position:sticky;top:0;z-index:20;display:flex;gap:8px;overflow-x:auto;padding:14px 24px;background:#100d0c;border-bottom:1px solid rgba(255,255,255,.12)}.area-page-nav a{white-space:nowrap;color:#fff;text-decoration:none;font-size:12px;letter-spacing:.14em;text-transform:uppercase;padding:10px 14px;border:1px solid rgba(255,255,255,.14)}.lana-area-guide-product section:not(.area-guide-hero):not(.area-cta-band){padding:clamp(72px,8vw,120px) clamp(20px,5vw,72px)}.lana-area-guide-product h2{font-family:Italiana,serif;font-size:clamp(42px,5vw,72px);font-weight:300;line-height:1.04;text-transform:uppercase;color:#100d0c}.lana-market-panel,.lana-guide-summary{background:#fff}.hag-widget-head,.hag-widget-head-actions{display:flex;justify-content:space-between;gap:36px;align-items:flex-end;max-width:1280px;margin:0 auto 42px}.hag-widget-head>div{max-width:760px}.hag-sold-board,.kasey-market-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.hag-sold-stat{background:#f8f7f2;border:1px solid rgba(16,13,12,.1);padding:28px}.hag-sold-stat span,.hag-sold-stat small{display:block;color:rgba(16,13,12,.62);font-size:12px;line-height:1.5}.hag-sold-stat b{display:block;font-family:Italiana,serif;font-size:46px;font-weight:300;color:#b5985a;margin:14px 0}.kasey-market-local{max-width:1280px;margin:30px auto 0;background:#100d0c;color:#fff;padding:34px}.kasey-market-local h3{color:#fff}.kasey-market-local p,.kasey-market-local small{color:rgba(255,255,255,.76)}.lana-guide-summary{padding:clamp(90px,10vw,150px) clamp(20px,5vw,72px);text-align:center}.lana-guide-summary h2{max-width:980px;margin:0 auto 22px}.lana-guide-summary p{max-width:760px;margin:0 auto;color:rgba(16,13,12,.72);line-height:1.75}.lana-guide-summary .actions{justify-content:center}@media(max-width:900px){.hag-widget-head,.hag-widget-head-actions{display:block}.hag-sold-board,.kasey-market-grid{grid-template-columns:1fr}.lana-guide-hero{padding-top:140px}.area-page-nav{top:0}.lana-area-guide-product section:not(.area-guide-hero):not(.area-cta-band){padding-left:18px;padding-right:18px}}
/* Kasey-style contextual team popup adapted for Lana/Cory/Brock */
.lana-team-popup{position:fixed;right:24px;bottom:24px;z-index:95;width:min(410px,calc(100vw - 32px));display:grid;grid-template-columns:118px 1fr;overflow:hidden;border:1px solid rgba(255,255,255,.52);background:rgba(251,248,240,.92);color:#100d0c;box-shadow:0 30px 92px rgba(10,22,40,.24);backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);transform:translateY(30px) scale(.96);opacity:0;pointer-events:none;transition:transform .65s cubic-bezier(.2,1,.22,1),opacity .65s cubic-bezier(.2,1,.22,1);}
.lana-team-popup[hidden]{display:none!important}.lana-team-popup.is-visible{opacity:1;pointer-events:auto;transform:translateY(0) scale(1)}
.lana-team-popup__media{display:block;min-height:204px;background:#e7dcc8;overflow:hidden}.lana-team-popup__media img{width:118px;height:100%;min-height:204px;display:block;object-fit:cover;object-position:center top;filter:saturate(.96) contrast(1.03);transition:transform .45s ease}.lana-team-popup:hover .lana-team-popup__media img{transform:scale(1.035)}
.lana-team-popup__copy{padding:22px 22px 20px}.lana-team-popup__copy span{display:block;margin-bottom:8px;color:#b5985a;font-size:10px;text-transform:uppercase;letter-spacing:.17em;font-weight:800}.lana-team-popup__copy h3{font-family:Italiana,Georgia,serif;font-size:clamp(25px,2.1vw,33px);line-height:.98;font-weight:400;margin:0 28px 10px 0;color:#100d0c;text-transform:none}.lana-team-popup__copy p{font-size:14px;line-height:1.5;color:rgba(16,13,12,.72);margin:0 0 14px}.lana-team-popup__agent{display:grid;gap:2px;margin:0 0 15px;padding-top:12px;border-top:1px solid rgba(16,13,12,.12)}.lana-team-popup__agent strong{font-family:Italiana,Georgia,serif;font-weight:400;font-size:22px;line-height:1;color:#100d0c}.lana-team-popup__agent small{font-size:11px;line-height:1.35;color:rgba(16,13,12,.58)}.lana-team-popup__link{display:inline-flex;align-items:center;justify-content:center;background:#100d0c;color:#fff;text-decoration:none;padding:12px 17px;font-size:10px;text-transform:uppercase;letter-spacing:.13em;font-weight:800;transition:background .2s ease,color .2s ease,transform .2s ease}.lana-team-popup__link:hover{background:#b5985a;color:#100d0c;transform:translateY(-1px)}.lana-team-popup__close{position:absolute;right:12px;top:10px;width:32px;height:32px;border:0;border-radius:999px;background:rgba(16,13,12,.08);color:#100d0c;font-size:20px;line-height:1;cursor:pointer;z-index:2}.lana-team-popup__close:hover{background:rgba(16,13,12,.14)}
@media(max-width:640px){.lana-team-popup{left:14px;right:14px;bottom:14px;width:auto;grid-template-columns:88px 1fr}.lana-team-popup__media,.lana-team-popup__media img{width:88px;min-height:172px}.lana-team-popup__copy{padding:18px 18px 17px}.lana-team-popup__copy h3{font-size:23px;margin-right:24px}.lana-team-popup__copy p{font-size:13px;line-height:1.42}.lana-team-popup__agent strong{font-size:20px}.lana-team-popup__link{padding:10px 13px}}
@media(prefers-reduced-motion:reduce){.lana-team-popup,.lana-team-popup__media img,.lana-team-popup__link{transition:none!important;transform:none!important}}
/* Fix header alignment on area guides and all fixed-header pages */
.site-header > .container{
  width:100%!important;
  max-width:100%!important;
  margin-left:0!important;
  margin-right:0!important;
  box-sizing:border-box!important;
}
.lana-area-guide-product .area-page-nav{
  top:0!important;
}
.blog-hero{
  background-position:center center!important;
}
/* Keep area-guide subnav below the fixed site header */
.lana-area-guide-product .area-page-nav{top:82px!important;}
@media(max-width:1024px){.lana-area-guide-product .area-page-nav{top:90px!important;}}
@media(max-width:560px){.lana-area-guide-product .area-page-nav{top:96px!important;}}

/* Contact form matching Lana section language */
.lana-contact-form-section .team-about-intro__grid{align-items:start}.lana-contact-form{background:#fff;padding:34px;border:1px solid rgba(16,13,12,.1);display:grid;grid-template-columns:1fr 1fr;gap:18px;box-shadow:0 24px 70px rgba(11,22,38,.08)}.lana-contact-form label{display:grid;gap:8px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#777;font-weight:700}.lana-contact-form input,.lana-contact-form textarea{width:100%;border:1px solid rgba(16,13,12,.16);background:#f8f7f2;color:#100d0c;padding:14px 15px;font:inherit;font-size:15px;line-height:1.4;letter-spacing:0;text-transform:none;outline:none}.lana-contact-form textarea{resize:vertical}.lana-contact-form input:focus,.lana-contact-form textarea:focus{border-color:#b5985a;box-shadow:0 0 0 4px rgba(181,152,90,.14);background:#fff}.lana-contact-form .full{grid-column:1/-1}.lana-contact-form button{border:0;cursor:pointer;justify-self:start}.lana-form-status{margin-top:22px!important;padding:14px 16px;background:#fff;border-left:3px solid #b5985a;color:#100d0c!important}.lana-form-status--success{border-left-color:#4f7f58}@media(max-width:760px){.lana-contact-form{grid-template-columns:1fr;padding:24px}.lana-contact-form button{width:100%;justify-content:center}}
/* Maher page image handling within existing Lana sections */
.page-template-page-maher-homes .team-about-intro__image,
.page-template-page-maher-homes .team-video{background:#fbf8f0!important;display:flex!important;align-items:center!important;justify-content:center!important;}
.page-template-page-maher-homes .team-about-intro__image img{height:620px!important;width:100%!important;object-fit:contain!important;padding:36px!important;background:#fff!important;}
.page-template-page-maher-homes #lakeside-trails .team-video img{width:100%!important;height:700px!important;object-fit:contain!important;object-position:center!important;padding:32px!important;background:#fbf8f0!important;}
.page-template-page-maher-homes .maher-card--image-2 .team-roster-card__image img,
.page-template-page-maher-homes .maher-card--image-3 .team-roster-card__image img,
.page-template-page-maher-homes .maher-card--image-4 .team-roster-card__image img{object-fit:contain!important;padding:28px!important;background:#fff!important;}
.page-template-page-maher-homes .maher-card--image-1 .team-roster-card__image img{object-fit:cover!important;object-position:center!important;}
@media(max-width:980px){.page-template-page-maher-homes .team-about-intro__image img{height:auto!important;min-height:280px!important}.page-template-page-maher-homes #lakeside-trails .team-video img{height:520px!important}.page-template-page-maher-homes .team-video{min-height:520px!important}}
@media(max-width:560px){.page-template-page-maher-homes #lakeside-trails .team-video img{height:500px!important;padding:22px!important}.page-template-page-maher-homes .team-video{min-height:500px!important}.page-template-page-maher-homes .team-about-intro__image img{padding:24px!important}}
/* Popup portraits: use optimized cropped portraits, never raw transparent profile PNGs */
.lana-team-popup__media{width:132px!important;min-height:224px!important;background:#e8dcc8!important;}
.lana-team-popup__media img{width:132px!important;height:100%!important;min-height:224px!important;object-fit:cover!important;object-position:center top!important;background:#e8dcc8!important;}
@media(max-width:640px){.lana-team-popup__media{width:92px!important;min-height:180px!important}.lana-team-popup__media img{width:92px!important;min-height:180px!important}}
/* Final popup portrait fix: fixed portrait frame, no stretching or broken transparent PNG rendering */
.lana-team-popup{
  grid-template-columns:132px 1fr!important;
  align-items:start!important;
}
.lana-team-popup__media{
  width:132px!important;
  height:224px!important;
  min-height:224px!important;
  align-self:start!important;
  overflow:hidden!important;
  background:#e8dcc8!important;
}
.lana-team-popup__media img{
  display:block!important;
  width:132px!important;
  height:224px!important;
  min-height:0!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center top!important;
  background:#e8dcc8!important;
}
@media(max-width:640px){
  .lana-team-popup{grid-template-columns:92px 1fr!important;}
  .lana-team-popup__media{width:92px!important;height:156px!important;min-height:156px!important;}
  .lana-team-popup__media img{width:92px!important;height:156px!important;min-height:0!important;}
}
/* Homepage-only logo preloader (fail-safe removed by JS) */
.lana-home-preloader{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;background:#f8f7f2;color:#100d0c;opacity:1;visibility:visible;transition:opacity .55s ease,visibility .55s ease;pointer-events:auto}.lana-home-preloader.is-hiding{opacity:0;visibility:hidden;pointer-events:none}.lana-home-preloader__inner{display:grid;place-items:center;gap:22px;transform:translateY(-8px)}.lana-home-preloader__inner img{width:clamp(112px,12vw,172px);height:auto;display:block;object-fit:contain;animation:lanaPreloaderMark 1.25s ease-in-out infinite alternate}.lana-home-preloader__inner span{width:96px;height:1px;background:linear-gradient(90deg,transparent,#b5985a,transparent);position:relative;overflow:hidden}.lana-home-preloader__inner span:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,#100d0c,transparent);animation:lanaPreloaderLine 1.2s ease-in-out infinite}.lana-home-preloader-active body{overflow:hidden}@keyframes lanaPreloaderMark{from{opacity:.76;transform:scale(.985)}to{opacity:1;transform:scale(1.018)}}@keyframes lanaPreloaderLine{from{transform:translateX(-100%)}to{transform:translateX(100%)}}@media(prefers-reduced-motion:reduce){.lana-home-preloader__inner img,.lana-home-preloader__inner span:after{animation:none!important}}