/* HOME PAGE */

/* HERO */
.hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(0.72); transform-origin: center center; }
.hero__grad { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(5,16,31,0.93) 0%, rgba(10,30,56,0.82) 50%, rgba(5,16,31,0.55) 100%); }
.hero__content { position: relative; z-index: 2; padding: 90px 40px 40px; }
.hero__content .display { margin-bottom: 12px; font-size: clamp(32px,4vw,58px); }
.hero__lead { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 520px; margin-bottom: 16px; }
.hero__checks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.hero__check { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 10px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.hero__phone a { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 600; transition: color 0.2s; }
.hero__phone a:hover { color: var(--white); }
.hero__phone strong { color: var(--sky); }
.hero__scroll { display: none; }

/* SECTION UTILITIES */
.section-pad { padding: 100px 0; }
.bg-white { background: var(--white); }
.section-head { margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 12px; }

/* MARKETS HOME GRID */
.markets-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mhcard { position: relative; overflow: hidden; border-radius: 0; display: block; cursor: pointer; }
.mhcard img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.55s var(--ease); filter: brightness(0.6); }
.mhcard:hover img { transform: scale(1.07); filter: brightness(0.45); }
.mhcard__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(5,16,31,0.92) 0%, transparent 55%); }
.mhcard__tag { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.mhcard p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* First market card spans 2 cols */
.markets-home-grid .mhcard:first-child { grid-column: span 1; }

@media (max-width: 900px) {
  .hero__content { padding: 120px 24px 80px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .markets-home-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 72px 0; }
}
@media (max-width: 600px) {
  .markets-home-grid { grid-template-columns: 1fr; }
  .mhcard img { height: 220px; }
}
