:root {
  /* Meridian Capital style: white/light gray + navy */
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-soft: #f0f2f5;
  --bg-dark: #e8eaed;
  --bg-darker: #1a2332;
  --navy: #1a2332;
  --navy-mid: #2d3a4f;
  --navy-light: #3d4d66;
  --accent: #1e3a5f;
  --accent-soft: rgba(30, 58, 95, 0.08);
  --accent-strong: #152a45;
  --accent-light: #2d4a6f;
  --text: #1a2332;
  --muted: #5c6b7a;
  --border-subtle: rgba(26, 35, 50, 0.12);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
  --container-width: 1200px;
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR - Meridian style: white bar, navy text */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
}

.brand-logo-text {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-text-main {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 0.75rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  background: var(--accent);
  cursor: pointer;
  transition: all 0.18s ease-out;
  color: #ffffff;
}

.nav-cta:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* FINANCIAL TICKER - light bar */
.financial-ticker {
  position: relative;
  width: 100%;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  z-index: 30;
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 0.65rem 0;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-label {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.ticker-value {
  color: var(--accent);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 3.8rem;
  text-align: right;
}

.ticker-value::after {
  content: "%";
  margin-left: 0.15rem;
  font-size: 0.7em;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO */
.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
  min-height: 600px;
}

.hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  transform: none !important;
  object-fit: cover !important;
  opacity: 1 !important;
  transition: opacity 1.5s ease-in-out;
  z-index: 0 !important;
  display: block !important;
  visibility: visible !important;
  pointer-events: none;
  background: transparent;
  filter: brightness(0.95) contrast(1.05);
}

.hero-video.active {
  opacity: 1 !important;
  z-index: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 35, 50, 0.75) 0%,
    rgba(26, 35, 50, 0.35) 55%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

/* Subtle scrim behind left column so text stays readable over video */
.hero-inner::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: 38%;
  bottom: -2rem;
  background: linear-gradient(to right, rgba(26, 35, 50, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem 0.2rem 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
}

.tag-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
}

.hero-highlight {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 1.9rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.25);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.btn-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
}

.hero-meta span strong {
  color: #ffffff;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* HERO-CARD - transparent over video so video shows through */
.hero-card {
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.7rem 1.4rem;
  background: rgba(26, 35, 50, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
}

.hero-card .hero-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-card .hero-num {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-card .hero-num span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-left: 0.2rem;
}

.hero-card .hero-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-card .hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.hero-card .deal-list {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-card .pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hero-card .pill-accent {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

/* Non-hero uses of these (e.g. elsewhere) keep dark theme */
.hero-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-num {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.hero-num span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.2rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--muted);
}

.pill-accent {
  background: var(--accent-soft);
  border-color: rgba(30, 58, 95, 0.35);
  color: var(--accent-strong);
}

.hero-card .hero-gradient-orbit {
  background: radial-gradient(
    circle at 10% 10%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
}

.hero-gradient-orbit {
  position: absolute;
  inset: auto -80px -80px auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at 10% 10%,
    rgba(30, 58, 95, 0.08),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

.hero-caption {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* SECTION BASE */
section {
  padding: 3.2rem 0;
}

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

.section-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.6;
}

/* SERVICES - Meridian style: white/light gray */
.services {
  background: var(--bg-alt);
}

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

.card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.card-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.card-list {
  padding-left: 1rem;
  margin: 0.2rem 0 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-list li {
  margin-bottom: 0.2rem;
}

.card-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.7rem;
}

.card-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* PROPERTY TYPES - light section */
.property-types {
  background: #ffffff;
}

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

.chip-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 90px;
}

.chip-title {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.chip-sub {
  color: var(--muted);
  font-size: 0.75rem;
}

/* CLOSINGS */
.closings-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}

.deal-highlight {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.deal-amount {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
}

.deal-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.deal-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.deal-meta span {
  display: inline-block;
  margin-right: 0.75rem;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-soft);
  border: 1px solid rgba(30, 58, 95, 0.3);
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
}

.deal-list {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 1rem;
}

.deal-list li {
  margin-bottom: 0.3rem;
}

.deal-link {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.deal-link:hover {
  text-decoration: underline;
}

.timeline {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  padding: 1rem 1.2rem;
  max-height: 260px;
  overflow-y: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem 0.9rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.2);
}

.timeline-main {
  font-size: 0.84rem;
  font-weight: 500;
}

.timeline-sub {
  font-size: 0.76rem;
  color: var(--muted);
}

.timeline-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* INSIGHTS + ABOUT */
#insights {
  background: var(--bg-alt);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.6rem;
}

.insight-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.1rem 1.2rem 1rem;
  margin-bottom: 0.9rem;
}

.insight-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.insight-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.insight-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.insight-body {
  font-size: 0.8rem;
  color: var(--muted);
}

.about-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  padding: 1.3rem 1.4rem 1.1rem;
}

.about-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.about-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-metric span {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

/* CONTACT */
.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  padding-bottom: 3.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.7rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.8rem;
  background: var(--bg);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
  background: var(--bg);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5);
}

.field .error-message {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.2rem;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #b91c1c;
  display: block;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-list span {
  color: var(--text);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0;
  background: #ffffff;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

/* Vapi widget positioning */
vapi-widget {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  z-index: 9999 !important;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner,
  .closings-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.2rem;
  }

  .hero-card {
    order: -1;
  }

  .nav-links {
    display: none;
  }
}

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

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

  section {
    padding: 2.6rem 0;
  }

  .hero {
    padding-top: 3rem;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .ticker-item {
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .ticker-content {
    gap: 2rem;
  }
}
