/* =============================================
   AVANI TEXAS REALTY — Main Stylesheet
   Aesthetic: Warm luxury, editorial, refined
   ============================================= */

:root {
  --cream: #f7f3ee;
  --sand: #e8ddd0;
  --warm-gray: #a8998a;
  --brown: #6b5240;
  --dark-brown: #2c1e14;
  --gold: #c09a5a;
  --gold-light: #d4b07a;
  --white: #ffffff;
  --text: #2c1e14;
  --text-muted: #7a6a5a;
  --border: #ddd3c8;
  --nav-h: 80px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
em { font-style: italic; color: var(--gold); }

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.center { text-align: center; }

.section-title { margin-bottom: 20px; }
.section-title.center { text-align: center; }

.section-header {
  margin-bottom: 60px;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--brown);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--brown);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
}

.btn-light {
  display: inline-block;
  padding: 14px 36px;
  background: var(--cream);
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--cream);
  transition: all var(--transition);
}
.btn-light:hover {
  background: transparent;
  color: var(--cream);
}

.full-width { width: 100%; text-align: center; cursor: pointer; }

/* ==================== NAVBAR ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(44,30,20,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
  flex-shrink: 0;
}

/* Logo image — inverted to white on dark hero */
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: invert(1) brightness(10);
  transition: filter 0.3s ease;
}

/* Black logo once navbar turns light on scroll */
.nav.scrolled .nav-logo img {
  filter: none;
}
.logo-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.15em;
  margin-left: 1px;
}
.nav-scrolled .logo-text,
.nav-scrolled .logo-a { color: var(--dark-brown); }

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}

/* On light pages, dark logo */
.page-hero + * ~ .nav .logo-text { color: var(--dark-brown); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--cream);
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-cta {
  border-color: var(--brown);
  color: var(--brown);
}
.nav.scrolled .nav-cta:hover { background: var(--brown); color: var(--cream); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
.nav.scrolled .hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 20px 32px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 60px 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c1e14 0%, #5a3e2b 40%, #7a6050 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,154,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,154,90,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(247,243,238,0.75);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(192,154,90,0.25);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(192,154,90,0.25);
}

/* ==================== SEARCH BAR ==================== */
.search-bar {
  background: var(--dark-brown);
  padding: 60px 0;
}
.search-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.search-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-field label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
}
.search-field input,
.search-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(192,154,90,0.25);
  color: var(--cream);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-field input::placeholder { color: rgba(247,243,238,0.35); }
.search-field select option { background: var(--dark-brown); }
.search-field input:focus,
.search-field select:focus { border-color: var(--gold); }

.search-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--dark-brown);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.search-btn:hover { background: var(--gold-light); }

/* ==================== LISTINGS ==================== */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.listings-full {
  grid-template-columns: repeat(3, 1fr);
}

.listing-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44,30,20,0.15);
}

.listing-img {
  position: relative;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.listing-badge {
  background: var(--gold);
  color: var(--dark-brown);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.listing-badge.new { background: var(--brown); color: var(--cream); }
.listing-badge.reduced { background: #e07a50; color: white; }

.listing-price {
  align-self: flex-end;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(44,30,20,0.5);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}

.listing-info { padding: 24px; }
.listing-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.listing-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.listing-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.listing-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.listing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.listing-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  transition: color var(--transition);
}
.listing-link:hover { color: var(--brown); }

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ==================== WHY AVANI ==================== */
.why { background: var(--sand); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left p.why-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-top: 2px solid var(--gold);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brown);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: linear-gradient(135deg, #2c1e14 0%, #5a3e2b 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(247,243,238,0.65);
  margin-bottom: 36px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-brown);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: invert(1) brightness(10);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(247,243,238,0.5);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.8;
}
.footer-logo .logo-a,
.footer-logo .logo-text { color: var(--gold-light) !important; }
.footer-logo .logo-sub { color: rgba(247,243,238,0.4); }

.footer-links h5,
.footer-contact h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(247,243,238,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(247,243,238,0.55);
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(247,243,238,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(192,154,90,0.15);
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(247,243,238,0.3);
  letter-spacing: 0.05em;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  background: linear-gradient(135deg, #2c1e14 0%, #5a3e2b 100%);
  padding: calc(var(--nav-h) + 80px) 60px 90px;
  text-align: center;
}
.page-hero-content p.section-eyebrow { color: var(--gold-light); }
.page-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.page-hero-content p:last-child {
  font-size: 1rem;
  color: rgba(247,243,238,0.65);
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== FILTERS ==================== */
.filters-bar {
  background: var(--sand);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.filters-inner {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-group select {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  min-width: 150px;
}
.filter-btn {
  padding: 10px 28px;
  background: var(--brown);
  color: var(--cream);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.filter-btn:hover { background: var(--dark-brown); }

/* ==================== ABOUT PAGE ==================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.about-text .btn-primary { margin-top: 16px; }

.about-badge-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-badge {
  background: var(--sand);
  padding: 32px 24px;
  border-left: 3px solid var(--border);
  display: flex;
  flex-direction: column;
}
.about-badge.accent { border-left-color: var(--gold); }
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team-section { background: var(--sand); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  padding: 36px;
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin: 0 auto 20px;
}
.team-card h4 { font-size: 1.3rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-social { display: flex; gap: 12px; justify-content: center; }
.team-social a { font-size: 1.1rem; }

.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.value-item { text-align: center; }
.value-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-item h4 { margin-bottom: 10px; }
.value-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ==================== CONTACT PAGE ==================== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap h3,
.contact-info-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--dark-brown);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-success {
  display: none;
  color: #4a7c59;
  font-size: 0.9rem;
  padding: 14px;
  background: #eaf4ec;
  border: 1px solid #b8dfc0;
  text-align: center;
}
.form-success.show { display: block; }

.contact-info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-of-type { border-bottom: none; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-block h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-block a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-info-block a:hover { color: var(--brown); }

.contact-tagline {
  margin-top: 32px;
  padding: 28px;
  background: var(--sand);
  border-left: 3px solid var(--gold);
}
.contact-tagline blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-tagline cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title   { animation: fadeUp 0.7s ease 0.25s both; }
.hero-sub     { animation: fadeUp 0.7s ease 0.4s both; }
.hero-actions { animation: fadeUp 0.7s ease 0.55s both; }
.hero-stats   { animation: fadeUp 0.7s ease 0.7s both; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .search-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--nav-h) + 40px) 32px 80px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 32px 60px; }
  .section { padding: 64px 0; }
  .filters-inner { flex-direction: column; align-items: stretch; }
  .filter-group select { min-width: 100%; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--nav-h) + 24px) 20px 60px; }
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-badge-block { grid-template-columns: 1fr; }
}
