/* ─── HERO SECTION ───────────────────────────────── */
#hb {
  display: flex;
  min-height: 100vh;
  padding-top: 70px;
  background: #0E0E0E;
  position: relative;
  overflow: hidden;
}


.hb-vline {
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--beige), transparent);
  z-index: 0;
}

.hb-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
}

.hb-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 60px 48px 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 1;
}

.hb-form {
  flex: 1;
}

.hb-creds {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hb-creds span {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hb-dot {
  color: var(--beige) !important;
  letter-spacing: 0 !important;
}

.hb-h {
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -4px;
  color: #F5F5F5;
  margin-bottom: 36px;
}

.hb-h .hln {
  display: block;
}

.hb-h .hl {
  color: var(--beige);
  display: block;
}

.hb-a {
  display: flex;
  gap: 16px;
}

.hb-stats {
  display: flex;
  gap: 28px;
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.stn {
  font-size: 32px;
  font-weight: 900;
  color: var(--beige);
  line-height: 1;
  display: block;
}

.stl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Compact overrides for form inside hero right panel */
.hb-form .enq-head {
  margin-bottom: 24px;
}

.hb-form .enq-head h2 {
  font-size: clamp(20px, 2.2vw, 28px);
}

.hb-form .enq-form textarea {
  height: 72px;
}

/* ─── MOBILE RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  #hb {
    flex-direction: column;
  }

  .hb-vline {
    display: none;
  }

  .hb-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 32px;
  }

  .hb-left {
    padding: 60px 32px 40px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hb-left {
    padding: 48px 20px 32px;
  }

  .hb-right {
    padding: 40px 20px;
  }

  .hb-h {
    letter-spacing: -2px;
  }

  .hb-stats {
    gap: 18px;
  }
}