/* ============================================
   GLOBAL COLOR PALETTE
   Change these variables to rebrand the entire site.
   ============================================ */
:root {
  /* Primary — main dark color (backgrounds, text) */
  --color-primary: #100d0c;
  
  /* Brand Blue — primary accent (from KVM logo K) */
  --color-accent: #1E3A5F;
  
  /* Brand Orange — secondary accent (from KVM logo M) */
  --color-orange: #F08A2B;
  
  /* Cream — warm off-white sections */
  --color-cream: #f8f7f2;
  
  /* White */
  --color-white: #ffffff;
  
  /* Text colors */
  --color-text: #222;
  --color-text-light: #555;
  --color-text-muted: #888;
  
  /* Borders & dividers */
  --color-border: #ddd;
  --color-border-light: #eaeaea;
  
  /* Overlay darkness */
  --overlay-dark: rgba(16, 13, 12, 0.85);
  --overlay-gradient: rgba(0, 0, 0, 0.35);
  
  /* Scrolled header background */
  --color-header-scrolled: #f8f7f2;
}

/*
Theme Name: Montecito Template
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: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.25px;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  background: var(--color-white);
}

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: "Libre Caslon Display", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-primary);
  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: 800; }

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1em;
}

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

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

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

.btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.btn--white {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--nav {
  font-family: "Libre Caslon Display", serif;
  font-size: 18px;
  font-weight: 500;
  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: var(--color-header-scrolled);
  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: var(--color-text-light);
}

/* 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: "Libre Caslon Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  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: var(--color-white);
  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: var(--color-white);
  font-size: 55px;
  margin-bottom: 20px;
}

.hero__content .script-text {
  color: var(--color-white);
  font-size: 45px;
}

/* ===== FEATURED LISTINGS SECTION ===== */
.featured-listings {
  padding: 80px 0 40px;
  background: var(--color-white);
  text-align: center;
}

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

.featured-listings .section-subtext {
  font-size: 16px;
  color: var(--color-text);
  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: "Libre Caslon Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat-item .stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  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 top;
}

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

.about-text .eyebrow {
  color: var(--color-primary);
}

.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: var(--color-cream);
  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: var(--color-primary);
  margin-bottom: 12px;
}

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

.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.35));
  z-index: 2;
}

.area-card h3 {
  color: var(--color-white);
  font-size: 26px;
  margin-bottom: 4px;
}

.area-card h3 span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  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: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: "Libre Caslon Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.4;
  text-transform: none;
}

.blog-card__date {
  font-size: 13px;
  color: var(--color-text-muted);
  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: var(--color-white);
  margin-bottom: 38px;
  font-size: 64px;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-cream);
  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: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
}

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

.newsletter-form button {
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  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: "Montserrat", 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: var(--color-text);
}

.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: var(--color-text-muted);
}

/* ===== 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: var(--color-cream);
  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: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  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: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.listing-slide__price {
  font-family: "Libre Caslon Display", serif;
  font-size: 28px;
  color: var(--color-white);
  font-weight: 400;
}

.listing-slide__address {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

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

/* ===== ABOUT SUBTITLE ===== */
.about-subtitle {
  font-family: "Libre Caslon Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  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: var(--color-primary);
  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: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  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: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.listing-card__price {
  font-family: "Libre Caslon Display", serif;
  font-size: 28px;
  color: var(--color-white);
  font-weight: 400;
  line-height: 1.2;
}

.listing-card__address {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 4px;
}

.listing-card__location {
  font-family: "Montserrat", 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: var(--color-primary);
  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: var(--color-white);
  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: var(--color-primary);
  transform: scale(1.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 0;
  background: var(--color-white);
}

.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: var(--color-primary);
  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: var(--color-accent);
  font-size: 16px;
  letter-spacing: 4px;
}

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

.testimonial-author {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.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: var(--color-primary);
}

/* 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: var(--color-white);
  margin-bottom: 24px;
}

.btn--white-fill {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid #fff;
  border-radius: 0;
  padding: 14px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  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: var(--color-white);
}

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

.listings-intro .script-text {
  font-size: 60px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.listings-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text);
  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: var(--color-cream);
  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: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  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: "Libre Caslon Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.listing-grid-card__street {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 2px;
}

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

.listing-grid-card__meta {
  font-family: "Montserrat", 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: "Libre Caslon Display", serif;
  font-size: 55px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 1px;
}

/* Intro - "It's not about me" */
.about-intro {
  padding: 80px 0;
  background: var(--color-white);
}
.about-intro__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-intro__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}
.about-intro__heading--script {
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  color: var(--color-primary);
  margin-top: 4px;
  margin-bottom: 32px;
}
.about-intro__quote {
  font-family: "Montserrat", 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: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* Bio Section */
.about-bio {
  padding: 80px 0;
  background: var(--color-cream);
}
.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: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.about-bio__name {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  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: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.about-bio__highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}
.about-bio__contact {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.about-bio__divider {
  margin: 0 12px;
  color: #ccc;
}
.about-bio__text p {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Career Stats */
.about-stats {
  padding: 80px 0;
  background: var(--color-primary);
}
.about-stats__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-white);
  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: "Libre Caslon Display", serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--color-white);
  display: inline;
}
.about-stats__suffix {
  font-family: "Libre Caslon Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--color-white);
  display: inline;
}
.about-stats__label {
  font-family: "Montserrat", 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: var(--color-white);
}
.about-notable__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
}
.about-notable__swiper {
  padding-bottom: 48px;
}
.notable-card {
  background: var(--color-cream);
}
.notable-card__image {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.notable-card__info {
  padding: 20px 20px 24px;
}
.notable-card__price {
  font-family: "Libre Caslon Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.notable-card__address {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.notable-card__city {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
}
.about-notable__swiper .swiper-button-prev,
.about-notable__swiper .swiper-button-next {
  color: var(--color-primary);
  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: var(--color-primary);
  opacity: 0.3;
}
.about-notable__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* If You Want to Know More */
.about-more {
  padding: 80px 0;
  background: var(--color-cream);
}
.about-more__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  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: var(--color-white);
}
.about-more__card-content h3 {
  font-family: "Libre Caslon Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
}
.about-more__card-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 12px;
}
.about-more__card-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  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: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-transform: none;
  color: var(--color-text);
  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: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  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: 300;
  line-height: 1.65;
  color: var(--color-text);
  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: "Libre Caslon Display", serif;
  font-size: 55px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.btn--white-outline {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--white-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Intro */
.comm-intro {
  padding: 60px 0 40px;
  background: var(--color-white);
  text-align: center;
}

/* Grid Section */
.comm-grid-section {
  padding: 0 0 80px;
  background: var(--color-white);
}
.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: "Libre Caslon Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.comm-card__link {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  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: var(--color-white);
  border-color: var(--color-white);
}

/* ===== 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: "Libre Caslon Display", serif;
  font-size: 55px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 1px;
}

.blog-intro {
  padding: 60px 0 20px;
  background: var(--color-white);
  text-align: center;
}

/* Blog Grid */
.blog-grid-section {
  padding: 20px 0 80px;
  background: var(--color-white);
}
.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: "Libre Caslon Display", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}
.blog-card__title a {
  color: var(--color-primary);
  text-decoration: none;
}
.blog-card__title a:hover {
  opacity: 0.7;
}
.blog-card__date {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__readmore {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
}
.blog-card__readmore:hover {
  opacity: 0.6;
}
.blog-grid__empty {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: var(--color-text-muted);
  text-align: center;
  width: 100%;
  padding: 60px 0;
}

/* Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-border);
}
.blog-pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ===== 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: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.single-post__date {
  font-family: "Montserrat", 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: var(--color-white);
}
.single-post__container {
  max-width: 760px;
}
.single-post__container p {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 20px;
}
.single-post__container h2 {
  font-family: "Libre Caslon Display", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--color-primary);
  margin: 40px 0 16px;
}
.single-post__container h3 {
  font-family: "Libre Caslon Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  margin: 32px 0 12px;
}
.single-post__container blockquote {
  border-left: 3px solid var(--color-primary);
  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: var(--color-white);
}
.btn--dark-outline {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--dark-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== 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: "Libre Caslon Display", serif;
  font-size: 55px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 1px;
}

.contact-info {
  padding: 80px 0;
  background: var(--color-white);
  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: var(--color-primary);
  margin-bottom: 8px;
}
.contact-info__text {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
}
.contact-info__agent {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eaeaea;
}
.contact-info__agent p {
  font-family: "Montserrat", 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%; }
}

/* ===== SITE LOGO ===== */
.site-logo--dual {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-andrea {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-compass {
  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-andrea--dark {
  filter: none;
}
.logo-compass--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-andrea { height: 28px; }
  .logo-compass { height: 16px; }
  .logo-divider { height: 24px; }
  .site-logo--dual { gap: 8px; }
}

/* ===== DUAL LOGO FIX ===== */
/* Logo styling for header */
.site-header .logo-andrea {
  height: 36px;
  filter: none;
  mix-blend-mode: screen;
}
/* Secondary logo styling */
.site-header .logo-compass {
  height: 20px;
  filter: invert(1);
  mix-blend-mode: screen;
}
/* Hamburger menu (light bg) - show logos normally */
.hamburger-menu .logo-andrea--dark {
  height: 36px;
  filter: none;
  mix-blend-mode: normal;
}
.hamburger-menu .logo-compass--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-andrea {
  height: 48px;
  width: auto;
}
.footer-logo-compass {
  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-andrea { height: 36px; }
  .footer-logo-compass { height: 22px; }
  .footer-logo-divider { height: 30px; }
}

/* ===== FOOTER LOGO FIX (cream bg) ===== */
.footer-logo-andrea {
  height: 48px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: multiply;
}
.footer-logo-compass {
  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-andrea {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.logo-compass {
  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-andrea {
  height: 72px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.footer-logo-compass {
  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-andrea, .logo-compass { height: 48px !important; }
  .logo-divider { height: 36px !important; }
  .footer-logo-andrea, .footer-logo-compass { 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: var(--color-cream);
  text-align: center;
}
.about-concierge__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.about-concierge__subtext {
  font-family: "Montserrat", 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: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  padding: 10px 20px;
  border: 1px solid var(--color-primary);
}

/* ===== ABOUT REVIEWS SECTION ===== */
.about-reviews {
  padding: 80px 0;
  background: var(--color-primary);
  text-align: center;
}
.about-reviews__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-white);
  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: var(--color-accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.about-review-card blockquote {
  font-family: "Montserrat", 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: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 1px;
}

/* ===== COUNTY HEADINGS (Communities) ===== */
.comm-county {
  padding: 60px 0 20px;
  background: var(--color-white);
}
.comm-county--alt {
  background: var(--color-cream);
}
.comm-county__heading {
  font-family: "Libre Caslon Display", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
}
.comm-county__desc {
  font-family: "Montserrat", 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: 500;
  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: var(--color-white);
  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: var(--color-primary);
  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: var(--color-white);
}

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

/* Overview */
.comm-overview {
  padding: 100px 0 60px;
  background: var(--color-cream);
}
.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: var(--color-primary);
  margin: 0 0 24px;
  line-height: 1.15;
}
.comm-overview__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  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: var(--color-primary);
  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: var(--color-text-muted);
}

/* Market */
.comm-market {
  padding: 100px 0;
  background: var(--color-primary);
}
.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: var(--color-white);
  margin: 0 0 24px;
}
.comm-market__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  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: 500;
  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: var(--color-cream);
  padding: 40px;
}
.comm-market__form-box h3 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 28px;
  color: var(--color-primary);
  margin: 0 0 4px;
}
.comm-market__form-box > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}
.comm-lead-form input,
.comm-lead-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--color-text);
}
.comm-lead-form select {
  color: var(--color-text-muted);
}
.comm-lead-form button {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  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: var(--color-white);
  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: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}
.comm-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0;
}

/* Lifestyle */
.comm-lifestyle {
  padding: 100px 0;
  background: var(--color-white);
}
.comm-lifestyle h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-primary);
  margin: 0 0 10px;
}

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

/* Schools */
.comm-schools {
  padding: 100px 0;
  background: var(--color-white);
}
.comm-schools h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-primary);
  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: var(--color-cream);
  border-left: 3px solid var(--color-primary);
}
.comm-school-card h4 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 18px;
  color: var(--color-primary);
  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: var(--color-primary) !important;
  font-weight: 600 !important;
}

/* Dining */
.comm-dining {
  padding: 100px 0;
  background: var(--color-cream);
}
.comm-dining h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-primary);
  margin: 0 0 10px;
}
.comm-dining__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 40px 0 0;
}
.comm-dining__subtitle:first-of-type {
  margin-top: 20px;
}
.comm-card--dining {
  background: var(--color-white);
}
.comm-dining__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.comm-card--small {
  padding: 20px 24px;
  background: var(--color-white);
  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: var(--color-primary);
}
.comm-commute h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-white);
  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: var(--color-white);
  display: block;
  margin-bottom: 12px;
}
.comm-commute__card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 8px;
}
.comm-commute__card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Advice */
.comm-advice {
  padding: 100px 0;
  background: var(--color-white);
}
.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: var(--color-primary);
  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: var(--color-primary);
  margin: 0 0 8px;
}
.comm-advice__item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0;
}

/* CTA */
.comm-cta {
  padding: 100px 0;
  background: var(--color-primary);
  text-align: center;
}
.comm-cta h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-white);
  margin: 0 0 16px;
}
.comm-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  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: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.comm-cta__button:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ==================== 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: var(--color-primary);
  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: var(--color-text-light);
}

/* --- 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 var(--color-primary);
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: var(--color-white);
}
.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: var(--color-primary) !important;
  color: var(--color-white) !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: var(--color-white);
  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: 500;
}
.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: var(--color-text-light);
}

/* --- 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: var(--color-white);
}

/* --- 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: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* Footer - Reposition Compass 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: var(--color-white);
  margin: 0 0 20px;
  line-height: 1.1;
}
.concierge-hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  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: var(--color-white);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.timeline-card {
  padding: 40px 32px;
  background: var(--color-cream);
  border-left: 4px solid var(--color-primary);
}
.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: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.3;
}
.timeline-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* Benefits */
.concierge-benefits {
  padding: 100px 0;
  background: var(--color-primary);
}
.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: var(--color-white);
  margin: 0 0 16px;
}
.benefit-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.concierge-stats {
  padding: 100px 0;
  background: var(--color-cream);
}
.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: var(--color-primary);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.stat-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}
.concierge-stats__source {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Services */
.concierge-services {
  padding: 100px 0;
  background: var(--color-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.service-item {
  padding: 20px 24px;
  background: var(--color-cream);
  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: var(--color-cream);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.how-step {
  padding: 36px;
  background: var(--color-white);
  border-top: 3px solid var(--color-primary);
}
.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: 300;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* CTA */
.concierge-cta {
  padding: 120px 0;
  background: var(--color-primary);
  text-align: center;
}
.concierge-cta h2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-white);
  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: 300;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
}

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

/* Section Heading */
.section-heading {
  font-family: 'Libre Caslon Display', serif;
  font-size: 42px;
  color: var(--color-primary);
  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: var(--color-cream);
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 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 var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.blog-prev:hover,
.blog-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.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: var(--color-white);
  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: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  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: var(--color-primary);
  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-andrea {
  height: 34px !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-compass {
  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-andrea, .logo-compass, .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;
}

/* Make colored logo visible on dark hero background */
.site-header:not(.scrolled) .logo-andrea.logo-white {
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.6)) drop-shadow(0 0 2px rgba(0,0,0,0.8)) brightness(1.3);
}
.site-header.scrolled .logo-andrea.logo-dark {
  filter: none;
}

/* ============================================
   BRAND ACCENT OVERRIDES — Blue primary, Orange secondary
   ============================================ */

/* Stats numbers — orange for impact */
.stat-number {
  color: var(--color-orange) !important;
}

/* Eyebrow text — blue */
.eyebrow, .about-subtitle {
  color: var(--color-accent) !important;
}

/* Section subtext underline accent */
.section-subtext::after {
  background: var(--color-accent);
}

/* Buttons — blue with orange hover */
.btn {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}
.btn:hover {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
}
.btn--white {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
}
.btn--white:hover {
  background: var(--color-white) !important;
  color: var(--color-accent) !important;
}

/* Nav links — blue hover */
.main-nav a:hover {
  color: var(--color-accent) !important;
}
.site-header.scrolled .main-nav a:hover {
  color: var(--color-accent) !important;
}

/* Area card overlay text accent — orange "Explore More" */
.area-card h3 span {
  color: var(--color-orange) !important;
}

/* Blog card category badge — blue */
.blog-card__category {
  color: var(--color-accent) !important;
}

/* Testimonial stars — orange */
.testimonial-stars .fa-star {
  color: var(--color-orange) !important;
}

/* Footer newsletter button — blue bg */
.newsletter-form button {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
}
.newsletter-form button:hover {
  background: var(--color-orange) !important;
}

/* Listing card price — blue */
.listing-card__price {
  color: var(--color-accent) !important;
}

/* Script text (hero subtitle) — orange tint */
.script-text {
  color: var(--color-orange) !important;
}
.hero .script-text {
  color: var(--color-white) !important;
}

/* Team section script text */
.team-script {
  color: var(--color-orange) !important;
}

/* Blog nav arrows — blue border */
.blog-prev, .blog-next {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}
.blog-prev:hover, .blog-next:hover {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
}

/* Testimonial dots — blue active */
.testimonial-dot.active {
  background: var(--color-accent) !important;
}

/* Footer link hover — orange */
.site-footer a:hover {
  color: var(--color-orange) !important;
}

/* Social sidebar — blue bg */
.social-sidebar a {
  background: var(--color-accent) !important;
}
.social-sidebar a:hover {
  background: var(--color-orange) !important;
}

/* Elegant menu link hover underline — orange */
.elegant-menu__link::after {
  background: var(--color-orange) !important;
}

/* Preloader line — blue to orange gradient */
.preloader-line::after {
  background: linear-gradient(90deg, var(--color-accent), var(--color-orange)) !important;
}

/* Menu button — blue border on scroll */
.site-header.scrolled .btn--dark {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}
