/* Layout styles */

/* Hero section */
.hero-outer {
  background: #424242;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}

.hero-nav-bar {
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 0.5px solid rgba(255, 255, 255, .1);
  position: relative;
  z-index: 10;
}

.hero-nav {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-logo-box {
  width: 30px;
  height: 30px;
  background: #B8975A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-mark {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0F1520;
}

.hero-brand {
  display: flex;
  flex-direction: column;
}

.hero-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.hero-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
}

.hero-nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .5px;
}

.hero-nav-cta {
  background: rgba(255, 255, 255, .07);
  border: 0.5px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: .45rem 1rem;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.hero-wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

.hero-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.hero-bldg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
  z-index: 1;
}

.hero-bldg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bldg-img-1 {
  background-image: url('../images/hero-1.jpeg');
  z-index: 1;
}

.hero-bldg-img-2 {
  background-image: url('../images/hero-2.jpeg');
  z-index: 1;
  animation: heroCrossfade 12s ease-in-out infinite;
}

@keyframes heroCrossfade {
  0%, 40%  { opacity: 1; }
  50%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}

.hero-bldg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #424242 0%, rgba(66, 66, 66, .45) 22%, transparent 60%);
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.hero-eyebrow-text {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
}

.hero-h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: white;
  line-height: 1.08;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}

.hero-h1-gold {
  color: #B8975A;
}

.hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  max-width: 310px;
}

.hero-btn {
  background: #B8975A;
  color: #424242;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .3px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.6rem;
}

.hero-avatars {
  display: flex;
}

.hero-av {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 2px solid #424242;
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: white;
}

.hero-av:first-child {
  margin-left: 0;
}

.hero-proof {
  font-size: 11px;
  color: rgba(255, 255, 255, .38);
  line-height: 1.5;
}

.hero-proof strong {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.8rem;
  margin-top: 1.8rem;
  border-top: 0.5px solid rgba(255, 255, 255, .08);
}

.hero-stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #B8975A;
}

.hero-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .5px;
  margin-top: 2px;
}