/* ═══════════════════════════════════════════════════
   BHHP 2026 — Simplified Clean Design
   Font: Lora (headers) + Montserrat (body)
   Colors: Navy + Gold #D4AF37, navy, white
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A1628;
  --navy-light: #1a2a44;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --warm-gray: #6B6B6B;
  --light-gray: #E8E6E1;
  --gold: #D4AF37;
  --gold-vivid: #B8942E;
  --charcoal: #222222;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 48px;
  min-height: 88px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.4;
}

.nav-logo span {
  font-size: 16px;
  display: block;
  letter-spacing: 4px;
  font-weight: 700;
}


.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .nav-logo-img {
    height: 68px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.5) 0%,
    rgba(10,22,40,0.3) 40%,
    rgba(10,22,40,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 strong {
  font-weight: 600;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-primary:hover {
  background: var(--gold-vivid);
  border-color: var(--gold-vivid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--light-gray);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-vivid);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.stat {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── SECTIONS ─── */
.section {
  padding: 96px 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-title strong {
  font-weight: 600;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 600px;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── ABOUT GRID ─── */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  padding: 18px 0;
  border-top: 1px solid var(--light-gray);
}

.about-feature h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.about-feature p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── COMMUNITIES GRID ─── */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.community-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.community-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.community-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ─── SERVICES / VALUE PROPS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 56px auto 0;
}

.service-item {
  text-align: center;
  padding: 32px 24px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold-vivid);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 48px;
}

.cta-banner .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
}

/* ─── COMMUNITY PAGE HERO ─── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px 60px;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(180deg,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
}

/* ─── COMMUNITY DETAIL ─── */
.community-detail {
  max-width: 900px;
  margin: 0 auto;
}

.community-detail h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.community-detail p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.highlight-card {
  padding: 28px;
  background: var(--off-white);
  border-radius: 4px;
}

.highlight-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 0;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 8px;
}

.contact-detail p, .contact-detail a {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--gold-vivid); }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--charcoal);
  margin-bottom: 16px;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── GET INSPIRED / VIDEO HERO ─── */
.inspire-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.inspire-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inspire-bg video,
.inspire-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspire-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.35) 40%,
    rgba(10,22,40,0.6) 100%);
}

.inspire-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
}

.inspire-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.inspire-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.inspire-content h2 strong {
  font-weight: 600;
}

.inspire-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
}

.inspire-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.inspire-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s;
}

.inspire-card:hover {
  background: rgba(255,255,255,0.1);
}

.inspire-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.inspire-card p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ─── NEIGHBORHOODS GALLERY ─── */
.neighborhoods-section {
  padding: 96px 48px;
  background: var(--off-white);
}

.neighborhoods-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.neighborhoods-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--charcoal);
}

.neighborhoods-header h2 strong { font-weight: 600; }

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.neighborhood-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.neighborhood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px;
}

.neighborhood-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.neighborhood-overlay h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
}

/* ─── BUY/SELL SECTION ─── */
.buysell-section {
  padding: 96px 48px;
  background: var(--white);
}

.buysell-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.buysell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.buysell-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.buysell-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.buysell-image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10,22,40,0.85);
  color: var(--white);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.buysell-body {
  padding: 36px 32px;
  background: var(--off-white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.buysell-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.buysell-body p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

.buysell-body .btn {
  align-self: flex-start;
}

/* ─── LISTINGS / FEATURED PROPERTIES ─── */
.listings-section {
  padding: 96px 48px;
  background: var(--navy);
  color: var(--white);
}

.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.listings-header .section-eyebrow { color: var(--gold); }

.listings-header .section-title {
  color: var(--white);
  margin-bottom: 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.listing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.listing-card:hover {
  border-color: rgba(212,175,55,0.3);
}

.listing-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.listing-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-vivid);
  color: var(--white);
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.listing-body {
  padding: 20px;
}

.listing-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.listing-address {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.listing-specs {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.listing-price-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.listing-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
}

.listings-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── BIO / ADVISOR ─── */
.bio-section {
  padding: 96px 48px;
  background: var(--white);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-image-wrap {
  position: relative;
}

.bio-image-wrap img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 600px;
}

.bio-text .section-eyebrow { margin-bottom: 12px; }

.bio-name {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}

.bio-name strong { font-weight: 600; }

.bio-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

/* ─── TESTIMONIALS / ACCOLADES ─── */
.accolades-section {
  padding: 96px 48px;
  background: var(--off-white);
}

.accolades-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.accolades-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--charcoal);
}

.accolades-header h2 strong { font-weight: 600; }

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.accolade-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.accolade-quote {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.accolade-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.accolade-divider {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.accolade-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.accolade-role {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
}

/* ─── PARADISE CTA ─── */
.paradise-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.paradise-cta .hero-bg::after {
  background: linear-gradient(180deg,
    rgba(10,22,40,0.5) 0%,
    rgba(10,22,40,0.4) 50%,
    rgba(10,22,40,0.55) 100%);
}

.paradise-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 24px;
}

.paradise-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}

.paradise-content h2 strong { font-weight: 600; }

.paradise-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .communities-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .inspire-cards { grid-template-columns: repeat(2, 1fr); }
  .accolades-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-toggle { display: flex; }

  .section { padding: 64px 24px; }
  .hero { padding: 100px 24px 60px; min-height: 90vh; }
  .page-hero { padding: 100px 24px 48px; min-height: 50vh; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { height: 320px; }

  .communities-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .community-highlights { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.06); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .neighborhoods-section { padding: 64px 24px; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-header { flex-direction: column; gap: 16px; text-align: center; }

  .buysell-section { padding: 64px 24px; }
  .buysell-grid { grid-template-columns: 1fr; }

  .listings-section { padding: 64px 24px; }
  .listings-grid { grid-template-columns: 1fr; }

  .bio-section { padding: 64px 24px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-image-wrap { order: -1; }
  .bio-image-wrap img { max-height: 400px; }

  .accolades-section { padding: 64px 24px; }
  .accolades-grid { grid-template-columns: 1fr; }

  .inspire-section { min-height: 70vh; }
  .inspire-cards { grid-template-columns: 1fr 1fr; }

  .paradise-cta { min-height: 40vh; }
}

